| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Add a flag to a profile | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2009, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Action to flag a profile. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							|  |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							|  |  |  |  * @link     http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  | class FlagprofileAction extends ProfileFormAction | 
					
						
							| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function prepare($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |         if (!parent::prepare($args)) { | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $user = common_current_user(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         assert(!empty($user)); // checked above
 | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |         assert(!empty($this->profile)); // checked above
 | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (User_flag_profile::exists($this->profile->id, | 
					
						
							| 
									
										
										
										
											2009-12-28 09:08:28 -08:00
										 |  |  |                                       $user->id)) { | 
					
						
							| 
									
										
										
										
											2010-10-02 22:25:32 +02:00
										 |  |  |             // TRANS: Client error when setting flag that has already been set for a profile.
 | 
					
						
							|  |  |  |             $this->clientError(_m('Flag already exists.')); | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 19:29:55 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Handle request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Overriding the base Action's handle() here to deal check | 
					
						
							|  |  |  |      * for Ajax and return an HXR response if necessary | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args; handled in prepare() | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($_SERVER['REQUEST_METHOD'] == 'POST') { | 
					
						
							|  |  |  |             $this->handlePost(); | 
					
						
							|  |  |  |             if (!$this->boolean('ajax')) { | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |                 $this->returnToPrevious(); | 
					
						
							| 
									
										
										
										
											2009-11-19 19:29:55 -08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |      * Handle POST | 
					
						
							| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |     function handlePost() | 
					
						
							| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  |         $user = common_current_user(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         assert(!empty($user)); | 
					
						
							|  |  |  |         assert(!empty($this->profile)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 10:58:49 -08:00
										 |  |  |         // throws an exception on error
 | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 10:58:49 -08:00
										 |  |  |         User_flag_profile::create($user->id, $this->profile->id); | 
					
						
							| 
									
										
										
										
											2009-11-19 19:56:24 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 19:29:55 -08:00
										 |  |  |         if ($this->boolean('ajax')) { | 
					
						
							|  |  |  |             $this->ajaxResults(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 09:08:28 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Return results as AJAX message | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function ajaxResults() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |         header('Content-Type: text/xml;charset=utf-8'); | 
					
						
							|  |  |  |         $this->xw->startDocument('1.0', 'UTF-8'); | 
					
						
							|  |  |  |         $this->elementStart('html'); | 
					
						
							|  |  |  |         $this->elementStart('head'); | 
					
						
							| 
									
										
										
										
											2010-10-02 22:25:32 +02:00
										 |  |  |         // TRANS: AJAX form title for a flagged profile.
 | 
					
						
							|  |  |  |         $this->element('title', null, _m('Flagged for review')); | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |         $this->elementEnd('head'); | 
					
						
							|  |  |  |         $this->elementStart('body'); | 
					
						
							| 
									
										
										
										
											2010-10-02 22:25:32 +02:00
										 |  |  |         // TRANS: Body text for AJAX form when a profile has been flagged for review.
 | 
					
						
							|  |  |  |         $this->element('p', 'flagged', _m('Flagged')); | 
					
						
							| 
									
										
										
										
											2009-11-16 18:24:59 +01:00
										 |  |  |         $this->elementEnd('body'); | 
					
						
							|  |  |  |         $this->elementEnd('html'); | 
					
						
							| 
									
										
										
										
											2009-10-15 04:47:11 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } |