summaryrefslogtreecommitdiff
path: root/extlib/libomb/profile.php
blob: d732e10d7dfc71156b9866ee58c39bdd6f6a0d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<?php
/**
 * This file is part of libomb
 *
 * PHP version 5
 *
 * LICENSE: This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @package OMB
 * @author  Adrian Lang <mail@adrianlang.de>
 * @license http://www.gnu.org/licenses/agpl.html GNU AGPL 3.0
 * @version 0.1a-20090828
 * @link    http://adrianlang.de/libomb
 */

require_once 'invalidparameterexception.php';
require_once 'Validate.php';
require_once 'helper.php';

/**
 * OMB profile representation
 *
 * This class represents an OMB profile.
 *
 * Do not call the setters with null values. Instead, if you want to delete a
 * field, pass an empty string. The getters will return null for empty fields.
 */
class OMB_Profile
{
    protected $identifier_uri;
    protected $profile_url;
    protected $nickname;
    protected $license_url;
    protected $fullname;
    protected $homepage;
    protected $bio;
    protected $location;
    protected $avatar_url;

    /* The profile as OMB param array. Cached and rebuild on usage.
       false while outdated. */
    protected $param_array;

    /**
     * Constructor for OMB_Profile
     *
     * Initializes the OMB_Profile object with an identifier uri.
     *
     * @param string $identifier_uri The profile URI as defined by the OMB;
     *                               A unique and never changing identifier for
     *                               a profile
     *
     * @access public
     */
    public function __construct($identifier_uri)
    {
        if (!Validate::uri($identifier_uri)) {
            throw new OMB_InvalidParameterException($identifier_uri, 'profile',
                                                'omb_listenee or omb_listener');
        }
        $this->identifier_uri = $identifier_uri;
        $this->param_array    = false;
    }

    /**
     * Return the profile as array
     *
     * Returns an array which contains the whole profile as array.
     * The array is cached and only rebuilt on changes of the profile.
     *
     * @param string $prefix    The common prefix to the key for all parameters
     * @param bool   $force_all Specifies whether empty fields should be added
     *                          to the array as well; This is necessary to
     *                          clear fields via updateProfile
     *
     * @access public
     *
     * @return array The profile as parameter array
     */
    public function asParameters($prefix, $force_all = false)
    {
        if ($this->param_array === false) {
            $this->param_array = array('' => $this->identifier_uri);

            if ($force_all || !is_null($this->profile_url)) {
                $this->param_array['_profile'] = $this->profile_url;
            }

            if ($force_all || !is_null($this->homepage)) {
                $this->param_array['_homepage'] = $this->homepage;
            }

            if ($force_all || !is_null($this->nickname)) {
                $this->param_array['_nickname'] = $this->nickname;
            }

            if ($force_all || !is_null($this->license_url)) {
                $this->param_array['_license'] = $this->license_url;
            }

            if ($force_all || !is_null($this->fullname)) {
                $this->param_array['_fullname'] = $this->fullname;
            }

            if ($force_all || !is_null($this->bio)) {
                $this->param_array['_bio'] = $this->bio;
            }

            if ($force_all || !is_null($this->location)) {
                $this->param_array['_location'] = $this->location;
            }

            if ($force_all || !is_null($this->avatar_url)) {
                $this->param_array['_avatar'] = $this->avatar_url;
            }

        }
        $ret = array();
        foreach ($this->param_array as $k => $v) {
            $ret[$prefix . $k] = $v;
        }
        return $ret;
    }

    /**
     * Build an OMB_Profile object from array
     *
     * Builds an OMB_Profile object from the passed parameters array. The
     * array MUST provide a profile URI. The array fields HAVE TO be named
     * according to the OMB standard. The prefix (omb_listener or omb_listenee)
     * is passed as a parameter.
     *
     * @param string $parameters An array containing the profile parameters
     * @param string $prefix     The common prefix of the profile parameter keys
     *
     * @access public
     *
     * @returns OMB_Profile The built OMB_Profile
     */
    public static function fromParameters($parameters, $prefix)
    {
        if (!isset($parameters[$prefix])) {
            throw new OMB_InvalidParameterException('', 'profile', $prefix);
        }

        $profile = new OMB_Profile($parameters[$prefix]);
        $profile->updateFromParameters($parameters, $prefix);
        return $profile;
    }

