2 require_once('mod/settings.php');
4 function delegate_init(App &$a) {
5 return settings_init($a);
9 function delegate_content(App &$a) {
12 notice( t('Permission denied.') . EOL);
16 if ($a->argc > 2 && $a->argv[1] === 'add' && intval($a->argv[2])) {
18 // delegated admins can view but not change delegation permissions
20 if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
21 goaway(App::get_baseurl() . '/delegate');
27 $r = q("select `nickname` from user where uid = %d limit 1",
30 if (dbm::is_result($r)) {
31 $r = q("select id from contact where uid = %d and nurl = '%s' limit 1",
33 dbesc(normalise_link(App::get_baseurl() . '/profile/' . $r[0]['nickname']))
35 if (dbm::is_result($r)) {
36 q("insert into manage ( uid, mid ) values ( %d , %d ) ",
42 goaway(App::get_baseurl() . '/delegate');
45 if ($a->argc > 2 && $a->argv[1] === 'remove' && intval($a->argv[2])) {
47 // delegated admins can view but not change delegation permissions
49 if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
50 goaway(App::get_baseurl() . '/delegate');
53 q("delete from manage where uid = %d and mid = %d limit 1",
57 goaway(App::get_baseurl() . '/delegate');
61 $full_managers = array();
63 // These people can manage this account/page with full privilege
65 $r = q("SELECT * FROM `user` WHERE `email` = '%s' AND `password` = '%s' ",
66 dbesc($a->user['email']),
67 dbesc($a->user['password'])
69 if (dbm::is_result($r))
74 // find everybody that currently has delegated management to this account/page
76 $r = q("select * from user where uid in ( select uid from manage where mid = %d ) ",
80 if (dbm::is_result($r))
85 if(count($full_managers))
86 foreach($full_managers as $rr)
90 foreach($delegates as $rr)
93 // find every contact who might be a candidate for delegation
95 $r = q("select nurl from contact where substring_index(contact.nurl,'/',3) = '%s'
96 and contact.uid = %d and contact.self = 0 and network = '%s' ",
97 dbesc(normalise_link(App::get_baseurl())),
102 if (! dbm::is_result($r)) {
103 notice( t('No potential page delegates located.') . EOL);
107 $nicknames = array();
109 if (dbm::is_result($r)) {
110 foreach ($r as $rr) {
111 $nicknames[] = "'" . dbesc(basename($rr['nurl'])) . "'";
115 $potentials = array();
117 $nicks = implode(',',$nicknames);
119 // get user records for all potential page delegates who are not already delegates or managers
121 $r = q("select `uid`, `username`, `nickname` from user where nickname in ( $nicks )");
123 if (dbm::is_result($r))
125 if(! in_array($rr['uid'],$uids))
128 require_once("mod/settings.php");
131 $o = replace_macros(get_markup_template('delegate.tpl'),array(
132 '$header' => t('Delegate Page Management'),
133 '$base' => App::get_baseurl(),
134 '$desc' => t('Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely.'),
135 '$head_managers' => t('Existing Page Managers'),
136 '$managers' => $full_managers,
137 '$head_delegates' => t('Existing Page Delegates'),
138 '$delegates' => $delegates,
139 '$head_potentials' => t('Potential Delegates'),
140 '$potentials' => $potentials,
141 '$remove' => t('Remove'),
143 '$none' => t('No entries.')