. * * @category TagSubPlugin * @package StatusNet * @author Brion Vibber * @copyright 2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } /** * TagSub plugin main class * * @category TagSubPlugin * @package StatusNet * @author Brion Vibber * @copyright 2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ class TagSubPlugin extends Plugin { const VERSION = '0.1'; /** * Database schema setup * * @see Schema * * @return boolean hook value; true means continue processing, false means stop. */ function onCheckSchema() { $schema = Schema::get(); $schema->ensureTable('tagsub', TagSub::schemaDef()); return true; } /** * Load related modules when needed * * @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 'TagsubAction': case 'TagunsubAction': include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; return false; case 'TagSub': include_once $dir.'/'.$cls.'.php'; return false; case 'TagSubForm': case 'TagUnsubForm': include_once $dir.'/'.strtolower($cls).'.php'; return false; default: return true; } } /** * Map URLs to actions * * @param Net_URL_Mapper $m path-to-action mapper * * @return boolean hook value; true means continue processing, false means stop. */ function onRouterInitialized($m) { $m->connect('tag/:tag/subscribe', array('action' => 'tagsub'), array('tag' => Router::REGEX_TAG)); $m->connect('tag/:tag/unsubscribe', array('action' => 'tagunsub'), array('tag' => Router::REGEX_TAG)); return true; } /** * Plugin version data * * @param array &$versions array of version data * * @return value */ function onPluginVersion(&$versions) { $versions[] = array('name' => 'TagSub', 'version' => self::VERSION, 'author' => 'Brion Vibber', 'homepage' => 'http://status.net/wiki/Plugin:TagSub', 'rawdescription' => // TRANS: Plugin description. _m('Plugin to allow following all messages with a given tag.')); return true; } /** * Hook inbox delivery setup so tag subscribers receive all * notices with that tag in their inbox. * * Currently makes no distinction between local messages and * remote ones which happen to come in to the system. Remote * notices that don't come in at all won't ever reach this. * * @param Notice $notice * @param array $ni in/out map of profile IDs to inbox constants * @return boolean hook result */ function onStartNoticeWhoGets(Notice $notice, array &$ni) { foreach ($notice->getTags() as $tag) { $tagsub = new TagSub(); $tagsub->tag = $tag; $tagsub->find(); while ($tagsub->fetch()) { // These constants are currently not actually used, iirc $ni[$tagsub->profile_id] = NOTICE_INBOX_SOURCE_SUB; } } return true; } }