merging rt \3.8.8 to HEAD
[freeside.git] / rt / share / html / User / Prefs.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 %#                                          <jesse@bestpractical.com>
7 %# 
8 %# (Except where explicitly superseded by other copyright notices)
9 %# 
10 %# 
11 %# LICENSE:
12 %# 
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %# 
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %# 
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %# 
29 %# 
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %# 
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %# 
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %# 
47 %# END BPS TAGGED BLOCK }}}
48 <& /Elements/Header, Title=>loc("Ticketing Preferences") &>
49 <& /User/Elements/Tabs, 
50     current_tab => 'User/Prefs.html', 
51     Title => loc("Preferences") &>
52
53 <& /Elements/ListActions, actions => \@results &>
54
55 <form action="<%RT->Config->Get('WebPath')%>/User/Prefs.html" method="post">
56 <input type="hidden" class="hidden" name="id" value="<%$UserObj->Id%>" />
57
58 <table width="100%" border="0">
59 <tr>
60
61 <td valign="top" class="boxcontainer">
62 <&| /Widgets/TitleBox, title => loc('Identity'), id => "user-prefs-identity" &>
63
64 <input type="hidden" class="hidden" name="Name" value="<%$UserObj->Name%>" />
65 <table cellspacing="0" cellpadding="0">
66   <tr>
67     <td class="label"><&|/l&>Email</&>: </td>
68     <td class="value"><input name="EmailAddress" value="<%$UserObj->EmailAddress%>" /></td>
69   </tr>
70   <tr>
71     <td class="label"><&|/l&>Real Name</&>:</td>
72     <td class="value"><input name="RealName" value="<%$UserObj->RealName%>" /></td>  </tr>
73   <tr>
74     <td class="label"><&|/l&>Nickname</&>:</td>
75     <td class="value"><input name="NickName" value="<%$UserObj->NickName || ''%>" /></td>
76   </tr>
77   <tr>
78     <td class="label"><&|/l&>Language</&>:</td>
79     <td class="value"><& /Elements/SelectLang, Name => 'Lang', Default => $UserObj->Lang &></td>
80   </tr>
81   <tr>
82     <td class="label"><&|/l&>Timezone</&>:</td>
83     <td class="value"><& /Elements/SelectTimezone, Name => 'Timezone', Default => $UserObj->Timezone &></td>
84   </tr>
85 </table>
86 </&>
87 <&| /Widgets/TitleBox, title => loc('Phone numbers'), id => "user-prefs-phone" &>
88 <table cellspacing="0" cellpadding="0">
89   <tr>
90     <td class="label"><&|/l&>Residence</&>:</td>
91     <td class="value"><input name="HomePhone" value="<%$UserObj->HomePhone || ''%>" size="13" /></td>
92   </tr>
93   <tr>
94     <td class="label"><&|/l&>Work</&>:</td>
95     <td class="value"><input name="WorkPhone" value="<%$UserObj->WorkPhone || ''%>" size="13" /></td>
96   </tr>
97   <tr>
98     <td class="label"><&|/l&>Mobile</&>:</td>
99     <td class="value"><input name="MobilePhone" value="<%$UserObj->MobilePhone || ''%>" size="13" /></td>
100   </tr>
101   <tr>
102     <td class="label"><&|/l&>Pager</&>:</td>
103     <td class="value"><input name="PagerPhone" value="<%$UserObj->PagerPhone || ''%>" size="13" /></td>
104   </tr>
105 </table>
106 </&>
107 % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormLeftColumn' );
108 </td>
109 <td valign="top" class="boxcontainer">
110
111 <&| /Widgets/TitleBox, title => loc('Password'), id => "user-prefs-password" &>
112 <& /Elements/EditPassword,
113     User => $UserObj,
114     Name => [qw(CurrentPass Pass1 Pass2)],
115 &>
116 </&>
117
118 <&| /Widgets/TitleBox, title => loc('Location'), id => "user-prefs-location" &>
119 <table cellspacing="0" cellpadding="0">
120   <tr>
121     <td class="label"><&|/l&>Organization</&>:</td>
122     <td class="value"><input name="Organization" value="<%$UserObj->Organization || ''%>" /></td>
123   </tr>
124   <tr>
125     <td class="label"><&|/l&>Address1</&>:</td>
126     <td class="value"><input name="Address1" value="<%$UserObj->Address1 || ''%>" /></td>
127   </tr>
128   <tr>
129     <td class="label"><&|/l&>Address2</&>:</td>
130     <td class="value"><input name="Address2" value="<%$UserObj->Address2 || ''%>" /></td>
131   </tr>
132   <tr>
133     <td class="label"><&|/l&>City</&>:</td>
134     <td><input name="City" value="<%$UserObj->City || ''%>" size="14" /></td>
135   </tr>
136   <tr>
137     <td class="label"><&|/l&>State</&>:</td>
138     <td class="value"><input name="State" value="<%$UserObj->State || ''%>" size="3" /></td>
139   </tr>
140   <tr>
141     <td class="label"><&|/l&>Zip</&>:</td>
142     <td class="value"><input name="Zip" value="<%$UserObj->Zip || ''%>" size="9" /></td>
143   </tr>
144   <tr>
145     <td class="label"><&|/l&>Country</&>:</td>
146     <td class="value"><input name="Country" value="<%$UserObj->Country || ''%>" /></td>
147   </tr>
148 </table>
149 </&>
150
151 <&| /Widgets/TitleBox, title => loc('Custom Fields') &>
152 <table>
153 % my $CustomFields = $UserObj->CustomFields;
154 % while ( my $CF = $CustomFields->Next ) {
155 <tr valign="top">
156 <td align="right"><% loc( $CF->Name ) %>:</td>
157 <td><& /Elements/EditCustomField,
158     %ARGS, Object => $UserObj, CustomField => $CF
159 &></td></tr>
160 % }
161 </table>
162 </&>
163
164 % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormRightColumn' );
165 </td>
166 </tr>
167
168
169 <tr><td colspan="2" valign="top" class="boxcontainer">
170 %if ($UserObj->Privileged) {
171 <br />
172 <&| /Widgets/TitleBox, title => loc('Signature') &>
173 <textarea cols="80" rows="5" name="Signature" class="signature" wrap="hard">
174 <%$UserObj->Signature || ''%></textarea>
175 </&>
176 % }
177 </td></tr>
178
179 <tr><td colspan="2" valign="top" class="boxcontainer">
180 <&| /Widgets/TitleBox, title => loc('Secret authentication token'), id => "user-prefs-feeds" &>
181
182 <&|/l&><p>All iCal feeds embed a secret token which authorizes you.  If the URL one of your iCal feeds got exposed to the outside world, you can get a new secret, <b>breaking all existing iCal feeds</b> below.</p></&>
183
184 <& /Elements/Submit, Label => loc('Reset secret authentication token'), Name => "ResetAuthToken" &>
185 </&>
186 </td></tr>
187
188 </table>
189
190 % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormEnd' );
191
192 <& /Elements/Submit, Label => loc('Save Preferences') &>
193 </form>
194
195
196 <%INIT>
197
198 my $UserObj = RT::User->new( $session{'CurrentUser'} );
199 $UserObj->Load($id) if $id;
200 $UserObj->Load($Name) if $Name && !$UserObj->id;
201 unless ( $UserObj->id ) {
202     Abort(loc("Couldn't load user #[_1] or user '[_2]'", $id, $Name))
203         if $id && $Name;
204     Abort(loc("Couldn't load user #[_1]", $id))
205         if $id;
206     Abort(loc("Couldn't load user '[_1]'", $Name))
207         if $Name;
208     Abort(loc("Couldn't load user"));
209 }
210 $id = $UserObj->id;
211
212 my @results;
213
214 my @fields = qw(
215     Name Comments Signature EmailAddress FreeformContactInfo 
216     Organization RealName NickName Lang EmailEncoding WebEncoding 
217     ExternalContactInfoId ContactInfoSystem Gecos ExternalAuthId 
218     AuthSystem HomePhone WorkPhone MobilePhone PagerPhone Address1
219     Address2 City State Zip Country Lang Timezone
220 );
221
222 $m->callback(
223     CallbackName => 'UpdateLogic',
224     fields       => \@fields,
225     results      => \@results,
226     UserObj      => $UserObj,
227     ARGSRef      => \%ARGS,
228 );
229
230 push @results, UpdateRecordObject (
231     AttributesRef => \@fields,
232     Object => $UserObj,
233     ARGSRef => \%ARGS,
234 );
235
236 push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj );
237
238 if ( $Lang ) {
239     $session{'CurrentUser'}->LanguageHandle($Lang);
240     $session{'CurrentUser'} = $session{'CurrentUser'}; # force writeback
241 }
242
243 # Deal with special fields: Privileged, Enabled, and Password
244 if  ( $SetPrivileged and $Privileged != $UserObj->Privileged ) {
245     my ($code, $msg) = $UserObj->SetPrivileged( $Privileged );
246     push @results, loc('Privileged status: [_1]', loc_fuzzy($msg));
247 }
248
249 my %password_cond = $UserObj->CurrentUserRequireToSetPassword;
250 if (defined $Pass1 && length $Pass1 ) {
251     my ($status, $msg) = $UserObj->SafeSetPassword(
252         Current      => $CurrentPass,
253         New          => $Pass1,
254         Confirmation => $Pass2,
255     );
256     push @results, loc("Password: [_1]", $msg);
257 }
258
259 if ( $ARGS{'ResetAuthToken'} ) {
260     my ($status, $msg) = $UserObj->GenerateAuthToken;
261     push @results, $msg;
262 }
263
264 </%INIT>
265
266
267 <%ARGS>
268 $id => $session{'CurrentUser'}->Id
269 $Name  => undef
270 $Comments  => undef
271 $Signature  => undef
272 $EmailAddress  => undef
273 $FreeformContactInfo => undef
274 $Organization  => undef
275 $RealName  => undef
276 $NickName  => undef
277 $Privileged => undef
278 $SetPrivileged => undef
279 $Enabled => undef
280 $SetEnabled => undef
281 $Lang  => undef
282 $EmailEncoding  => undef
283 $WebEncoding => undef
284 $ExternalContactInfoId  => undef
285 $ContactInfoSystem  => undef
286 $Gecos => undef
287 $ExternalAuthId  => undef
288 $AuthSystem  => undef
289 $HomePhone => undef
290 $WorkPhone  => undef
291 $MobilePhone  => undef
292 $PagerPhone  => undef
293 $Address1 => undef
294 $Address2  => undef
295 $City  => undef
296 $State  => undef
297 $Zip  => undef
298 $Country => undef
299 $CurrentPass => undef
300 $Pass1 => undef
301 $Pass2 => undef
302 $Create=> undef
303 </%ARGS>