Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
ad66bb9c
Commit
ad66bb9c
authored
12 years ago
by
Georg Ehrke
Browse files
Options
Downloads
Plain Diff
Merge branch 'calendar_dropimport'
parents
c0db603d
38b93653
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/calendar/ajax/import/dropimport.php
+74
-0
74 additions, 0 deletions
apps/calendar/ajax/import/dropimport.php
apps/calendar/js/calendar.js
+45
-0
45 additions, 0 deletions
apps/calendar/js/calendar.js
with
119 additions
and
0 deletions
apps/calendar/ajax/import/dropimport.php
0 → 100644
+
74
−
0
View file @
ad66bb9c
<?php
$data
=
$_POST
[
'data'
];
$data
=
explode
(
','
,
$data
);
$data
=
end
(
$data
);
$data
=
base64_decode
(
$data
);
OCP\JSON
::
checkLoggedIn
();
OCP\App
::
checkAppEnabled
(
'calendar'
);
$nl
=
"
\r\n
"
;
$comps
=
array
(
'VEVENT'
=>
true
,
'VTODO'
=>
true
,
'VJOURNAL'
=>
true
);
$data
=
str_replace
(
array
(
"
\r
"
,
"
\n\n
"
),
array
(
"
\n
"
,
"
\n
"
),
$data
);
$lines
=
explode
(
"
\n
"
,
$data
);
unset
(
$data
);
$comp
=
$uid
=
$cal
=
false
;
$cals
=
$uids
=
array
();
$i
=
0
;
foreach
(
$lines
as
$line
)
{
if
(
strpos
(
$line
,
':'
)
!==
false
)
{
list
(
$attr
,
$val
)
=
explode
(
':'
,
strtoupper
(
$line
));
if
(
$attr
==
'BEGIN'
&&
$val
==
'VCALENDAR'
)
{
$cal
=
$i
;
$cals
[
$cal
]
=
array
(
'first'
=>
$i
,
'last'
=>
$i
,
'end'
=>
$i
);
}
elseif
(
$attr
==
'BEGIN'
&&
$cal
!==
false
&&
isset
(
$comps
[
$val
]))
{
$comp
=
$val
;
$beginNo
=
$i
;
}
elseif
(
$attr
==
'END'
&&
$cal
!==
false
&&
$val
==
'VCALENDAR'
)
{
if
(
$comp
!==
false
)
{
unset
(
$cals
[
$cal
]);
// corrupt calendar, unset it
}
else
{
$cals
[
$cal
][
'end'
]
=
$i
;
}
$comp
=
$uid
=
$cal
=
false
;
// reset calendar
}
elseif
(
$attr
==
'END'
&&
$comp
!==
false
&&
$val
==
$comp
)
{
if
(
!
$uid
)
{
$uid
=
OC_Calendar_Object
::
createUID
();
}
$uids
[
$uid
][
$beginNo
]
=
array
(
'end'
=>
$i
,
'cal'
=>
$cal
);
if
(
$cals
[
$cal
][
'first'
]
==
$cal
)
{
$cals
[
$cal
][
'first'
]
=
$beginNo
;
}
$cals
[
$cal
][
'last'
]
=
$i
;
$comp
=
$uid
=
false
;
// reset component
}
elseif
(
$attr
==
"UID"
&&
$comp
!==
false
)
{
list
(
$attr
,
$uid
)
=
explode
(
':'
,
$line
);
}
}
$i
++
;
}
$calendars
=
OC_Calendar_Calendar
::
allCalendars
(
OCP\USER
::
getUser
(),
1
);
$id
=
$calendars
[
0
][
'id'
];
foreach
(
$uids
as
$uid
)
{
$prefix
=
$suffix
=
$content
=
array
();
foreach
(
$uid
as
$begin
=>
$details
)
{
$cal
=
$details
[
'cal'
];
if
(
!
isset
(
$cals
[
$cal
]))
{
continue
;
// from corrupt/incomplete calendar
}
$cdata
=
$cals
[
$cal
];
// if we have multiple components from different calendar objects,
// we should really merge their elements (enhancement?) -- 1st one wins for now.
if
(
!
count
(
$prefix
))
{
$prefix
=
array_slice
(
$lines
,
$cal
,
$cdata
[
'first'
]
-
$cal
);
}
if
(
!
count
(
$suffix
))
{
$suffix
=
array_slice
(
$lines
,
$cdata
[
'last'
]
+
1
,
$cdata
[
'end'
]
-
$cdata
[
'last'
]);
}
$content
=
array_merge
(
$content
,
array_slice
(
$lines
,
$begin
,
$details
[
'end'
]
-
$begin
+
1
));
}
if
(
count
(
$content
))
{
$import
=
join
(
$nl
,
array_merge
(
$prefix
,
$content
,
$suffix
))
.
$nl
;
OC_Calendar_Object
::
add
(
$id
,
$import
);
}
}
OCP\JSON
::
success
();
?>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
apps/calendar/js/calendar.js
+
45
−
0
View file @
ad66bb9c
...
...
@@ -602,6 +602,50 @@ Calendar={
});
/*var permissions = (this.checked) ? 1 : 0;*/
}
},
Drop
:{
init
:
function
(){
if
(
typeof
window
.
FileReader
===
'
undefined
'
)
{
console
.
log
(
'
The drop-import feature is not supported in your browser :(
'
);
return
false
;
}
droparea
=
document
.
getElementById
(
'
calendar_holder
'
);
droparea
.
ondrop
=
function
(
e
){
e
.
preventDefault
();
Calendar
.
UI
.
Drop
.
drop
(
e
);
}
console
.
log
(
'
Drop initialized successfully
'
);
},
drop
:
function
(
e
){
var
files
=
e
.
dataTransfer
.
files
;
for
(
var
i
=
0
;
i
<
files
.
length
;
i
++
){
var
file
=
files
[
i
]
reader
=
new
FileReader
();
reader
.
onload
=
function
(
event
){
if
(
file
.
type
!=
'
text/calendar
'
){
$
(
'
#notification
'
).
html
(
'
At least one file don
\'
t seems to be a calendar file. File skipped.
'
);
$
(
'
#notification
'
).
slideDown
();
window
.
setTimeout
(
function
(){
$
(
'
#notification
'
).
slideUp
();},
5000
);
return
false
;
}
else
{
Calendar
.
UI
.
Drop
.
import
(
event
.
target
.
result
);
$
(
'
#calendar_holder
'
).
fullCalendar
(
'
refetchEvents
'
);
}
}
reader
.
readAsDataURL
(
file
);
}
},
import
:
function
(
data
){
$
.
post
(
OC
.
filePath
(
'
calendar
'
,
'
ajax/import
'
,
'
dropimport.php
'
),
{
'
data
'
:
data
},
function
(
result
)
{
if
(
result
.
status
==
'
success
'
){
return
true
;
}
else
{
$
(
'
#notification
'
).
html
(
'
ownCloud wasn
\'
t able to import at least one file. File skipped.
'
);
$
(
'
#notification
'
).
slideDown
();
window
.
setTimeout
(
function
(){
$
(
'
#notification
'
).
slideUp
();},
5000
);
}
});
}
}
}
}
...
...
@@ -859,4 +903,5 @@ $(document).ready(function(){
$
(
'
#calendar_holder
'
).
fullCalendar
(
'
next
'
);
});
Calendar
.
UI
.
Share
.
init
();
Calendar
.
UI
.
Drop
.
init
();
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment