1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
<?php
/*
* Copyright (C) 2003-2006 Polytechnique.org
* http://opensource.polytechnique.org/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
define('EVENT_FLAG_NONE', 0);
define('EVENT_FLAG_PUBLIC', 1);
/** This class is used to generate the menu of a Diogenes barrel page.
*/
class Diogenes_Barrel_Events
{
/** The barrel we are watching */
var $barrel;
/** Constructor.
*/
function Diogenes_Barrel_Events(&$barrel)
{
$this->barrel = $barrel;
}
/** Filename transformations.
*/
function makeFileLoc($log_file, &$caller)
{
$homepage = $this->barrel->getPID('');
if (stristr($log_file, '/') == FALSE ) {
// this is a directory
$mydir = $log_file;
$myfile = '';
} else {
$myfile = basename($log_file);
$mydir = dirname($log_file);
}
$myloc = $this->barrel->getLocation($mydir);
if ($myloc or ($mydir == $homepage))
{
$log_file = $myloc ? "$myloc/$myfile" : $myfile;
$url_loc = $myloc ? "$myloc/" : '';
$link = $caller->urlBarrel($this->barrel->alias, $this->barrel->vhost, $url_loc);
} else {
$link = '';
}
return array($log_file, $mydir, $myfile, $link);
}
/** Retrieve recent events.
*/
function getEvents($caller)
{
global $globals;
$events = array();
$res = $globals->db->query("select e.action,e.stamp,e.data,a.text,s.auth,s.uid "
."from {$globals->table_log_events} as e "
."left join {$globals->table_log_actions} as a on e.action=a.id "
."left join {$globals->table_log_sessions} as s on e.session=s.id "
."where e.data like '{$this->barrel->alias}:%' "
."order by stamp desc limit 0,10");
while ($myarr = mysql_fetch_array($res)) {
$myarr['author'] = call_user_func(array($globals->session,'getUsername'),$myarr['auth'],$myarr['uid']);
$myarr['flags'] = EVENT_FLAG_NONE;
list($op_alias, $op_file) = split(":",$myarr['data']);
switch($myarr['text']) {
case "barrel_create":
$myarr['title'] = __("site created");
$myarr['icon'] = $globals->icons->get_action_icon('add');
break;
case "barrel_options":
$myarr['title'] = __("barrel options");
$myarr['icon'] = $globals->icons->get_action_icon('properties');
break;
case "barrel_plugins":
$myarr['title'] = __("barrel plugins");
$myarr['icon'] = $globals->icons->get_action_icon('plugins');
$myarr['link_admin'] = "plugins";
break;
case "page_create":
$myarr['title'] = __("page created");
$myarr['icon'] = $globals->icons->get_action_icon('add');
list($op_file, $myarr['dir'], $myarr['file'], $myarr['link']) = $this->makeFileLoc($op_file, $caller);
$myarr['link_admin'] = "pages?dir={$myarr['dir']}";
$myarr['flags'] |= EVENT_FLAG_PUBLIC;
break;
case "page_delete":
$myarr['title'] = __("page removed");
$myarr['icon'] = $globals->icons->get_action_icon('remove');
break;
case "page_props":
$myarr['title'] = __("page properties");
$myarr['icon'] = $globals->icons->get_action_icon('properties');
list($op_file, $myarr['dir'], $myarr['file']) = $this->makeFileLoc($op_file, $caller);
$myarr['link_admin'] = "pages?dir={$myarr['dir']}";
break;
case "page_plugins":
$myarr['title'] = __("page plugins");
$myarr['icon'] = $globals->icons->get_action_icon('plugins');
list($op_file, $myarr['dir'], $myarr['file']) = $this->makeFileLoc($op_file, $caller);
$myarr['link_admin'] = "plugins?plug_page={$myarr['dir']}";
break;
case "rcs_commit":
$myarr['title'] = __("file updated");
$myarr['icon'] = $globals->icons->get_action_icon('update');
list($op_file, $myarr['dir'], $myarr['file'], $myarr['link']) = $this->makeFileLoc($op_file, $caller);
$myarr['link_admin'] = "files?action=revs&dir={$myarr['dir']}&target={$myarr['file']}";
$myarr['flags'] |= EVENT_FLAG_PUBLIC;
break;
case "rcs_delete":
$myarr['title'] = __("file deleted");
$myarr['icon'] = $globals->icons->get_action_icon('delete');
list($op_file, $myarr['dir'], $myarr['file']) = $this->makeFileLoc($op_file, $caller);
break;
}
$myarr['opfile'] = $op_file;
if (isset($myarr['title']))
array_push($events, $myarr);
}
mysql_free_result($res);
return $events;
}
}
?>
|