Merge branch 'restricted-disqus' into 0.9.x

This commit is contained in:
Zach Copley 2010-09-30 16:53:44 -07:00
commit 1770bcaa60
1 changed files with 30 additions and 39 deletions

View File

@ -52,16 +52,19 @@ if (!defined('STATUSNET')) {
* ); * );
* *
* If you only want to allow commenting on a specific user's notices or * If you only want to allow commenting on a specific user's notices or
* a specific set of user's notices, use the "nicknames" array, e.g.: * a specific set of users' notices initialize the plugin with the "restricted"
* parameter and grant the "richedit" role to those users. E.g.:
* *
* addPlugin( * addPlugin(
* 'Disqus', array( * 'Disqus', array(
* 'shortname' => 'YOURSHORTNAME', * 'shortname' => 'YOURSHORTNAME',
* 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;', * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;',
* 'nicknames' => array('spock', 'kirk', 'bones') * 'restricted' => true
* ) * )
* ); * );
* *
* $ php userrole.php -s#### -nusername -rrichedit
*
* *
* NOTE: the 'divStyle' in an optional parameter that passes in some * NOTE: the 'divStyle' in an optional parameter that passes in some
* inline CSS when creating the Disqus widget. It's a shortcut to make * inline CSS when creating the Disqus widget. It's a shortcut to make
@ -85,7 +88,11 @@ class DisqusPlugin extends Plugin
{ {
public $shortname; // Required 'shortname' for actually triggering Disqus public $shortname; // Required 'shortname' for actually triggering Disqus
public $divStyle; // Optional CSS chunk for the main <div> public $divStyle; // Optional CSS chunk for the main <div>
public $nicknames; // Optional array of nicks to restrict commenting to (default on for all users)
// By default, Disqus commenting will be available to all users.
// With restricted on, only users who have been granted the
// "richedit" role get it.
public $restricted = false;
/** /**
* Add a Disqus commenting section to the end of an individual * Add a Disqus commenting section to the end of an individual
@ -169,68 +176,52 @@ ENDOFSCRIPT;
} }
/** /**
* Override the default Notice display to add Disqus comments link * Tack on a Disqus comments link to the notice options stanza
* (the link displays the total number of comments for each notice) * (the link displays the total number of comments for each notice)
* *
* @param NoticeListItem $noticeListItem * @param NoticeListItem $noticeListItem
* *
* @return boolean override
*/ */
function onStartShowNoticeItem($noticeListItem) function onEndShowNoticeInfo($noticeListItem)
{ {
// Don't enable commenting for remote notices // Don't enable commenting for remote notices
if (empty($noticeListItem->notice->is_local)) { if (empty($noticeListItem->notice->is_local)) {
return true; return;
} }
$profile = Profile::staticGet('id', $noticeListItem->notice->profile_id); $profile = Profile::staticGet('id', $noticeListItem->notice->profile_id);
if ($this->hasCommenting($profile)) { if ($this->isAllowedRichEdit($profile)) {
// @todo Refactor individual notice display to have it's own event hooks
$noticeListItem->showNotice();
$noticeListItem->showNoticeInfo();
$noticeUrl = $noticeListItem->notice->bestUrl(); $noticeUrl = $noticeListItem->notice->bestUrl();
$noticeUrl .= '#disqus_thread'; $noticeUrl .= '#disqus_thread';
$noticeListItem->out->element( $noticeListItem->out->element(
'a', array('href' => $noticeUrl, 'class' => 'disqus_count'), 'Comments' 'a',
array('href' => $noticeUrl, 'class' => 'disqus_count'),
_m('Comments')
); );
$noticeListItem->showNoticeOptions();
Event::handle('EndShowNoticeItem', array($noticeListItem));
return false;
} else {
return true;
} }
} }
/** /**
* Helper to check whether commenting should be enabled * Does the current user have permission to use the Disqus plugin?
* for a given notice * Always true unless the plugin's "restricted" setting is on, in which
* case it's limited to users with the "richedit" role.
* *
* Assumes commenting should be enabled, unless the * @fixme make that more sanely configurable :)
* nicknames array is populated
* *
* @param Profile $profile the profile to check * @param Profile $profile the profile to check
* *
* @return boolean true if yes * @return boolean
*/ */
private function hasCommenting($profile) private function isAllowedRichEdit($profile)
{ {
if (!empty($this->nicknames)) { if ($this->restricted) {
foreach ($this->nicknames as $nickname) { $user = User::staticGet($profile->id);
if ($profile->nickname == $nickname) { return !empty($user) && $user->hasRole('richedit');
return true; } else {
} return true;
}
return false;
} }
return true;
} }
/** /**