mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 00:43:20 +01:00
* Calendar - merge from sidebox will now open in Collabora, if available
This commit is contained in:
parent
755a9bdf39
commit
07de0df0ea
@ -550,8 +550,11 @@ class calendar_ui
|
|||||||
}
|
}
|
||||||
|
|
||||||
$_GET['merge'] = $content['merge'];
|
$_GET['merge'] = $content['merge'];
|
||||||
$this->merge();
|
if($this->merge())
|
||||||
return;
|
{
|
||||||
|
Framework::redirect('/index.php');//, array('menuaction' => 'calendar.calendar_uiviews.index'));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Etemplate::reset_request();
|
Etemplate::reset_request();
|
||||||
$sidebox = new Etemplate('calendar.sidebox');
|
$sidebox = new Etemplate('calendar.sidebox');
|
||||||
@ -586,9 +589,24 @@ class calendar_ui
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Merge print
|
// Merge print
|
||||||
|
try {
|
||||||
|
if (class_exists('EGroupware\\collabora\\Bo') &&
|
||||||
|
$GLOBALS['egw_info']['user']['apps']['collabora'] &&
|
||||||
|
$discovery = \EGroupware\collabora\Bo::discover()
|
||||||
|
)
|
||||||
|
{
|
||||||
|
$cont['collabora_enabled'] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (\Exception $e)
|
||||||
|
{
|
||||||
|
// ignore failed discovery
|
||||||
|
unset($e);
|
||||||
|
}
|
||||||
if ($GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir'])
|
if ($GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir'])
|
||||||
{
|
{
|
||||||
$sel_options['merge'] = calendar_merge::get_documents($GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir'], '', null,'calendar');
|
$sel_options['merge'] = calendar_merge::get_documents($GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir'], '', null,'calendar');
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -788,6 +806,8 @@ class calendar_ui
|
|||||||
* If timespan is not provided, we try to guess based on the document name.
|
* If timespan is not provided, we try to guess based on the document name.
|
||||||
*
|
*
|
||||||
* @param Array $timespan
|
* @param Array $timespan
|
||||||
|
*
|
||||||
|
* @return boolean stop execution
|
||||||
*/
|
*/
|
||||||
public function merge($timespan = array())
|
public function merge($timespan = array())
|
||||||
{
|
{
|
||||||
@ -836,9 +856,21 @@ class calendar_ui
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$document = $_GET['merge'];
|
||||||
$merge = new calendar_merge();
|
$merge = new calendar_merge();
|
||||||
//error_log($_GET['merge'] . ' Timespan: ');foreach($timespan as $t) error_log(Api\DateTime::to($t['start']) . ' - ' . Api\DateTime::to($t['end']));
|
if($error = $merge->check_document($document, $GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir']))
|
||||||
$error = $merge->download($_GET['merge'], $timespan, '', $GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir']);
|
{
|
||||||
|
return $error;
|
||||||
|
}
|
||||||
|
if(!$error && $this->merge_collabora($document, $timespan))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else if (!$error)
|
||||||
|
{
|
||||||
|
//error_log($_GET['merge'] . ' Timespan: ');foreach($timespan as $t) error_log(Api\DateTime::to($t['start']) . ' - ' . Api\DateTime::to($t['end']));
|
||||||
|
$error = $merge->download($document, $timespan, '', $GLOBALS['egw_info']['user']['preferences']['calendar']['document_dir']);
|
||||||
|
}
|
||||||
// Here? Doesn't actually give the message
|
// Here? Doesn't actually give the message
|
||||||
Framework::refresh_opener($error, 'calendar');
|
Framework::refresh_opener($error, 'calendar');
|
||||||
}
|
}
|
||||||
@ -852,4 +884,43 @@ class calendar_ui
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function merge_collabora($document, $timespan)
|
||||||
|
{
|
||||||
|
$file = Api\Vfs::stat($document);
|
||||||
|
if(!$file['mime'])
|
||||||
|
{
|
||||||
|
$file['mime'] = Api\Vfs::mime_content_type($document);
|
||||||
|
}
|
||||||
|
|
||||||
|
$editable_mimes = array();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (class_exists('EGroupware\\collabora\\Bo') &&
|
||||||
|
$GLOBALS['egw_info']['user']['apps']['collabora'] &&
|
||||||
|
$discovery = \EGroupware\collabora\Bo::discover()
|
||||||
|
)
|
||||||
|
{
|
||||||
|
$editable_mimes = $discovery;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (\Exception $e)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$timespan = json_encode($timespan);
|
||||||
|
|
||||||
|
if ($editable_mimes[$file['mime']])
|
||||||
|
{
|
||||||
|
Framework::popup(Framework::link('/index.php', array(
|
||||||
|
'menuaction' => 'collabora.EGroupware\\collabora\\Ui.merge_edit',
|
||||||
|
'document' => $document,
|
||||||
|
'merge' => 'calendar_merge',
|
||||||
|
'id' => $timespan
|
||||||
|
)),'_blank',false);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1802,9 +1802,16 @@ app.classes.calendar = (function(){ "use strict"; return AppJS.extend(
|
|||||||
// Set the hidden inputs to the current time span & submit
|
// Set the hidden inputs to the current time span & submit
|
||||||
widget.getRoot().getWidgetById('first').set_value(app.calendar.state.first);
|
widget.getRoot().getWidgetById('first').set_value(app.calendar.state.first);
|
||||||
widget.getRoot().getWidgetById('last').set_value(app.calendar.state.last);
|
widget.getRoot().getWidgetById('last').set_value(app.calendar.state.last);
|
||||||
widget.getInstanceManager().postSubmit();
|
if(widget.getRoot().getArrayMgr('content').getEntry('collabora_enabled'))
|
||||||
|
{
|
||||||
|
widget.getInstanceManager().submit();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
widget.getInstanceManager().postSubmit();
|
||||||
|
window.setTimeout(function() {widget.set_value('');},100);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
window.setTimeout(function() {widget.set_value('');},100);
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user