adding missing identity hooks
[squirrelmail.git] / functions / identity.php
1 <?php
2
3 /**
4 * identity.php
5 *
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains utility functions for dealing with multiple identities
10 *
11 * @version $Id$
12 * @package squirrelmail
13 * @since 1.4.2
14 */
15
16 /** Used to simplify includes
17 * @ignore
18 */
19 if (!defined('SM_PATH')) {
20 define('SM_PATH','../');
21 }
22
23 /** preference and signature functions */
24 include_once(SM_PATH . 'include/load_prefs.php');
25
26 /**
27 * Returns an array of all the identities.
28 * Array is keyed: full_name, reply_to, email_address, index, signature
29 * @return array full_name,reply_to,email_address,index,signature
30 * @since 1.4.2
31 */
32 function get_identities() {
33
34 global $username, $data_dir, $domain;
35
36 $em = getPref($data_dir,$username,'email_address');
37 if ( ! $em ) {
38 if (strpos($username , '@') == false) {
39 $em = $username.'@'.$domain;
40 } else {
41 $em = $username;
42 }
43 }
44 $identities = array();
45 /* We always have this one, even if the user doesn't use multiple identities */
46 $identities[] = array('full_name' => getPref($data_dir,$username,'full_name'),
47 'email_address' => $em,
48 'reply_to' => getPref($data_dir,$username,'reply_to'),
49 'signature' => getSig($data_dir,$username,'g'),
50 'index' => 0 );
51
52 $num_ids = getPref($data_dir,$username,'identities');
53 /* If there are any others, add them to the array */
54 if (!empty($num_ids) && $num_ids > 1) {
55 for ($i=1;$i<$num_ids;$i++) {
56 $identities[] = array('full_name' => getPref($data_dir,$username,'full_name' . $i),
57 'email_address' => getPref($data_dir,$username,'email_address' . $i),
58 'reply_to' => getPref($data_dir,$username,'reply_to' . $i),
59 'signature' => getSig($data_dir,$username,$i),
60 'index' => $i );
61 }
62 }
63
64 return $identities;
65 }
66
67 /**
68 * Function to save the identities array
69 *
70 * @param array $identities Array of identities
71 * @since 1.5.1 and 1.4.5
72 */
73 function save_identities($identities) {
74
75 global $username, $data_dir, $domain;
76
77 if (empty($identities) || !is_array($identities)) {
78 return;
79 }
80
81
82 $num_cur = getPref($data_dir, $username, 'identities');
83
84 $cnt = count($identities);
85
86 // Remove any additional identities in prefs //
87 for($i=$cnt; $i <= $num_cur; $i++) {
88 removePref($data_dir, $username, 'full_name' . $i);
89 removePref($data_dir, $username, 'email_address' . $i);
90 removePref($data_dir, $username, 'reply_to' . $i);
91 setSig($data_dir, $username, $i, '');
92 }
93
94 foreach($identities as $id=>$ident) {
95
96 $key = ($id?$id:'');
97
98 setPref($data_dir, $username, 'full_name' . $key, $ident['full_name']);
99 setPref($data_dir, $username, 'email_address' . $key, $ident['email_address']);
100 setPref($data_dir, $username, 'reply_to' . $key, $ident['reply_to']);
101
102 if ($id === 0) {
103 setSig($data_dir, $username, 'g', $ident['signature']);
104 } else {
105 setSig($data_dir, $username, $key, $ident['signature']);
106 }
107
108 }
109
110 setPref($data_dir, $username, 'identities', $cnt);
111
112 }
113
114 /**
115 * Returns an array with a fixed set of identities
116 *
117 * @param array $identities Array of identities
118 * @param int $id Identity to modify
119 * @param string $action Action to perform
120 * @return array
121 * @since 1.5.1 and 1.4.5
122 */
123 function sqfixidentities( $identities, $id, $action ) {
124
125 $fixed = array();
126 $tmp_hold = array();
127 $i = 0;
128
129 if (empty($identities) || !is_array($identities)) {
130 return $fixed;
131 }
132
133 foreach( $identities as $key=>$ident ) {
134
135 if (empty_identity($ident)) {
136 continue;
137 }
138
139 switch($action) {
140
141 case 'makedefault':
142
143 if ($key == $id) {
144 $fixed[0] = $ident;
145
146 // inform plugins about renumbering of ids
147 do_hook('options_identities_renumber', $id, 'default');
148
149 continue 2;
150 } else {
151 $fixed[$i+1] = $ident;
152 }
153 break;
154
155 case 'move':
156
157 if ($key == ($id - 1)) {
158 $tmp_hold = $ident;
159
160 // inform plugins about renumbering of ids
161 do_hook('options_identities_renumber', $id , $id - 1);
162
163 continue 2;
164 } else {
165 $fixed[$i] = $ident;
166
167 if ($key == $id) {
168 $i++;
169 $fixed[$i] = $tmp_hold;
170 }
171 }
172 break;
173
174 case 'delete':
175
176 if ($key == $id) {
177 continue 2;
178 } else {
179 $fixed[$i] = $ident;
180 }
181 break;
182
183 // Process actions from plugins and save/update action //
184 default:
185 /**
186 * send action and id information. number of hook arguments
187 * differs from 1.4.4 or older and 1.5.0. count($args) can
188 * be used to detect modified hook. Older hook does not
189 * provide information that can be useful for plugins.
190 */
191 do_hook('options_identities_process', $action, $id);
192
193 $fixed[$i] = $ident;
194
195 }
196
197 // Inc array index //
198 $i++;
199 }
200
201 ksort($fixed);
202 return $fixed;
203
204 }
205
206 /**
207 * Function to test if identity is empty
208 *
209 * @param array $identity Identitiy Array
210 * @return boolean
211 * @since 1.5.1 and 1.4.5
212 */
213 function empty_identity($ident) {
214 if (empty($ident['full_name']) && empty($ident['email_address']) && empty($ident['signature']) && empty($ident['reply_to'])) {
215 return true;
216 } else {
217 return false;
218 }
219 }
220
221 ?>