| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Subscribe to 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    Dan Moore <dan@moore.cx> | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							| 
									
										
										
										
											2010-06-28 16:53:05 -07:00
										 |  |  |  * @copyright 2009-2010 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -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/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-17 17:17:32 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Allows the authenticating users to follow (subscribe) the user specified in | 
					
						
							|  |  |  |  * the ID parameter.  Returns the befriended user in the requested format when | 
					
						
							|  |  |  |  * successful.  Returns a string describing the failure condition when unsuccessful. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category API | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-10-12 16:36:00 -07:00
										 |  |  |  * @author   Dan Moore <dan@moore.cx> | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -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 ApiFriendshipsCreateAction extends ApiAuthAction | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |     protected $needPost = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |     var $other  = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-29 10:26:46 +01:00
										 |  |  |     protected function prepare(array $args=array()) | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-28 16:53:05 -07:00
										 |  |  |         $this->other  = $this->getTargetProfile($this->arg('id')); | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Check the format and show the user info | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         parent::handle(); | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-05 13:25:34 -07:00
										 |  |  |         if (!in_array($this->format, array('xml', 'json'))) { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             // TRANS: Client error displayed when coming across a non-supported API method.
 | 
					
						
							|  |  |  |             $this->clientError(_('API method not found.'), 404); | 
					
						
							| 
									
										
										
										
											2009-10-05 13:25:34 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |         if (empty($this->other)) { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             // TRANS: Client error displayed when trying follow who's profile could not be found.
 | 
					
						
							|  |  |  |             $this->clientError(_('Could not follow user: profile not found.'), 403); | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-17 17:17:32 +01:00
										 |  |  |         if ($this->scoped->isSubscribed($this->other)) { | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |             $errmsg = sprintf( | 
					
						
							| 
									
										
										
										
											2010-10-25 23:51:00 +02:00
										 |  |  |                 // TRANS: Client error displayed when trying to follow a user that's already being followed.
 | 
					
						
							|  |  |  |                 // TRANS: %s is the nickname of the user that is already being followed.
 | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |                 _('Could not follow user: %s is already on your list.'), | 
					
						
							|  |  |  |                 $this->other->nickname | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError($errmsg, 403); | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-19 17:20:44 +02:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2015-02-17 17:17:32 +01:00
										 |  |  |             Subscription::start($this->scoped, $this->other); | 
					
						
							| 
									
										
										
										
											2015-03-04 11:38:04 +01:00
										 |  |  |         } catch (AlreadyFulfilledException $e) { | 
					
						
							|  |  |  |             $this->clientError($e->getMessage(), 409); | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-09 17:53:35 -07:00
										 |  |  |         $this->initDocument($this->format); | 
					
						
							|  |  |  |         $this->showProfile($this->other, $this->format); | 
					
						
							|  |  |  |         $this->endDocument($this->format); | 
					
						
							| 
									
										
										
										
											2009-10-05 09:57:59 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | } |