]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/FeedSub/FeedSubPlugin.php
Initial functional version of feed subscription plugin, currently supporting only...
[quix0rs-gnu-social.git] / plugins / FeedSub / FeedSubPlugin.php
1 <?php
2 /*
3 StatusNet Plugin: 0.9
4 Plugin Name: FeedSub
5 Plugin URI: http://status.net/wiki/Feed_subscription
6 Description: FeedSub allows subscribing to real-time updates from external feeds supporting PubHubSubbub protocol.
7 Version: 0.1
8 Author: Brion Vibber <brion@status.net>
9 Author URI: http://status.net/
10 */
11
12 /*
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2009, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 /**
31  * @package FeedSubPlugin
32  * @maintainer Brion Vibber <brion@status.net>
33  */
34
35 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
36
37 define('FEEDSUB_SERVICE', 100); // fixme -- avoid hardcoding these?
38
39 // We bundle the XML_Parse_Feed library...
40 set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib');
41
42 class FeedSubException extends Exception
43 {
44 }
45
46 class FeedSubPlugin extends Plugin
47 {
48     /**
49      * Hook for RouterInitialized event.
50      *
51      * @param Net_URL_Mapper $m path-to-action mapper
52      * @return boolean hook return
53      */
54
55     function onRouterInitialized($m)
56     {
57         $m->connect('feedsub/callback/:feed',
58                     array('action' => 'feedsubcallback'),
59                     array('feed' => '[0-9]+'));
60         $m->connect('settings/feedsub',
61                     array('action' => 'feedsubsettings'));
62         return true;
63     }
64
65     /**
66      * Add the feed settings page to the Connect Settings menu
67      *
68      * @param Action &$action The calling page
69      *
70      * @return boolean hook return
71      */
72     function onEndConnectSettingsNav(&$action)
73     {
74         $action_name = $action->trimmed('action');
75
76         $action->menuItem(common_local_url('feedsubsettings'),
77                           dgettext('FeebSubPlugin', 'Feeds'),
78                           dgettext('FeedSubPlugin', 'Feed subscription options'),
79                           $action_name === 'feedsubsettings');
80
81         return true;
82     }
83
84     /**
85      * Automatically load the actions and libraries used by the plugin
86      *
87      * @param Class $cls the class
88      *
89      * @return boolean hook return
90      *
91      */
92     function onAutoload($cls)
93     {
94         $base = dirname(__FILE__);
95         $lower = strtolower($cls);
96         $files = array("$base/$lower.php");
97         if (substr($lower, -6) == 'action') {
98             $files[] = "$base/actions/" . substr($lower, 0, -6) . ".php";
99         }
100         foreach ($files as $file) {
101             if (file_exists($file)) {
102                 include_once $file;
103                 return false;
104             }
105         }
106         return true;
107     }
108
109     /*
110     // auto increment seems to be broken
111     function onCheckSchema() {
112         $schema = Schema::get();
113         $schema->ensureDataObject('Feedinfo');
114         return true;
115     }
116     */
117 }