2018-07-19 09:52:05 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Model/PermissionSet.php
|
|
|
|
*/
|
2019-11-05 08:27:22 -05:00
|
|
|
|
2018-07-19 09:52:05 -04:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2020-01-13 22:20:18 -05:00
|
|
|
use Friendica\BaseModel;
|
2019-11-05 08:27:22 -05:00
|
|
|
use Friendica\DI;
|
2018-07-19 09:52:05 -04:00
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* functions for interacting with the permission set of an object (item, photo, event, ...)
|
2018-07-19 09:52:05 -04:00
|
|
|
*/
|
2020-01-13 22:20:18 -05:00
|
|
|
class PermissionSet extends BaseModel
|
2018-07-19 09:52:05 -04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Fetch the id of a given permission set. Generate a new one when needed
|
|
|
|
*
|
2019-11-05 08:27:22 -05:00
|
|
|
* @param int $uid
|
|
|
|
* @param string|null $allow_cid Allowed contact IDs - empty = everyone
|
|
|
|
* @param string|null $allow_gid Allowed group IDs - empty = everyone
|
|
|
|
* @param string|null $deny_cid Disallowed contact IDs - empty = no one
|
|
|
|
* @param string|null $deny_gid Disallowed group IDs - empty = no one
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return int id
|
2020-01-13 22:20:18 -05:00
|
|
|
* @throws \Exception
|
|
|
|
* @deprecated since 2020.03, use Repository\PermissionSet instead
|
|
|
|
* @see \Friendica\Repository\PermissionSet->getIdFromACL
|
2018-07-19 09:52:05 -04:00
|
|
|
*/
|
2019-11-05 08:27:22 -05:00
|
|
|
public static function getIdFromACL(
|
|
|
|
int $uid,
|
|
|
|
string $allow_cid = null,
|
|
|
|
string $allow_gid = null,
|
|
|
|
string $deny_cid = null,
|
|
|
|
string $deny_gid = null
|
|
|
|
) {
|
2020-01-13 22:20:18 -05:00
|
|
|
return DI::permissionSet()->getIdFromACL($uid, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
|
2018-07-19 09:52:05 -04:00
|
|
|
}
|
2018-07-25 19:14:55 -04:00
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Returns a permission set for a given contact
|
2018-07-25 19:14:55 -04:00
|
|
|
*
|
|
|
|
* @param integer $uid User id whom the items belong
|
|
|
|
* @param integer $contact_id Contact id of the visitor
|
|
|
|
*
|
|
|
|
* @return array of permission set ids.
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2020-01-13 22:20:18 -05:00
|
|
|
* @deprecated since 2020.03, use Repository\PermissionSet instead
|
|
|
|
* @see \Friendica\Repository\PermissionSet->selectByContactId
|
2018-07-25 19:14:55 -04:00
|
|
|
*/
|
2020-01-13 22:20:18 -05:00
|
|
|
public static function get($uid, $contact_id)
|
2018-07-25 19:14:55 -04:00
|
|
|
{
|
2020-01-13 22:20:18 -05:00
|
|
|
$permissionSets = DI::permissionSet()->selectByContactId($contact_id, $uid);
|
2018-07-25 19:14:55 -04:00
|
|
|
|
2020-01-13 22:20:18 -05:00
|
|
|
return $permissionSets->column('id');
|
2018-07-25 19:14:55 -04:00
|
|
|
}
|
2018-07-19 09:52:05 -04:00
|
|
|
}
|