Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1841669
owncloud.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
owncloud.php
View Options
<?php
/**
* OwnCloud Plugin
*
* @author Aleksander 'A.L.E.C' Machniak <machniak@kolabsys.com>
* @licence GNU AGPL
*
* Configuration (see config.inc.php.dist)
*
*/
class
owncloud
extends
rcube_plugin
{
// all task excluding 'login' and 'logout'
public
$task
=
'?(?!login|logout).*'
;
// we've got no ajax handlers
public
$noajax
=
true
;
// skip frames
public
$noframe
=
true
;
function
init
()
{
$rcmail
=
rcmail
::
get_instance
();
// requires kolab_auth plugin
if
(
empty
(
$_SESSION
[
'kolab_uid'
]))
{
return
;
}
$this
->
add_texts
(
'localization/'
,
false
);
// register task
$this
->
register_task
(
'owncloud'
);
// register actions
$this
->
register_action
(
'index'
,
array
(
$this
,
'action'
));
$this
->
register_action
(
'redirect'
,
array
(
$this
,
'redirect'
));
// add taskbar button
$this
->
add_button
(
array
(
'name'
=>
'owncloud'
,
'class'
=>
'button-owncloud'
,
'label'
=>
'owncloud.owncloud'
,
'href'
=>
'./?_task=owncloud'
,
'onclick'
=>
sprintf
(
"return %s.command('owncloud')"
,
JS_OBJECT_NAME
)
),
'taskbar'
);
$rcmail
->
output
->
add_script
(
JS_OBJECT_NAME
.
".enable_command('owncloud', true);
\n
"
.
JS_OBJECT_NAME
.
".owncloud = function () { location.href = './?_task=owncloud'; }"
,
'head'
);
$skin
=
$rcmail
->
config
->
get
(
'skin'
);
if
(!
file_exists
(
$this
->
home
.
"/skins/$skin/owncloud.css"
))
{
$skin
=
'default'
;
}
// add style for taskbar button (must be here) and Help UI
$this
->
include_stylesheet
(
"skins/$skin/owncloud.css"
);
}
function
action
()
{
$rcmail
=
rcmail
::
get_instance
();
$rcmail
->
output
->
add_handlers
(
array
(
'owncloudframe'
=>
array
(
$this
,
'frame'
)));
$rcmail
->
output
->
set_pagetitle
(
$this
->
gettext
(
'owncloud'
));
$rcmail
->
output
->
send
(
'owncloud.owncloud'
);
}
function
frame
()
{
$rcmail
=
rcmail
::
get_instance
();
$this
->
load_config
();
$src
=
$rcmail
->
config
->
get
(
'owncloud_url'
);
$user
=
$_SESSION
[
'kolab_uid'
];
// requires kolab_auth plugin
$pass
=
$rcmail
->
decrypt
(
$_SESSION
[
'password'
]);
$src
=
preg_replace
(
'/^(https?:
\/\/
)/'
,
'
\\
1'
.
urlencode
(
$user
)
.
':'
.
urlencode
(
$pass
)
.
'@'
,
$src
);
return
'<iframe id="owncloudframe" width="100%" height="100%" frameborder="0"'
.
' src="'
.
$src
.
'"></iframe>'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Aug 25, 3:37 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
257535
Default Alt Text
owncloud.php (2 KB)
Attached To
Mode
R14 roundcubemail-plugins-kolab
Attached
Detach File
Event Timeline
Log In to Comment