3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Widget showing a drop-down of potential addressees
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/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2011 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.
38 * Widget showing a drop-down of potential addressees
42 * @author Evan Prodromou <evan@status.net>
43 * @copyright 2011 StatusNet, Inc.
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45 * @link http://status.net/
47 class ToSelector extends Widget
58 * @param HTMLOutputter $out output context
59 * @param User $user Current user
60 * @param mixed $to Default selection for addressee
62 function __construct($out, $user, $to, $private=false, $id='notice_to', $name='notice_to')
64 parent::__construct($out);
68 $this->private = $private;
76 * @param HTMLOutputter $out output context
77 * @param User $user Current user
78 * @param mixed $to Default selection for addressee
83 $default = 'public:site';
85 if (!common_config('site', 'private')) {
86 // TRANS: Option in drop-down of potential addressees.
87 $choices['public:everyone'] = _m('SENDTO','Everyone');
88 $default = 'public:everyone';
90 // XXX: better name...?
91 // TRANS: Option in drop-down of potential addressees.
92 // TRANS: %s is a StatusNet sitename.
93 $choices['public:site'] = sprintf(_('My colleagues at %s'), common_config('site', 'name'));
95 $groups = $this->user->getGroups();
97 while ($groups instanceof User_group && $groups->fetch()) {
98 $value = 'group:'.$groups->id;
99 if (($this->to instanceof User_group) && $this->to->id == $groups->id) {
102 $choices[$value] = $groups->getBestName();
105 // XXX: add users...?
107 if ($this->to instanceof Profile) {
108 $value = 'profile:'.$this->to->id;
110 $choices[$value] = $this->to->getBestName();
113 $this->out->dropdown($this->id,
114 // TRANS: Label for drop-down of potential addressees.
121 $this->out->elementStart('span', 'checkbox-wrapper');
122 $this->out->checkbox('notice_private',
123 // TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private.
126 $this->out->elementEnd('span');
129 static function fillOptions($action, &$options)
131 // XXX: make arg name selectable
132 $toArg = $action->trimmed('notice_to');
133 $private = $action->boolean('notice_private');
139 list($prefix, $value) = explode(':', $toArg);
142 $options['groups'] = array($value);
144 $options['scope'] = Notice::GROUP_SCOPE;
148 $profile = Profile::getKV('id', $value);
149 $options['replies'] = array($profile->getUri());
151 $options['scope'] = Notice::ADDRESSEE_SCOPE;
155 if ($value == 'everyone' && !common_config('site', 'private')) {
156 $options['scope'] = 0;
157 } else if ($value == 'site') {
158 $options['scope'] = Notice::SITE_SCOPE;
162 // TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received.
163 throw new ClientException(sprintf(_('Unknown to value: "%s".'),$toArg));