Subversion Repositories oidplus

Rev

Rev 1199 | Rev 1219 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
635 daniel-mar 1
<?php
2
 
3
/*
4
 * OIDplus 2.0
1086 daniel-mar 5
 * Copyright 2019 - 2023 Daniel Marschall, ViaThinkSoft
635 daniel-mar 6
 *
7
 * Licensed under the Apache License, Version 2.0 (the "License");
8
 * you may not use this file except in compliance with the License.
9
 * You may obtain a copy of the License at
10
 *
11
 *     http://www.apache.org/licenses/LICENSE-2.0
12
 *
13
 * Unless required by applicable law or agreed to in writing, software
14
 * distributed under the License is distributed on an "AS IS" BASIS,
15
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * See the License for the specific language governing permissions and
17
 * limitations under the License.
18
 */
19
 
1050 daniel-mar 20
namespace ViaThinkSoft\OIDplus;
635 daniel-mar 21
 
1086 daniel-mar 22
// phpcs:disable PSR1.Files.SideEffects
23
\defined('INSIDE_OIDPLUS') or die;
24
// phpcs:enable PSR1.Files.SideEffects
25
 
635 daniel-mar 26
class OIDplusPageRaEditContactData extends OIDplusPagePluginRa {
27
 
1116 daniel-mar 28
        /**
29
         * @param string $actionID
30
         * @param array $params
1143 daniel-mar 31
         * @return array
1116 daniel-mar 32
         * @throws OIDplusException
33
         */
34
        public function action(string $actionID, array $params): array {
635 daniel-mar 35
                if ($actionID == 'change_ra_data') {
36
                        _CheckParamExists($params, 'email');
37
 
38
                        $email = $params['email'];
39
 
40
                        if (!OIDplus::authUtils()->isRaLoggedIn($email) && !OIDplus::authUtils()->isAdminLoggedIn()) {
41
                                throw new OIDplusException(_L('Authentication error. Please log in as admin, or as the RA to update its data.'));
42
                        }
43
 
44
                        $res = OIDplus::db()->query("select * from ###ra where email = ?", array($email));
790 daniel-mar 45
                        if (!$res->any()) {
635 daniel-mar 46
                                throw new OIDplusException(_L('RA does not exist'));
47
                        }
48
 
1199 daniel-mar 49
                        OIDplus::logger()->log("[?WARN/!OK]RA(%1)?/[?INFO/!OK]A?", "Changed RA '%1' contact data/details", $email);
635 daniel-mar 50
 
51
                        if (isset($params['ra_name']))
52
                                OIDplus::db()->query("UPDATE ###ra SET ra_name = ? WHERE email = ?", array($params['ra_name'], $email));
53
                        if (isset($params['organization']))
54
                                OIDplus::db()->query("UPDATE ###ra SET organization = ? WHERE email = ?", array($params['organization'], $email));
55
                        if (isset($params['office']))
56
                                OIDplus::db()->query("UPDATE ###ra SET office = ? WHERE email = ?", array($params['office'], $email));
57
                        if (isset($params['personal_name']))
58
                                OIDplus::db()->query("UPDATE ###ra SET personal_name = ? WHERE email = ?", array($params['personal_name'], $email));
59
                        if (isset($params['privacy']))
1172 daniel-mar 60
                                OIDplus::db()->query("UPDATE ###ra SET privacy = ? WHERE email = ?", array($params['privacy'] == 'true', $email));
635 daniel-mar 61
                        if (isset($params['street']))
62
                                OIDplus::db()->query("UPDATE ###ra SET street = ? WHERE email = ?", array($params['street'], $email));
63
                        if (isset($params['zip_town']))
64
                                OIDplus::db()->query("UPDATE ###ra SET zip_town = ? WHERE email = ?", array($params['zip_town'], $email));
65
                        if (isset($params['country']))
66
                                OIDplus::db()->query("UPDATE ###ra SET country = ? WHERE email = ?", array($params['country'], $email));
67
                        if (isset($params['phone']))
68
                                OIDplus::db()->query("UPDATE ###ra SET phone = ? WHERE email = ?", array($params['phone'], $email));
69
                        if (isset($params['mobile']))
70
                                OIDplus::db()->query("UPDATE ###ra SET mobile = ? WHERE email = ?", array($params['mobile'], $email));
71
                        if (isset($params['fax']))
72
                                OIDplus::db()->query("UPDATE ###ra SET fax = ? WHERE email = ?", array($params['fax'], $email));
73
 
74
                        OIDplus::db()->query("UPDATE ###ra SET updated = ".OIDplus::db()->sqlDate()." WHERE email = ?", array($email));
75
 
76
                        return array("status" => 0);
77
                } else {
1116 daniel-mar 78
                        return parent::action($actionID, $params);
635 daniel-mar 79
                }
80
        }
81
 
1116 daniel-mar 82
        /**
83
         * @param bool $html
84
         * @return void
85
         */
86
        public function init(bool $html=true) {
635 daniel-mar 87
                // Nothing
88
        }
89
 
1116 daniel-mar 90
        /**
91
         * @param string $id
92
         * @param array $out
93
         * @param bool $handled
94
         * @return void
95
         * @throws OIDplusException
96
         */
97
        public function gui(string $id, array &$out, bool &$handled) {
635 daniel-mar 98
                if (explode('$',$id)[0] == 'oidplus:edit_ra') {
99
                        $handled = true;
100
 
101
                        $ra_email = explode('$',$id)[1];
102
 
103
                        $out['title'] = _L('Edit RA contact data');
801 daniel-mar 104
                        $out['icon'] = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png' : '';
635 daniel-mar 105
 
106
                        if (!OIDplus::authUtils()->isRaLoggedIn($ra_email) && !OIDplus::authUtils()->isAdminLoggedIn()) {
1206 daniel-mar 107
                                throw new OIDplusHtmlException(_L('You need to <a %1>log in</a> as the requested RA %2.',OIDplus::gui()->link('oidplus:login$ra$'.$ra_email),'<b>'.htmlentities($ra_email).'</b>'), $out['title']);
635 daniel-mar 108
                        }
109
 
110
                        $out['text'] = '<p>'._L('Your email address: %1','<b>'.htmlentities($ra_email).'</b>').'</p>';
111
 
112
                        $res = OIDplus::db()->query("select * from ###ra where email = ?", array($ra_email));
790 daniel-mar 113
                        if (!$res->any()) {
1206 daniel-mar 114
                                throw new OIDplusHtmlException(_L('RA "%1" does not exist','<b>'.htmlentities($ra_email).'</b>'), $out['title']);
635 daniel-mar 115
                        }
116
                        $row = $res->fetch_array();
117
 
118
                        $changeEMailPlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.2.102'); // OIDplusPageRaChangeEMail
119
                        if (!is_null($changeEMailPlugin) && OIDplus::config()->getValue('allow_ra_email_change')) {
120
                                $out['text'] .= '<p><a '.OIDplus::gui()->link('oidplus:change_ra_email$'.$ra_email).'>'._L('Change email address').'</a></p>';
121
                        } else {
1166 daniel-mar 122
                                $out['text'] .= '<p><b>'._L('How to change the email address?').'</b> '._L('To change the email address, you need to contact the admin or superior RA. They will need to change the email address and invite you (with your new email address) again.').'</p>';
635 daniel-mar 123
                        }
124
 
125
                        // ---
126
 
127
                        $out['text'] .= '<p>'._L('Change basic information (public)').':</p>
128
                          <form id="raChangeContactDataForm" action="javascript:void(0);" onsubmit="return OIDplusPageRaEditContactData.raChangeContactDataFormOnSubmit();">
129
                            <input type="hidden" id="email" value="'.htmlentities($ra_email).'"/>
130
                            <div><label class="padding_label">'._L('RA Name').':</label><input type="text" id="ra_name" value="'.htmlentities($row['ra_name']).'"/></div>
131
                            <div><label class="padding_label">'._L('Organization').':</label><input type="text" id="organization" value="'.htmlentities($row['organization']).'"/></div>
132
                            <div><label class="padding_label">'._L('Office').':</label><input type="text" id="office" value="'.htmlentities($row['office']).'"/></div>
133
                            <div><label class="padding_label">'._L('Person name').':</label><input type="text" id="personal_name" value="'.htmlentities($row['personal_name']).'"/></div>
134
                            <br>
1172 daniel-mar 135
                            <div><label class="padding_label">'._L('Privacy').'</label><input type="checkbox" id="privacy" value="" '.($row['privacy'] == 'true' ? ' checked' : '').'/> <label for="privacy">'._L('Hide postal address and Phone/Fax/Mobile Numbers').'</label></div>
635 daniel-mar 136
                            <div><label class="padding_label">'._L('Street').':</label><input type="text" id="street" value="'.htmlentities($row['street']).'"/></div>
137
                            <div><label class="padding_label">'._L('ZIP/Town').':</label><input type="text" id="zip_town" value="'.htmlentities($row['zip_town']).'"/></div>
138
                            <div><label class="padding_label">'._L('Country').':</label><input type="text" id="country" value="'.htmlentities($row['country']).'"/></div>
139
                            <div><label class="padding_label">'._L('Phone').':</label><input type="text" id="phone" value="'.htmlentities($row['phone']).'"/></div>
140
                            <div><label class="padding_label">'._L('Mobile').':</label><input type="text" id="mobile" value="'.htmlentities($row['mobile']).'"/></div>
141
                            <div><label class="padding_label">'._L('Fax').':</label><input type="text" id="fax" value="'.htmlentities($row['fax']).'"/></div>
142
                            <br><input type="submit" value="'._L('Change data').'">
143
                          </form><br><br>';
144
 
1082 daniel-mar 145
                        $raBasePlugin = OIDplus::getPluginByOid('1.3.6.1.4.1.37476.2.5.2.4.1.1'); // OIDplusPagePublicRaBaseUtils
146
                        if (!is_null($raBasePlugin)) {
147
                                $out['text'] .= '<p><a href="#" onclick="return OIDplusPagePublicRaBaseUtils.deleteRa('.js_escape($ra_email).',\'oidplus:system\')">'._L('Delete profile').'</a> '._L('(objects stay active)').'</p>';
148
                        }
635 daniel-mar 149
                }
150
        }
151
 
1116 daniel-mar 152
        /**
153
         * @param array $json
154
         * @param string|null $ra_email
155
         * @param bool $nonjs
156
         * @param string $req_goto
157
         * @return bool
158
         * @throws OIDplusException
159
         */
160
        public function tree(array &$json, string $ra_email=null, bool $nonjs=false, string $req_goto=''): bool {
635 daniel-mar 161
                if (!$ra_email) return false;
162
                if (!OIDplus::authUtils()->isRaLoggedIn($ra_email) && !OIDplus::authUtils()->isAdminLoggedIn()) return false;
163
 
800 daniel-mar 164
                if (file_exists(__DIR__.'/img/main_icon16.png')) {
801 daniel-mar 165
                        $tree_icon = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png';
635 daniel-mar 166
                } else {
167
                        $tree_icon = null; // default icon (folder)
168
                }
169
 
170
                $json[] = array(
171
                        'id' => 'oidplus:edit_ra$'.$ra_email,
172
                        'icon' => $tree_icon,
173
                        'text' => _L('Edit RA contact data')
174
                );
175
 
176
                return true;
177
        }
178
 
1116 daniel-mar 179
        /**
180
         * @param string $request
181
         * @return array|false
182
         */
183
        public function tree_search(string $request) {
635 daniel-mar 184
                return false;
185
        }
1082 daniel-mar 186
}