2019-10-22 22:40:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
|
|
|
use Friendica\Model\Group;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Util class for ACL formatting
|
|
|
|
*/
|
|
|
|
final class ACLFormatter
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Turn user/group ACLs stored as angle bracketed text into arrays
|
|
|
|
*
|
2019-11-01 13:13:29 +00:00
|
|
|
* @param string|null $ids A angle-bracketed list of IDs
|
2019-10-22 22:40:14 +00:00
|
|
|
*
|
2019-11-01 14:43:16 +00:00
|
|
|
* @return array The array based on the IDs (empty in case there is no list)
|
2019-10-22 22:40:14 +00:00
|
|
|
*/
|
2019-11-01 13:13:29 +00:00
|
|
|
public function expand(string $ids = null)
|
2019-10-22 22:40:14 +00:00
|
|
|
{
|
2019-11-01 14:43:16 +00:00
|
|
|
// In case there is no ID list, return empty array (=> no ACL set)
|
2019-11-01 13:13:29 +00:00
|
|
|
if (!isset($ids)) {
|
2019-11-01 14:43:16 +00:00
|
|
|
return [];
|
2019-11-01 13:13:29 +00:00
|
|
|
}
|
|
|
|
|
2019-10-22 22:40:14 +00:00
|
|
|
// turn string array of angle-bracketed elements into numeric array
|
|
|
|
// e.g. "<1><2><3>" => array(1,2,3);
|
|
|
|
preg_match_all('/<(' . Group::FOLLOWERS . '|'. Group::MUTUALS . '|[0-9]+)>/', $ids, $matches, PREG_PATTERN_ORDER);
|
|
|
|
|
|
|
|
return $matches[1];
|
|
|
|
}
|
2019-10-22 22:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrap ACL elements in angle brackets for storage
|
|
|
|
*
|
|
|
|
* @param string $item The item to sanitise
|
|
|
|
*/
|
2019-10-23 19:38:51 +00:00
|
|
|
private function sanitize(string &$item) {
|
2019-11-01 13:13:29 +00:00
|
|
|
// The item is an ACL int value
|
2019-10-22 22:54:34 +00:00
|
|
|
if (intval($item)) {
|
|
|
|
$item = '<' . intval(Strings::escapeTags(trim($item))) . '>';
|
2019-11-01 13:13:29 +00:00
|
|
|
// The item is a allowed ACL character
|
2019-10-22 22:54:34 +00:00
|
|
|
} elseif (in_array($item, [Group::FOLLOWERS, Group::MUTUALS])) {
|
|
|
|
$item = '<' . $item . '>';
|
2019-11-01 13:13:29 +00:00
|
|
|
// The item is already a ACL string
|
|
|
|
} elseif (preg_match('/<\d+?>/', $item)) {
|
2019-10-29 06:01:50 +00:00
|
|
|
unset($item);
|
2019-11-01 13:13:29 +00:00
|
|
|
// The item is not supported, so remove it (cleanup)
|
|
|
|
} else {
|
|
|
|
$item = '';
|
2019-10-22 22:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert an ACL array to a storable string
|
|
|
|
*
|
|
|
|
* Normally ACL permissions will be an array.
|
|
|
|
* We'll also allow a comma-separated string.
|
|
|
|
*
|
|
|
|
* @param string|array $permissions
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2019-10-23 19:38:51 +00:00
|
|
|
function toString($permissions) {
|
2019-10-22 22:54:34 +00:00
|
|
|
$return = '';
|
|
|
|
if (is_array($permissions)) {
|
|
|
|
$item = $permissions;
|
|
|
|
} else {
|
|
|
|
$item = explode(',', $permissions);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($item)) {
|
2019-10-23 19:38:51 +00:00
|
|
|
array_walk($item, [$this, 'sanitize']);
|
2019-10-22 22:54:34 +00:00
|
|
|
$return = implode('', $item);
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
2019-10-22 22:40:14 +00:00
|
|
|
}
|