]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ExtendedProfile/extendedprofile.php
Merge branch '1.0.x' into profile-fixups
[quix0rs-gnu-social.git] / plugins / ExtendedProfile / extendedprofile.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET')) {
21     exit(1);
22 }
23
24 /**
25  * Class to represent extended profile data
26  */
27 class ExtendedProfile
28 {
29     protected $fields;
30
31     /**
32      * Constructor
33      *
34      * @param Profile $profile
35      */
36     function __construct(Profile $profile)
37     {
38         $this->profile  = $profile;
39         $this->user     = $profile->getUser();
40         $this->fields   = $this->loadFields();
41         $this->sections = $this->getSections();
42         //common_debug(var_export($this->sections, true));
43
44         //common_debug(var_export($this->fields, true));
45     }
46
47     /**
48      * Load extended profile fields
49      *
50      * @return array $fields the list of fields
51      */
52     function loadFields()
53     {
54         $detail = new Profile_detail();
55         $detail->profile_id = $this->profile->id;
56         $detail->find();
57
58         $fields = array();
59
60         while ($detail->fetch()) {
61             $fields[$detail->field_name][] = clone($detail);
62         }
63
64         return $fields;
65     }
66
67     /**
68      * Get a the self-tags associated with this profile
69      *
70      * @return string the concatenated string of tags
71      */
72     function getTags()
73     {
74         return implode(' ', $this->user->getSelfTags());
75     }
76
77     /**
78      * Return a simple string value. Checks for fields that should
79      * be stored in the regular profile and returns values from it
80      * if appropriate.
81      *
82      * @param string $name name of the detail field to get the
83      *                     value from
84      *
85      * @return string the value
86      */
87     function getTextValue($name)
88     {
89         $key           = strtolower($name);
90         $profileFields = array('fullname', 'location', 'bio');
91
92         if (in_array($key, $profileFields)) {
93             return $this->profile->$name;
94         } else if (array_key_exists($key, $this->fields)) {
95             return $this->fields[$key][0]->field_value;
96         } else {
97             return null;
98         }
99     }
100
101     function getPhones()
102     {
103         $phones = (isset($this->fields['phone'])) ? $this->fields['phone'] : null;
104         $pArrays = array();
105
106         if (empty($phones)) {
107             $pArrays[] = array(
108                 'label' => _m('Phone'),
109                 'index' => 0,
110                 'type'  => 'phone',
111                 'vcard' => 'tel',
112                 'rel'   => 'office',
113                 'value' => null
114             );
115         } else {
116             for ($i = 0; $i < sizeof($phones); $i++) {
117                 $pa = array(
118                     'label' => _m('Phone'),
119                     'type'  => 'phone',
120                     'index' => intval($phones[$i]->value_index),
121                     'rel'   => $phones[$i]->rel,
122                     'value' => $phones[$i]->field_value,
123                     'vcard' => 'tel'
124                 );
125
126                $pArrays[] = $pa;
127             }
128         }
129         return $pArrays;
130     }
131
132     /**
133      *  Return all the sections of the extended profile
134      *
135      * @return array the big list of sections and fields
136      */
137     function getSections()
138     {
139         return array(
140             'basic' => array(
141                 'label' => _m('Personal'),
142                 'fields' => array(
143                     'fullname' => array(
144                         'label' => _m('Full name'),
145                         'profile' => 'fullname',
146                         'vcard' => 'fn',
147                     ),
148                     'title' => array(
149                         'label' => _m('Title'),
150                         'vcard' => 'title',
151                     ),
152                     'manager' => array(
153                         'label' => _m('Manager'),
154                         'type' => 'person',
155                         'vcard' => 'x-manager',
156                     ),
157                     'location' => array(
158                         'label' => _m('Location'),
159                         'profile' => 'location'
160                     ),
161                     'bio' => array(
162                         'label' => _m('Bio'),
163                         'type' => 'textarea',
164                         'profile' => 'bio',
165                     ),
166                     'tags' => array(
167                         'label' => _m('Tags'),
168                         'type' => 'tags',
169                         'profile' => 'tags',
170                     ),
171                 ),
172             ),
173             'contact' => array(
174                 'label' => _m('Contact'),
175                 'fields' => array(
176                     'phone' => $this->getPhones(),
177                     'im' => array(
178                         'label' => _m('IM'),
179                         'type' => 'im',
180                         'multi' => true,
181                     ),
182                     'website' => array(
183                         'label' => _m('Websites'),
184                         'type' => 'website',
185                         'multi' => true,
186                     ),
187                 ),
188             ),
189             'personal' => array(
190                 'label' => _m('Personal'),
191                 'fields' => array(
192                     'birthday' => array(
193                         'label' => _m('Birthday'),
194                         'type' => 'date',
195                         'vcard' => 'bday',
196                     ),
197                     'spouse' => array(
198                         'label' => _m('Spouse\'s name'),
199                         'vcard' => 'x-spouse',
200                     ),
201                     'kids' => array(
202                         'label' => _m('Kids\' names')
203                     ),
204                 ),
205             ),
206             'experience' => array(
207                 'label' => _m('Work experience'),
208                 'fields' => array(
209                     'experience' => array(
210                         'type' => 'experience',
211                         'label' => _m('Employer'),
212                     ),
213                 ),
214             ),
215             'education' => array(
216                 'label' => _m('Education'),
217                 'fields' => array(
218                     'education' => array(
219                         'type' => 'education',
220                         'label' => _m('Institution'),
221                     ),
222                 ),
223             ),
224         );
225     }
226 }