| 
									
										
										
										
											2009-11-01 14:11:52 -05:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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 GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 09:15:07 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Data class for profile flags | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |  * @category  Data | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2009 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2009-11-01 14:11:52 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2009-11-01 14:16:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 09:15:07 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Data class for profile flags | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * A class representing a user flagging another profile for review. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |  * @category  Action | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2009 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2009-12-28 09:15:07 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-08-18 12:10:44 +02:00
										 |  |  | class User_flag_profile extends Managed_DataObject | 
					
						
							| 
									
										
										
										
											2009-11-01 14:11:52 -05:00
										 |  |  | { | 
					
						
							|  |  |  |     ###START_AUTOCODE
 | 
					
						
							|  |  |  |     /* the code below is auto generated do not remove the above tag */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public $__table = 'user_flag_profile';               // table name
 | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |     public $profile_id;                      // int(11)  primary_key not_null
 | 
					
						
							|  |  |  |     public $user_id;                         // int(11)  primary_key not_null
 | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |     public $cleared;                         // datetime()
 | 
					
						
							|  |  |  |     public $created;                         // datetime()
 | 
					
						
							|  |  |  |     public $modified;                        // timestamp()  not_null
 | 
					
						
							| 
									
										
										
										
											2009-11-01 14:11:52 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* the code above is auto generated do not remove the tag below */ | 
					
						
							|  |  |  |     ###END_AUTOCODE
 | 
					
						
							| 
									
										
										
										
											2009-11-01 14:24:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |     public static function schemaDef() | 
					
						
							| 
									
										
										
										
											2009-12-28 09:15:07 -08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-11-01 14:24:40 -05:00
										 |  |  |         return array( | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |             'fields' => array( | 
					
						
							|  |  |  |                 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'profile id flagged'), | 
					
						
							|  |  |  |                 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user id of the actor'), | 
					
						
							|  |  |  |                 'cleared' => array('type' => 'datetime', 'description' => 'when flag was removed'), | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |                 'created' => array('type' => 'datetime', 'description' => 'date this record was created'), | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             'primary key' => array('profile_id', 'user_id'), | 
					
						
							|  |  |  |             'indexes' => array( | 
					
						
							|  |  |  |                 'user_flag_profile_cleared_idx' => array('cleared'), | 
					
						
							|  |  |  |                 'user_flag_profile_created_idx' => array('created'), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2010-01-06 23:22:49 -08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 09:15:07 -08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Check if a flag exists for given profile and user | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param integer $profile_id Profile to check for | 
					
						
							|  |  |  |      * @param integer $user_id    User to check for | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean true if exists, else false | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |     public static function exists($profile_id, $user_id) | 
					
						
							| 
									
										
										
										
											2009-11-01 23:25:30 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $ufp = User_flag_profile::pkeyGet(array('profile_id' => $profile_id, | 
					
						
							|  |  |  |                                                 'user_id' => $user_id)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return !empty($ufp); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-12-28 10:58:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-24 11:20:08 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Create a new flag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param integer $user_id    ID of user who's flagging | 
					
						
							|  |  |  |      * @param integer $profile_id ID of profile being flagged | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |     public static function create($user_id, $profile_id) | 
					
						
							| 
									
										
										
										
											2009-12-28 10:58:49 -08:00
										 |  |  |     { | 
					
						
							|  |  |  |         $ufp = new User_flag_profile(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $ufp->profile_id = $profile_id; | 
					
						
							|  |  |  |         $ufp->user_id    = $user_id; | 
					
						
							|  |  |  |         $ufp->created    = common_sql_now(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$ufp->insert()) { | 
					
						
							| 
									
										
										
										
											2010-10-02 22:25:32 +02:00
										 |  |  |             // TRANS: Server exception.
 | 
					
						
							| 
									
										
										
										
											2011-06-17 16:19:18 +02:00
										 |  |  |             // TRANS: %d is a profile ID (number).
 | 
					
						
							| 
									
										
										
										
											2020-06-29 01:41:46 +03:00
										 |  |  |             $msg = sprintf( | 
					
						
							|  |  |  |                 _m('Could not flag profile "%d" for review.'), | 
					
						
							|  |  |  |                 $profile_id | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2009-12-28 10:58:49 -08:00
										 |  |  |             throw new ServerException($msg); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $ufp->free(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-11-01 14:11:52 -05:00
										 |  |  | } |