summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_acct/basics.html
blob: 441c20add35d17bfd67952bb50a0387a39fbd116 (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
<% &ntable("#cccccc") %><TR><TD><% &ntable("#cccccc",2) %>

<& /view/elements/tr.html, label=>mt('Service'),  value=>$part_svc->svc &>
% if ( $opt{cust_svc}->agent_svcid ) {
  <& /view/elements/tr.html, label=>mt('Legacy ID'),  value=>$opt{cust_svc}->agent_svcid &>
% }
<& /view/elements/tr.html, label=>mt('Username'), value=>$svc_acct->username &>
<& /view/elements/tr.html, label=>mt('Domain'),   value=>$domain &>

% if ( $opt{'communigate'} ) {
  <& /view/elements/tr.html, label=>mt('Aliases'), value=>$svc_acct->cgp_aliases &>
%}

% if ( $svc_acct->pbxsvc ) {
  <& /view/elements/tr.html, label=>mt('PBX'), value=>$svc_acct->pbx_title &>
%}

% my $show_pw = '';
% my $password = $svc_acct->get_cleartext_password; 
% if ( $password =~ /^\*\w+\* (.*)$/ ) {
%   $password = $1;
%   $show_pw .= '<I>('. mt('login disabled') .')</I> ';
% }
% if ( ! $password
%      && $svc_acct->_password_encryption ne 'plain'
%      && $svc_acct->_password
%    )
% {
%   $show_pw .= '<I>('. uc($svc_acct->_password_encryption). ' '.mt('encrypted').')</I>';
% } elsif ( $conf->exists('showpasswords') ) { 
%   $show_pw .= '<SPAN >'. encode_entities($password). '</PRE>';
% } else { 
%   $password = '';
%   $show_pw .= '<I>('. mt('hidden') .')</I>';
% }
<TR>
  <TD ALIGN="right"><% mt('Password') %></TD>
  <TD STYLE="background-color: #ffffff; white-space: nowrap">
  <% $show_pw %>
% my $curuser = $FS::CurrentUser::CurrentUser;
% if ( $curuser->access_right('Provision customer service') or
%     ($curuser->access_right('Edit password') and
%      ! $part_svc->restrict_edit_password) )
% {
  <& /elements/change_password.html,
      'svc_acct'    => $svc_acct,
      'curr_value'  => $password,
  &>
% }
  </TD>
</TR>

% if ( $conf->exists('security_phrase') ) {
  <& /view/elements/tr.html, label=>mt('Security phrase'), value=>$svc_acct->sec_phrase &>
% } 

% if ( $svc_acct->popnum ) {
%   my $svc_acct_pop = qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum});
    <& /view/elements/tr.html, label=>mt('Access number'), value=>$svc_acct_pop->text &>
% } 

% if ( $svc_acct->sectornum && $conf->exists('svc_acct-tower_sector') ) {
%   my $tower_sector = $svc_acct->tower_sector;
%   my $link = $tower_sector->ip_addr
%                ? '<A HREF="http://'. $tower_sector->ip_addr. '">'
%                : '';
    <& /view/elements/tr.html,
        label => mt('Tower sector'),
        value => $link. $tower_sector->description. ($link ? '</A>' : ''),
    &>
% }

<& /view/elements/tr-svc_export_machine.html,
     'svc'      => $svc_acct,
     'part_svc' => $part_svc,
&>

% if ($svc_acct->uid ne '') { 
  <& /view/elements/tr.html, label=>mt('UID'), value=>$svc_acct->uid &>
% } 

% if ($svc_acct->gid ne '') { 
  <& /view/elements/tr.html, label=>mt('GID'), value=>$svc_acct->gid &>
% } 

% if ($svc_acct->finger ne '') { 
  <& /view/elements/tr.html, label=>mt('Real Name'), value=>$svc_acct->finger &>
% } 

% if ($svc_acct->dir ne '') { 
  <& /view/elements/tr.html, label=>mt('Home directory'), value=>$svc_acct->dir &>
% } 

% if ($svc_acct->shell ne '') { 
  <& /view/elements/tr.html, label=>mt('Shell'), value=>$svc_acct->shell &>
% } 

% if ($svc_acct->quota ne '' && ! $opt{'communigate'} ) { 

  <& /view/elements/tr.html, label=>mt('Quota'), value=>$svc_acct->quota &>

% } elsif ( $opt{'communigate'} ) {

  <& communigate.html, %opt &>

% }

<%perl>
# minor false laziness w/ view/svc_broadband.cgi
sub slipip {
  my $svc_acct = shift;
  my $out = $svc_acct->slipip or return '';
  if ( $out eq '0.0.0.0' or $out eq '0e0' ) {
    return '<I>('.mt('Dynamic').'</I>';
  }
  $out .= ' ('.
          include('/elements/popup_link-ping.html', ip => $svc_acct->slipip).
          ')';
  if ( my $addr_block = $svc_acct->addr_block ) {
    $out .= '<br>Netmask: ' . $addr_block->NetAddr->mask .
            '<br>Gateway: ' . $addr_block->ip_gateway;
  }
  $out;
}
</%perl>

% if ($svc_acct->slipip) { 
  <& /view/elements/tr.html,
       label=>mt('IP address'),
       value=> slipip($svc_acct)
  &>
% } 

<& usage.html, 'svc_acct' => $svc_acct &>

% foreach my $attribute ( grep /^radius_/, $svc_acct->fields ) {
%   $attribute =~ /^radius_(.*)$/;
%   my $pattribute = $FS::raddb::attrib{$1};
    <& /view/elements/tr.html, label=>mt("Radius (reply) [_1]",$pattribute),
                          value=>$svc_acct->getfield($attribute)
    &>
% } 

% foreach my $attribute ( grep /^rc_/, $svc_acct->fields ) {
%   $attribute =~ /^rc_(.*)$/;
%   my $pattribute = $FS::raddb::attrib{$1};
    <& /view/elements/tr.html, label=>mt("Radius (check) [_1]",$pattribute),
                          value=>$svc_acct->getfield($attribute)
    &>
% } 

<& /view/elements/tr.html, label=>mt('RADIUS groups'),
    value=>join('<BR>', $svc_acct->radius_groups('long_description')) &>

<& router.html, 'svc_acct' => $svc_acct &>

%# Can this be abstracted further?  Maybe a library function like
%# widget('HTML', 'view', $svc_acct) ?  It would definitely make UI 
%# style management easier.
% foreach (sort { $a cmp $b } $svc_acct->virtual_fields) { 
  <% $svc_acct->pvf($_)->widget('HTML', 'view', $svc_acct->getfield($_)) %>
% } 

</TABLE></TD></TR></TABLE>
<%init>

my %opt = @_;

my $conf = new FS::Conf;

my $svc_acct = $opt{'svc_acct'};
my $part_svc = $opt{'part_svc'};

die 'Empty domsvc for svc_acct.svcnum '. $svc_acct->svcnum
  unless $svc_acct->domsvc;
my $svc_domain = qsearchs('svc_domain', { 'svcnum' => $svc_acct->domsvc } );
die 'Unknown domain (domsvc '. $svc_acct->domsvc.
    ' for svc_acct.svcnum '. $svc_acct->svcnum. ')'
  unless $svc_domain;
my $domain = $svc_domain->domain;

</%init>