3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * A plugin to add titles to notices
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 * @category NoticeTitle
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2010 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
37 define('NOTICE_TITLE_PLUGIN_VERSION', '0.1');
40 * NoticeTitle plugin to add an optional title to notices.
42 * Stores notice titles in a secondary table, notice_title.
44 * @category NoticeTitle
46 * @author Evan Prodromou <evan@status.net>
47 * @copyright 2010 StatusNet, Inc.
48 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
49 * @link http://status.net/
51 class NoticeTitlePlugin extends Plugin
54 // By default, notice-title widget will be available to all users.
55 // With restricted on, only users who have been granted the
56 // "richedit" role get it.
57 public $restricted = false;
60 * Database schema setup
62 * Add the notice_title helper table
67 * @return boolean hook value; true means continue processing, false means stop.
69 function onCheckSchema()
71 $schema = Schema::get();
73 // For storing titles for notices
74 $schema->ensureTable('notice_title', Notice_title::schemaDef());
79 * Provide plugin version information.
81 * This data is used when showing the version page.
83 * @param array &$versions array of version data arrays; see EVENTS.txt
85 * @return boolean hook value
87 function onPluginVersion(array &$versions)
89 $url = 'http://status.net/wiki/Plugin:NoticeTitle';
91 $versions[] = array('name' => 'NoticeTitle',
92 'version' => NOTICE_TITLE_PLUGIN_VERSION,
93 'author' => 'Evan Prodromou',
96 // TRANS: Plugin description.
97 _m('Adds optional titles to notices.'));
102 * Show title entry when showing notice form
104 * @param Form $form Form being shown
106 * @return boolean hook value
108 function onStartShowNoticeFormData($form)
110 if ($this->isAllowedRichEdit()) {
111 $form->out->element('style',
113 'label#notice_data-text-label { display: none }');
114 $form->out->element('input', array('type' => 'text',
115 'id' => 'notice_title',
116 'name' => 'notice_title',
118 'maxlength' => Notice_title::MAXCHARS));
124 * Validate notice title before saving
126 * @param Action $action NewNoticeAction being executed
127 * @param integer &$authorId Author ID
128 * @param string &$text Text of the notice
129 * @param array &$options Options array
131 * @return boolean hook value
133 function onStartNoticeSaveWeb($action, &$authorId, &$text, &$options)
135 $title = $action->trimmed('notice_title');
136 if (!empty($title) && $this->isAllowedRichEdit()) {
137 if (mb_strlen($title) > Notice_title::MAXCHARS) {
138 // TRANS: Exception thrown when a notice title is too long.
139 // TRANS: %d is the maximum number of characters allowed in a title (used for plural).
140 throw new Exception(sprintf(_m('The notice title is too long (maximum %d character).',
141 'The notice title is too long (maximum %d characters).',
142 Notice_title::MAXCHARS),
143 Notice_title::MAXCHARS));
150 * Save notice title after notice is saved
152 * @param Action $action NewNoticeAction being executed
153 * @param Notice $notice Notice that was saved
155 * @return boolean hook value
157 function onEndNoticeSaveWeb($action, $notice)
159 if (!empty($notice)) {
161 $title = $action->trimmed('notice_title');
163 if (!empty($title) && $this->isAllowedRichEdit()) {
165 $nt = new Notice_title();
167 $nt->notice_id = $notice->id;
178 * Show the notice title in lists
180 * @param NoticeListItem $nli NoticeListItem being shown
182 * @return boolean hook value
184 function onStartShowNoticeTitle(NoticeListItem $nli)
186 $title = Notice_title::fromNotice($nli->notice);
188 if (!empty($title)) {
189 $nli->elementStart('h4', array('class' => 'p-name'));
190 $nli->element('a', array('href' => $nli->notice->getUrl()), $title);
191 $nli->elementEnd('h4');
199 * Show the notice title in RSS output
201 * @param Notice $notice Notice being shown
202 * @param array &$entry array of values used for RSS output
204 * @return boolean hook value
206 function onEndRssEntryArray($notice, &$entry)
208 $title = Notice_title::fromNotice($notice);
210 if (!empty($title)) {
211 $entry['title'] = $title;
218 * Show the notice title in Atom output
220 * @param Notice $notice Notice being shown
221 * @param Activity $act Activity object to be modified
222 * @param Profile $scoped Currently logged in/scoped profile
224 * @return boolean hook value
226 function onEndNoticeAsActivity(Notice $stored, Activity $act, Profile $scoped=null)
228 $title = Notice_title::fromNotice($stored);
230 if (!empty($title)) {
231 foreach ($act->objects as $obj) {
232 if ($obj->id == $stored->getUri()) {
233 $obj->title = $title;
243 * Remove title when the notice is deleted
245 * @param Notice $notice Notice being deleted
247 * @return boolean hook value
249 function onNoticeDeleteRelated($notice)
251 $nt = Notice_title::getKV('notice_id', $notice->id);
261 * If a notice has a title, show it in the <title> element
263 * @param Action $action Action being executed
265 * @return boolean hook value
267 function onStartShowHeadTitle($action)
269 $actionName = $action->trimmed('action');
271 if ($actionName == 'shownotice') {
272 $title = Notice_title::fromNotice($action->notice);
273 if (!empty($title)) {
274 $action->element('title', null,
275 // TRANS: Page title. %1$s is the title, %2$s is the site name.
276 sprintf(_m("%1\$s - %2\$s"),
278 common_config('site', 'name')));
286 * If a notice has a title, show it in the <h1> element
288 * @param Notice $notice Notice we're getting the title for
289 * @param string $title Reference to the variable which we set to the notice's title
291 * @return boolean hook value
293 function onGetNoticeTitle(Notice $notice, &$title)
295 $title = Notice_title::fromNotice($notice);
296 if (!is_null($title)) {
304 * Does the current user have permission to use the notice-title widget?
305 * Always true unless the plugin's "restricted" setting is on, in which
306 * case it's limited to users with the "richedit" role.
308 * @todo FIXME: make that more sanely configurable :)
312 private function isAllowedRichEdit()
314 if ($this->restricted) {
315 $user = common_current_user();
316 return !empty($user) && $user->hasRole('richedit');