Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / rt / share / html / User / Prefs.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC
6 %#                                          <sales@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 <& /Elements/Tabs &>
50
51 <& /Elements/ListActions, actions => \@results &>
52
53 <form action="<%RT->Config->Get('WebPath')%>/User/Prefs.html" method="post">
54 <input type="hidden" class="hidden" name="id" value="<%$UserObj->Id%>" />
55
56 <table width="100%" border="0">
57 <tr>
58
59 <td valign="top" class="boxcontainer">
60 <&| /Widgets/TitleBox, title => loc('Identity'), id => "user-prefs-identity" &>
61
62 <input type="hidden" class="hidden" name="Name" value="<%$UserObj->Name%>" />
63 <table cellspacing="0" cellpadding="0">
64   <tr>
65     <td class="label"><&|/l&>Email</&>: </td>
66     <td class="value"><input name="EmailAddress" value="<%$UserObj->EmailAddress%>" /></td>
67   </tr>
68   <tr>
69     <td class="label"><&|/l&>Real Name</&>:</td>
70     <td class="value"><input name="RealName" value="<%$UserObj->RealName%>" /></td>  </tr>
71   <tr>
72     <td class="label"><&|/l&>Nickname</&>:</td>
73     <td class="value"><input name="NickName" value="<%$UserObj->NickName || ''%>" /></td>
74   </tr>
75 %#  <tr>
76 %#    <td class="label"><&|/l&>Language</&>:</td>
77 %#    <td class="value"><& /Elements/SelectLang, Name => 'Lang', Default => $UserObj->Lang &></td>
78 %#  </tr>
79   <tr>
80     <td class="label"><&|/l&>Timezone</&>:</td>
81     <td class="value"><& /Elements/SelectTimezone, Name => 'Timezone', Default => $UserObj->Timezone &></td>
82   </tr>
83 </table>
84 </&>
85 <&| /Widgets/TitleBox, title => loc('Phone numbers'), id => "user-prefs-phone" &>
86 <table cellspacing="0" cellpadding="0">
87   <tr>
88     <td class="label"><&|/l&>Residence</&>:</td>
89     <td class="value"><input name="HomePhone" value="<%$UserObj->HomePhone || ''%>" size="13" /></td>
90   </tr>
91   <tr>
92     <td class="label"><&|/l&>Work</&>:</td>
93     <td class="value"><input name="WorkPhone" value="<%$UserObj->WorkPhone || ''%>" size="13" /></td>
94   </tr>
95   <tr>
96     <td class="label"><&|/l&>Mobile</&>:</td>
97     <td class="value"><input name="MobilePhone" value="<%$UserObj->MobilePhone || ''%>" size="13" /></td>
98   </tr>
99   <tr>
100     <td class="label"><&|/l&>Pager</&>:</td>
101     <td class="value"><input name="PagerPhone" value="<%$UserObj->PagerPhone || ''%>" size="13" /></td>
102   </tr>
103 </table>
104 </&>
105 % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormLeftColumn' );
106 </td>
107 <td valign="top" class="boxcontainer">
108
109 <&| /Widgets/TitleBox, title => loc('Password'), id => "user-prefs-password" &>
110 <& /Elements/EditPassword,
111     User => $UserObj,
112     Name => [qw(CurrentPass Pass1 Pass2)],
113 &>
114 </&>
115
116 <&| /Widgets/TitleBox, title => loc('Location'), id => "user-prefs-location" &>
117 <table cellspacing="0" cellpadding="0">
118   <tr>
119     <td class="label"><&|/l&>Organization</&>:</td>
120     <td class="value"><input name="Organization" value="<%$UserObj->Organization || ''%>" /></td>
121   </tr>
122   <tr>
123     <td class="label"><&|/l&>Address1</&>:</td>
124     <td class="value"><input name="Address1" value="<%$UserObj->Address1 || ''%>" /></td>
125   </tr>
126   <tr>
127     <td class="label"><&|/l&>Address2</&>:</td>
128     <td class="value"><input name="Address2" value="<%$UserObj->Address2 || ''%>" /></td>
129   </tr>
130   <tr>
131     <td class="label"><&|/l&>City</&>:</td>
132     <td><input name="City" value="<%$UserObj->City || ''%>" size="14" /></td>
133   </tr>
134   <tr>
135     <td class="label"><&|/l&>State</&>:</td>
136     <td class="value"><input name="State" value="<%$UserObj->State || ''%>" size="3" /></td>
137   </tr>
138   <tr>
139     <td class="label"><&|/l&>Zip</&>:</td>
140     <td class="value"><input name="Zip" value="<%$UserObj->Zip || ''%>" size="9" /></td>
141   </tr>
142   <tr>
143     <td class="label"><&|/l&>Country</&>:</td>
144     <td class="value"><input name="Country" value="<%$UserObj->Country || ''%>" /></td>
145   </tr>
146 </table>
147 </&>
148
149 <&| /Widgets/TitleBox, title => loc('Custom Fields') &>
150 <table>
151 % my $CustomFields = $UserObj->CustomFields;
152 % while ( my $CF = $CustomFields->Next ) {
153 <tr valign="top">
154 <td align="right"><% loc( $CF->Name ) %>:</td>
155 <td><& /Elements/EditCustomField,
156     %ARGS, Object => $UserObj, CustomField => $CF
157 &></td></tr>
158 % }
159 </table>
160 </&>
161
162 % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormRightColumn' );
163 </td>
164 </tr>
165
166
167 <tr><td colspan="2" valign="top" class="boxcontainer">
168 %if ($UserObj->Privileged) {
169 <br />
170 <&| /Widgets/TitleBox, title => loc('Signature') &>
171 <textarea cols="80" rows="5" name="Signature" class="signature" wrap="hard">
172 <%$UserObj->Signature || ''%></textarea>
173 </&>
174 % }
175 </td></tr>
176
177 <tr><td colspan="2" valign="top" class="boxcontainer">
178 <&| /Widgets/TitleBox, title => loc('Secret authentication token'), id => "user-prefs-feeds" &>
179
180 <p><&|/l&>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>
181
182 <& /Elements/Submit, Label => loc('Reset secret authentication token'), Name => "ResetAuthToken" &>
183 </&>
184 </td></tr>
185
186 </table>
187
188 % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormEnd' );
189
190 <& /Elements/Submit, Label => loc('Save Preferences') &>
191 </form>
192
193
194 <%INIT>
195
196 my $UserObj = RT::User->new( $session{'CurrentUser'} );
197 $UserObj->Load($id) if $id;
198 $UserObj->Load($Name) if $Name && !$UserObj->id;
199 unless ( $UserObj->id ) {
200     Abort(loc("Couldn't load user #[_1] or user '[_2]'", $id, $Name))
201         if $id && $Name;
202     Abort(loc("Couldn't load user #[_1]", $id))
203         if $id;
204     Abort(loc("Couldn't load user '[_1]'", $Name))
205         if $Name;
206     Abort(loc("Couldn't load user"));
207 }
208 $id = $UserObj->id;
209
210 my @results;
211
212 if ( $ARGS{'ResetAuthToken'} ) {
213     my ($status, $msg) = $UserObj->GenerateAuthToken;
214     push @results, $msg;
215 }
216 else {
217     my @fields = qw(
218         Name Comments Signature EmailAddress FreeformContactInfo 
219         Organization RealName NickName Lang EmailEncoding WebEncoding 
220         ExternalContactInfoId ContactInfoSystem Gecos ExternalAuthId 
221         AuthSystem HomePhone WorkPhone MobilePhone PagerPhone Address1
222         Address2 City State Zip Country Timezone
223     );
224
225     $m->callback(
226         CallbackName => 'UpdateLogic',
227         fields       => \@fields,
228         results      => \@results,
229         UserObj      => $UserObj,
230         ARGSRef      => \%ARGS,
231     );
232
233     push @results, UpdateRecordObject (
234         AttributesRef => \@fields,
235         Object => $UserObj,
236         ARGSRef => \%ARGS,
237     );
238
239     push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj );
240
241     if ( $Lang ) {
242         $session{'CurrentUser'}->LanguageHandle($Lang);
243         $session{'CurrentUser'} = $session{'CurrentUser'}; # force writeback
244     }
245
246     # Deal with special fields: Privileged, Enabled, and Password
247     if  ( $SetPrivileged and $Privileged != $UserObj->Privileged ) {
248         my ($code, $msg) = $UserObj->SetPrivileged( $Privileged );
249         push @results, loc('Privileged status: [_1]', loc_fuzzy($msg));
250     }
251
252     my %password_cond = $UserObj->CurrentUserRequireToSetPassword;
253     if (defined $Pass1 && length $Pass1 ) {
254         my ($status, $msg) = $UserObj->SafeSetPassword(
255             Current      => $CurrentPass,
256             New          => $Pass1,
257             Confirmation => $Pass2,
258         );
259         push @results, loc("Password: [_1]", $msg);
260     }
261 }
262
263 </%INIT>
264
265
266 <%ARGS>
267 $id => $session{'CurrentUser'}->Id
268 $Name  => undef
269 $Comments  => undef
270 $Signature  => undef
271 $EmailAddress  => undef
272 $FreeformContactInfo => undef
273 $Organization  => undef
274 $RealName  => undef
275 $NickName  => undef
276 $Privileged => undef
277 $SetPrivileged => undef
278 $Enabled => undef
279 $SetEnabled => undef
280 $Lang  => undef
281 $EmailEncoding  => undef
282 $WebEncoding => undef
283 $ExternalContactInfoId  => undef
284 $ContactInfoSystem  => undef
285 $Gecos => undef
286 $ExternalAuthId  => undef
287 $AuthSystem  => undef
288 $HomePhone => undef
289 $WorkPhone  => undef
290 $MobilePhone  => undef
291 $PagerPhone  => undef
292 $Address1 => undef
293 $Address2  => undef
294 $City  => undef
295 $State  => undef
296 $Zip  => undef
297 $Country => undef
298 $CurrentPass => undef
299 $Pass1 => undef
300 $Pass2 => undef
301 $Create=> undef
302 </%ARGS>