streams/Zotlabs/Access/PermissionRoles.php

195 lines
4.7 KiB
PHP
Raw Normal View History

2016-06-27 11:44:10 +00:00
<?php
namespace Zotlabs\Access;
/**
* @brief PermissionRoles class.
*
* @see Permissions
*/
2016-06-27 11:44:10 +00:00
class PermissionRoles {
/**
* @brief PermissionRoles version.
*
* This must match the version in Permissions.php before permission updates can run.
*
* @return number
*/
static public function version() {
return 2;
}
2016-06-27 11:44:10 +00:00
2016-07-05 05:37:30 +00:00
static function role_perms($role) {
$ret = array();
$ret['role'] = $role;
2018-10-04 02:10:52 +00:00
if(defined('NOMADIC')) {
switch($role) {
case 'social':
$ret['perms_auto'] = false;
$ret['default_collection'] = false;
$ret['directory_publish'] = true;
$ret['online'] = true;
$ret['perms_connect'] = [
'view_stream', 'view_profile', 'view_contacts', 'view_storage',
'view_pages', 'send_stream', 'post_wall', 'post_comments'
];
$ret['limits'] = PermissionLimits::Std_Limits();
break;
case 'social_restricted':
$ret['perms_auto'] = false;
$ret['default_collection'] = true;
$ret['directory_publish'] = true;
$ret['online'] = true;
$ret['perms_connect'] = [
'view_stream', 'view_profile', 'view_contacts', 'view_storage',
'view_pages', 'send_stream', 'post_wall', 'post_comments'
];
$ret['limits'] = PermissionLimits::Std_Limits();
break;
case 'forum':
$ret['perms_auto'] = true;
$ret['default_collection'] = false;
$ret['directory_publish'] = true;
$ret['online'] = false;
$ret['perms_connect'] = [
'view_stream', 'view_profile', 'view_contacts', 'view_storage',
'view_pages', 'post_wall', 'post_comments', 'tag_deliver'
];
$ret['limits'] = PermissionLimits::Std_Limits();
break;
case 'forum_restricted':
$ret['perms_auto'] = false;
$ret['default_collection'] = true;
$ret['directory_publish'] = true;
$ret['online'] = false;
$ret['perms_connect'] = [
'view_stream', 'view_profile', 'view_contacts', 'view_storage',
'view_pages', 'post_wall', 'post_comments', 'tag_deliver'
];
$ret['limits'] = PermissionLimits::Std_Limits();
break;
case 'feed':
$ret['perms_auto'] = true;
$ret['default_collection'] = false;
$ret['directory_publish'] = true;
$ret['online'] = false;
$ret['perms_connect'] = [
'view_stream', 'view_profile', 'view_contacts', 'view_storage',
'view_pages', 'send_stream', 'post_wall', 'post_comments',
'republish'
];
$ret['limits'] = PermissionLimits::Std_Limits();
break;
default:
break;
}
}
else {
switch($role) {
case 'social':
$ret['perms_auto'] = false;
$ret['default_collection'] = false;
$ret['directory_publish'] = true;
$ret['online'] = true;
$ret['perms_connect'] = [ 'view_stream', 'view_profile', 'view_contacts', 'view_storage', 'send_stream', 'post_comments' ];
2018-10-04 02:10:52 +00:00
$ret['limits'] = PermissionLimits::Std_Limits();
$ret['limits']['post_comments'] = PERMS_AUTHED;
$ret['limits']['post_mail'] = PERMS_AUTHED;
$ret['limits']['post_like'] = PERMS_AUTHED;
$ret['limits']['chat'] = PERMS_AUTHED;
break;
case 'forum':
$ret['perms_auto'] = true;
$ret['default_collection'] = false;
$ret['directory_publish'] = true;
$ret['online'] = false;
$ret['perms_connect'] = [
'view_stream', 'view_profile', 'view_contacts', 'view_storage',
'view_pages', 'post_comments', 'tag_deliver'
2018-10-04 02:10:52 +00:00
];
$ret['limits'] = PermissionLimits::Std_Limits();
$ret['limits']['post_comments'] = PERMS_AUTHED;
break;
default:
break;
}
2016-06-27 11:44:10 +00:00
}
2016-07-05 05:37:30 +00:00
$x = get_config('system','role_perms');
// let system settings over-ride any or all
2016-07-05 05:37:30 +00:00
if($x && is_array($x) && array_key_exists($role,$x))
$ret = array_merge($ret,$x[$role]);
2016-06-27 11:44:10 +00:00
/**
* @hooks get_role_perms
* * \e array
*/
$x = [ 'role' => $role, 'result' => $ret ];
2016-07-05 05:37:30 +00:00
call_hooks('get_role_perms', $x);
return $x['result'];
2016-07-05 05:37:30 +00:00
}
2016-06-27 11:44:10 +00:00
2016-07-06 03:21:47 +00:00
/**
* @brief Array with translated role names and grouping.
*
* Return an associative array with grouped role names that can be used
* to create select groups like in \e field_select_grouped.tpl.
*
* @return array
*/
2016-07-06 03:21:47 +00:00
static public function roles() {
2018-10-04 02:10:52 +00:00
if(defined('NOMADIC')) {
$roles = [
t('Social Networking') => [
'social' => t('Social - Normal'),
'social_restricted' => t('Social - Restricted')
],
t('Community Forum') => [
'forum' => t('Forum - Normal'),
'forum_restricted' => t('Forum - Restricted')
],
t('Feed Republish') => [
'feed' => t('Feed Republish')
]
];
}
else {
$roles = [
t('Social Networking') => [
'social' => t('Social - Federation'),
],
t('Community Forum') => [
'forum' => t('Forum - Normal'),
]
];
}
2016-07-06 03:21:47 +00:00
call_hooks('list_permission_roles',$roles);
return $roles;
2016-07-06 03:21:47 +00:00
}
2016-06-27 11:44:10 +00:00
}