    /**
     * Update from array
     *
     * Updates from the passed parameters array. The array does not have to
     * provide a profile URI. The array fields HAVE TO be named according to the
     * OMB standard. The prefix (omb_listener or omb_listenee) is passed as a
     * parameter.
     *
     * @param string $parameters An array containing the profile parameters
     * @param string $prefix     The common prefix of the profile parameter keys
     *
     * @access public
     */
    public function updateFromParameters($parameters, $prefix)
    {
        if (isset($parameters[$prefix.'_profile'])) {
            $this->setProfileURL($parameters[$prefix.'_profile']);
        }

        if (isset($parameters[$prefix.'_license'])) {
            $this->setLicenseURL($parameters[$prefix.'_license']);
        }

        if (isset($parameters[$prefix.'_nickname'])) {
            $this->setNickname($parameters[$prefix.'_nickname']);
        }

        if (isset($parameters[$prefix.'_fullname'])) {
            $this->setFullname($parameters[$prefix.'_fullname']);
        }

        if (isset($parameters[$prefix.'_homepage'])) {
            $this->setHomepage($parameters[$prefix.'_homepage']);
        }

        if (isset($parameters[$prefix.'_bio'])) {
            $this->setBio($parameters[$prefix.'_bio']);
        }

        if (isset($parameters[$prefix.'_location'])) {
            $this->setLocation($parameters[$prefix.'_location']);
        }

        if (isset($parameters[$prefix.'_avatar'])) {
            $this->setAvatarURL($parameters[$prefix.'_avatar']);
        }
    }

    public function getIdentifierURI()
    {
        return $this->identifier_uri;
    }

    public function getProfileURL()
    {
        return $this->profile_url;
    }

    public function getHomepage()
    {
        return $this->homepage;
    }

    public function getNickname()
    {
        return $this->nickname;
    }

    public function getLicenseURL()
    {
        return $this->license_url;
    }

    public function getFullname()
    {
        return $this->fullname;
    }

    public function getBio()
    {
        return $this->bio;
    }

    public function getLocation()
    {
        return $this->location;
    }

    public function getAvatarURL()
    {
        return $this->avatar_url;
    }

    public function setProfileURL($profile_url)
    {
        $this->setVal('profile', $profile_url, 'OMB_Helper::validateURL',
                      'profile_url');
    }

    public function setNickname($nickname)
    {
        $this->setVal('nickname', $nickname, 'OMB_Profile::validateNickname',
                      'nickname', true);
    }

    public function setLicenseURL($license_url)
    {
        $this->setVal('license', $license_url, 'OMB_Helper::validateURL',
                      'license_url');
    }

    public function setFullname($fullname)
    {
        $this->setVal('fullname', $fullname, 'OMB_Profile::validate255');
    }

    public function setHomepage($homepage)
    {
        $this->setVal('homepage', $homepage, 'OMB_Helper::validateURL');
    }

    public function setBio($bio)
    {
        $this->setVal('bio', $bio, 'OMB_Profile::validate140');
    }

    public function setLocation($location)
    {
        $this->setVal('location', $location, 'OMB_Profile::validate255');
    }

    public function setAvatarURL($avatar_url)
    {
        $this->setVal('avatar', $avatar_url, 'OMB_Helper::validateURL',
                      'avatar_url');
    }

    protected static function validate255($str)
    {
        return Validate::string($str, array('max_length' => 255));
    }

    protected static function validate140($str)
    {
        return Validate::string($str, array('max_length' => 140));
    }

    protected static function validateNickname($str)
    {
        return Validate::string($str,
                              array('min_length' => 1,
                                    'max_length' => 64,
                                    'format' => VALIDATE_NUM . VALIDATE_ALPHA));
    }

    /**
     * Set a value
     *
     * Updates a value specified by a parameter name and the new value.
     *
     * @param string   $param     The parameter name according to OMB
     * @param string   $value     The new value
     * @param callback $validator A validator function for the parameter
     * @param string   $field     The name of the field in OMB_Profile
     * @param bool     $force     Whether null values should be checked as well
     */
    protected function setVal($param, $value, $validator, $field = null,
                              $force = false)
    {
        if (is_null($field)) {
            $field = $param;
        }
        if ($value === '' && !$force) {
            $value = null;
        } elseif (!call_user_func($validator, $value)) {
            throw new OMB_InvalidParameterException($value, 'profile', $param);
        }
        if ($this->$field !== $value) {
            $this->$field      = $value;
            $this->param_array = false;
        }
    }
}
?>