| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Block a user via the API | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  API | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							| 
									
										
										
										
											2010-06-28 16:53:05 -07:00
										 |  |  |  * @copyright 2009-2010 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  |  * Blocks the user specified in the ID parameter as the authenticating user. | 
					
						
							|  |  |  |  * Destroys a friendship to the blocked user if it exists. Returns the | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |  * blocked user in the requested format when successful. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category API | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |  * @author   Zach Copley <zach@status.net> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class ApiBlockCreateAction extends ApiAuthAction | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     var $other   = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function prepare($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->user   = $this->auth_user; | 
					
						
							| 
									
										
										
										
											2010-06-28 16:53:05 -07:00
										 |  |  |         $this->other  = $this->getTargetProfile($this->arg('id')); | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Save the new message | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST data (unused) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::handle($args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($_SERVER['REQUEST_METHOD'] != 'POST') { | 
					
						
							|  |  |  |             $this->clientError( | 
					
						
							| 
									
										
										
										
											2010-09-12 17:08:49 +02:00
										 |  |  |                 // TRANS: Client error. POST is a HTTP command. It should not be translated.
 | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |                 _('This method requires a POST.'), | 
					
						
							|  |  |  |                 400, | 
					
						
							|  |  |  |                 $this->format | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |         if (empty($this->user) || empty($this->other)) { | 
					
						
							| 
									
										
										
										
											2011-04-03 22:44:41 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
 | 
					
						
							| 
									
										
										
										
											2009-11-08 23:10:44 +01:00
										 |  |  |             $this->clientError(_('No such user.'), 404, $this->format); | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-03 17:06:58 -08:00
										 |  |  |         // Don't allow blocking yourself!
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->user->id == $this->other->id) { | 
					
						
							|  |  |  |             $this->clientError( | 
					
						
							| 
									
										
										
										
											2010-10-21 01:53:42 +02:00
										 |  |  |                 // TRANS: Client error displayed when users try to block themselves.
 | 
					
						
							| 
									
										
										
										
											2009-12-03 17:06:58 -08:00
										 |  |  |                 _("You cannot block yourself!"), | 
					
						
							|  |  |  |                 403, | 
					
						
							|  |  |  |                 $this->format | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 10:42:55 -08:00
										 |  |  |         if (!$this->user->hasBlocked($this->other)) { | 
					
						
							|  |  |  |             if (Event::handle('StartBlockProfile', array($this->user, $this->other))) { | 
					
						
							|  |  |  |                 $result = $this->user->block($this->other); | 
					
						
							|  |  |  |                 if ($result) { | 
					
						
							|  |  |  |                     Event::handle('EndBlockProfile', array($this->user, $this->other)); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->user->hasBlocked($this->other)) { | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |             $this->initDocument($this->format); | 
					
						
							|  |  |  |             $this->showProfile($this->other, $this->format); | 
					
						
							|  |  |  |             $this->endDocument($this->format); | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-10-21 01:53:42 +02:00
										 |  |  |             // TRANS: Server error displayed when blocking a user has failed.
 | 
					
						
							| 
									
										
										
										
											2009-10-09 13:35:54 -07:00
										 |  |  |             $this->serverError(_('Block user failed.'), 500, $this->format); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |