aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Permcat.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-02-07 16:43:00 -0800
committerzotlabs <mike@macgirvin.com>2017-02-07 16:43:00 -0800
commita6160e30262107ff73c253ecc46fffaa2986f79b (patch)
treeea8c1d57ce77d2d81caa905f94a60fd1a3e562a5 /Zotlabs/Lib/Permcat.php
parentecca69442d28cc8f328809f0589c79159639fefc (diff)
downloadvolse-hubzilla-a6160e30262107ff73c253ecc46fffaa2986f79b.tar.gz
volse-hubzilla-a6160e30262107ff73c253ecc46fffaa2986f79b.tar.bz2
volse-hubzilla-a6160e30262107ff73c253ecc46fffaa2986f79b.zip
move permcat library functions to Zlib
Diffstat (limited to 'Zotlabs/Lib/Permcat.php')
-rw-r--r--Zotlabs/Lib/Permcat.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/Zotlabs/Lib/Permcat.php b/Zotlabs/Lib/Permcat.php
new file mode 100644
index 000000000..d677cd704
--- /dev/null
+++ b/Zotlabs/Lib/Permcat.php
@@ -0,0 +1,63 @@
+<?php
+
+namespace Zotlabs\Lib;
+
+use \Zotlabs\Access as Zaccess;
+
+class Permcat {
+
+ private $permcats = [];
+
+ public function __construct($channel_id) {
+
+ $name = 'default';
+ $localname = t('default','permcat');
+
+ $perms = Zaccess\Permissions::FilledAutoPerms($channel_id);
+ if(! $perms) {
+ $role = get_pconfig($channel_id,'system','permissions_role');
+ if($role) {
+ $x = Zaccess\PermissionRoles::role_perms($role);
+ $perms = Zaccess\Permissions::FilledPerms($x['perms_connect']);
+ }
+ if(! $perms) {
+ $perms = Zaccess\Permissions::FilledPerms([]);
+ }
+ }
+
+ $this->permcats[] = [
+ 'name' => $name,
+ 'localname' => $localname,
+ 'perms' => Zaccess\Permissions::Operms($perms)
+ ];
+
+
+ $p = Zaccess\PermissionRoles::permcats($channel_id);
+ if($p) {
+ for($x = 0; $x < count($p); $x++) {
+ $this->permcats[] = [
+ 'name' => $p[$x][0],
+ 'localname' => $p[$x][1],
+ 'perms' => Zaccess\Permissions::Operms(Zaccess\Permissions::FilledPerms($p[$x][2]))
+ ];
+ }
+ }
+ }
+
+
+ public function listing() {
+ return $this->permcats;
+ }
+
+ public function fetch($name) {
+ if($name && $this->permcats) {
+ foreach($this->permcats as $permcat) {
+ if(strcasecmp($permcat['name'],$name) === 0) {
+ return $permcat;
+ }
+ }
+ }
+ return ['error' => true];
+ }
+
+} \ No newline at end of file