]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Awesomeness/AwesomenessPlugin.php
OAuth: Fix rare problem in which request tokens were sometimes being
[quix0rs-gnu-social.git] / plugins / Awesomeness / AwesomenessPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Plugin to add additional awesomenss to StatusNet
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Jeroen De Dauw <jeroendedauw@gmail.com>
25  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
26  * @link      http://status.net/
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 /**
34  * Fun sample plugin: tweaks input data and adds a 'Cornify' widget to sidebar.
35  *
36  * @category Plugin
37  * @package  StatusNet
38  * @author   Jeroen De Dauw <jeroendedauw@gmail.com>
39  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
40  * @link     http://status.net/
41  */
42
43 class AwesomenessPlugin extends Plugin
44 {
45         const VERSION = '0.0.42';
46
47     public function onPluginVersion(&$versions)
48     {
49         $versions[] = array(
50             'name' => 'Awesomeness',
51             'version' => self::VERSION,
52             'author' => 'Jeroen De Dauw',
53             'homepage' => 'http://status.net/wiki/Plugin:Awesomeness',
54             // TRANS: Plugin description for a sample plugin.
55             'rawdescription' => _m(
56                 'The Awesomeness plugin adds aditional awesomeness ' .
57                 'to a StatusNet installation.'
58             )
59         );
60         return true;
61     }
62
63     /**
64      * Add the conrnify button
65      *
66      * @param Action $action the current action
67      *
68      * @return void
69      */
70     function onEndShowSections(Action $action)
71     {
72         $action->elementStart('div', array('id' => 'cornify_section',
73                                          'class' => 'section'));
74
75         $action->raw(
76         <<<EOT
77                 <a href="http://www.cornify.com" onclick="cornify_add();return false;">
78                 <img src="http://www.cornify.com/assets/cornify.gif" width="61" height="16" border="0" alt="Cornify" />
79                 </a>
80         <script type="text/javascript">(function() {
81         var js = document.createElement('script');
82         js.type = 'text/javascript';
83         js.async = true;
84         js.src = 'http://www.cornify.com/js/cornify.js';
85         (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(js);
86 })();</script>
87 EOT
88         );
89
90         $action->elementEnd('div');
91     }
92
93     /**
94      * Hook for new-notice form processing to take our HTML goodies;
95      * won't affect API posting etc.
96      *
97      * @param NewNoticeAction $action
98      * @param User $user
99      * @param string $content
100      * @param array $options
101      * @return boolean hook return
102      */
103     function onStartSaveNewNoticeWeb($action, $user, &$content, &$options)
104     {
105         $content = htmlspecialchars($content);
106         $options['rendered'] = preg_replace("/(^|\s|-)((?:awesome|awesomeness)[\?!\.\,]?)(\s|$)/i", " <b>$2</b> ", $content);
107     }
108 }