-
Notifications
You must be signed in to change notification settings - Fork 0
/
SocialAnalyticsPlugin.php
200 lines (188 loc) · 6.99 KB
/
SocialAnalyticsPlugin.php
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php
/**
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* Plugin to give insights into what's happening in your social network over time.
*
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Plugin
* @package StatusNet
* @author Stéphane Bérubé <chimo@chromic.org>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://github.com/chimo/SocialAnalytics
*/
if (!defined('GNUSOCIAL')) {
// This check helps protect against security problems;
// your code file can't be executed directly from the web.
exit(1);
}
/**
* Social Analytics main class
*
* Plugin to give insights into what's happening in your social network over time.
*
* @category Plugin
* @package StatusNet
* @author Stéphane Bérubé <chimo@chromic.org>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://github.com/chimo/social-analytics
*/
class SocialAnalyticsPlugin extends Plugin
{
/**
* Initializer for this plugin
*
* Plugins overload this method to do any initialization they need,
* like connecting to remote servers or creating paths or so on.
*
* @return boolean hook value; true means continue processing, false means stop.
*/
function initialize()
{
return true;
}
/**
* Cleanup for this plugin
*
* Plugins overload this method to do any cleanup they need,
* like disconnecting from remote servers or deleting temp files or so on.
*
* @return boolean hook value; true means continue processing, false means stop.
*/
function cleanup()
{
return true;
}
function isSocial() {
$social = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$social = preg_replace('/\?.*/', '', $social); // Remove query from url
$current = parse_url(common_local_url('social'));
$current = $current['host'] . $current['path'];
return ($social === $current);
}
function onEndShowScripts(Action $action)
{
if($this->isSocial()) {
$action->script($this->path('js/jquery.details.min.js'));
$action->script($this->path('js/ol.js'));
$action->script($this->path('js/chartist.min.js'));
$action->script($this->path('js/sa.js'));
}
return true;
}
function onEndShowStyles(Action $action)
{
if($this->isSocial() && common_logged_in()) {
$action->cssLink($this->path('css/bootstrap.min.css'));
$action->cssLink($this->path('css/chartist.min.css'));
$action->cssLink($this->path('css/ol.css'));
$action->cssLink($this->path('css/sa.css'));
}
return true;
}
/**
* Load related modules when needed
*
* Most non-trivial plugins will require extra modules to do their work. Typically
* these include data classes, action classes, widget classes, or external libraries.
*
* This method receives a class name and loads the PHP file related to that class. By
* tradition, action classes typically have files named for the action, all lower-case.
* Data classes are in files with the data class name, initial letter capitalized.
*
* Note that this method will be called for *all* overloaded classes, not just ones
* in this plugin! So, make sure to return true by default to let other plugins, and
* the core code, get a chance.
*
* @param string $cls Name of the class to be loaded
*
* @return boolean hook value; true means continue processing, false means stop.
*/
function onAutoload($cls)
{
$dir = dirname(__FILE__);
switch ($cls)
{
case 'SocialAction':
include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
return false;
case 'Social_analytics':
include_once $dir . '/'.$cls.'.php';
return false;
default:
return true;
}
}
/**
* Map URLs to actions
*
* This event handler lets the plugin map URLs on the site to actions (and
* thus an action handler class). Note that the action handler class for an
* action will be named 'FoobarAction', where action = 'foobar'. The class
* must be loaded in the onAutoload() method.
*
* @param Net_URL_Mapper $m path-to-action mapper
*
* @return boolean hook value; true means continue processing, false means stop.
*/
function onRouterInitialized(URLMapper $m)
{
$m->connect('social',
array('action' => 'social'));
return true;
}
/**
* Modify the default menu to link to our custom action
*
* Using event handlers, it's possible to modify the default UI for pages
* almost without limit. In this method, we add a menu item to the default
* primary menu for the interface to link to our action.
*
* The Action class provides a rich set of events to hook, as well as output
* methods.
*
* @param Menu $menu The current menu handler. Use this to
* do any output.
*
* @return boolean hook value; true means continue processing, false means stop.
*
* @see Menu
*/
function onEndPersonalGroupNav(Menu $menu, Profile $target, Profile $scoped=null)
{
// common_local_url() gets the correct URL for the action name
// we provide
$menu->menuItem(common_local_url('social'),
// TRANS: Menu item in sample plugin.
_m('Social Analytics'),
// TRANS: Menu item title in sample plugin.
_m('Social Analytics Stats'), false, 'nav_social');
return true;
}
function onPluginVersion(array &$versions)
{
$versions[] = array('name' => 'Social Analytics',
'version' => '0.2.0',
'author' => 'Stéphane Bérubé',
'homepage' => 'https://github.com/chimo/gs-socialAnalytics',
'rawdescription' =>
// TRANS: Plugin description.
_m('Plugin to give insights into what\'s happening in your social network over time.'));
return true;
}
}