121 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| // 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/>.
 | |
| 
 | |
| /**
 | |
|  * Data class for profile flags
 | |
|  *
 | |
|  * @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
 | |
|  */
 | |
| defined('GNUSOCIAL') || die();
 | |
| 
 | |
| /**
 | |
|  * Data class for profile flags
 | |
|  *
 | |
|  * A class representing a user flagging another profile for review.
 | |
|  *
 | |
|  * @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
 | |
|  */
 | |
| class User_flag_profile extends Managed_DataObject
 | |
| {
 | |
|     //##START_AUTOCODE
 | |
|     // the code below is auto generated do not remove the above tag
 | |
| 
 | |
|     public $__table = 'user_flag_profile';               // table name
 | |
|     public $profile_id;                      // int(11)  primary_key not_null
 | |
|     public $user_id;                         // int(11)  primary_key not_null
 | |
|     public $cleared;                         // datetime()
 | |
|     public $created;                         // datetime()
 | |
|     public $modified;                        // timestamp()  not_null
 | |
| 
 | |
|     // the code above is auto generated do not remove the tag below
 | |
|     //##END_AUTOCODE
 | |
| 
 | |
|     public static function schemaDef()
 | |
|     {
 | |
|         return [
 | |
|             'fields' => [
 | |
|                 'profile_id' => ['type' => 'int', 'not null' => true, 'description' => 'profile id flagged'],
 | |
|                 'user_id'    => ['type' => 'int', 'not null' => true, 'description' => 'user id of the actor'],
 | |
|                 'cleared'    => ['type' => 'datetime', 'description' => 'when flag was removed'],
 | |
|                 'created'    => ['type' => 'datetime', 'description' => 'date this record was created'],
 | |
|                 'modified'   => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],
 | |
|             ],
 | |
|             'primary key' => ['profile_id', 'user_id'],
 | |
|             'indexes'     => [
 | |
|                 'user_flag_profile_cleared_idx' => ['cleared'],
 | |
|                 'user_flag_profile_created_idx' => ['created'],
 | |
|             ],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Check if a flag exists for given profile and user
 | |
|      *
 | |
|      * @param int $profile_id Profile to check for
 | |
|      * @param int $user_id    User to check for
 | |
|      *
 | |
|      * @return bool true if exists, else false
 | |
|      */
 | |
|     public static function exists($profile_id, $user_id)
 | |
|     {
 | |
|         $ufp = self::pkeyGet(['profile_id' => $profile_id,
 | |
|             'user_id'                      => $user_id, ]);
 | |
| 
 | |
|         return !empty($ufp);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Create a new flag
 | |
|      *
 | |
|      * @param int $user_id    ID of user who's flagging
 | |
|      * @param int $profile_id ID of profile being flagged
 | |
|      *
 | |
|      * @return bool success flag
 | |
|      */
 | |
|     public static function create($user_id, $profile_id)
 | |
|     {
 | |
|         $ufp = new self();
 | |
| 
 | |
|         $ufp->profile_id = $profile_id;
 | |
|         $ufp->user_id    = $user_id;
 | |
|         $ufp->created    = common_sql_now();
 | |
| 
 | |
|         if (!$ufp->insert()) {
 | |
|             // TRANS: Server exception.
 | |
|             // TRANS: %d is a profile ID (number).
 | |
|             $msg = sprintf(
 | |
|                 _m('Could not flag profile "%d" for review.'),
 | |
|                 $profile_id
 | |
|             );
 | |
|             throw new ServerException($msg);
 | |
|         }
 | |
| 
 | |
|         $ufp->free();
 | |
| 
 | |
|         return true;
 | |
|     }
 | |
| }
 |