You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
220 lines
5.2 KiB
220 lines
5.2 KiB
package NGCP::Panel::Form::Customer::Subscriber;
|
|
|
|
use HTML::FormHandler::Moose;
|
|
extends 'HTML::FormHandler';
|
|
|
|
use HTML::FormHandler::Widget::Block::Bootstrap;
|
|
|
|
use NGCP::Panel::Utils::Form;
|
|
|
|
has '+widget_wrapper' => ( default => 'Bootstrap' );
|
|
has_field 'submitid' => ( type => 'Hidden' );
|
|
sub build_render_list {[qw/submitid fields actions/]}
|
|
sub build_form_element_class { [qw/form-horizontal/] }
|
|
|
|
has_field 'email' => (
|
|
type => 'Email',
|
|
required => 0,
|
|
maxlength => 255,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The email address of the subscriber.']
|
|
},
|
|
);
|
|
|
|
has_field 'webusername' => (
|
|
type => 'Text',
|
|
label => 'Web Username',
|
|
required => 0,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The username to log into the CSC Panel']
|
|
},
|
|
);
|
|
|
|
has_field 'webpassword' => (
|
|
type => 'Password',
|
|
label => 'Web Password',
|
|
required => 0,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The password to log into the CSC Panel']
|
|
},
|
|
);
|
|
|
|
has_field 'e164' => (
|
|
type => '+NGCP::Panel::Field::E164',
|
|
order => 99,
|
|
required => 0,
|
|
label => 'E164 Number',
|
|
do_label => 1,
|
|
do_wrapper => 1,
|
|
);
|
|
|
|
has_field 'username' => (
|
|
type => '+NGCP::Panel::Field::Identifier',
|
|
label => 'SIP Username',
|
|
required => 1,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The SIP username for the User-Agents']
|
|
},
|
|
);
|
|
|
|
has_field 'domain' => (
|
|
type => '+NGCP::Panel::Field::Domain',
|
|
label => 'SIP Domain',
|
|
validate_when_empty => 1,
|
|
);
|
|
|
|
has_field 'password' => (
|
|
type => 'Text',
|
|
label => 'SIP Password',
|
|
required => 1,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The SIP password for the User-Agents']
|
|
},
|
|
);
|
|
|
|
has_field 'lock' => (
|
|
type => '+NGCP::Panel::Field::SubscriberLockSelect',
|
|
label => 'Lock Level',
|
|
validate_when_empty => 1,
|
|
);
|
|
|
|
has_field 'status' => (
|
|
type => '+NGCP::Panel::Field::SubscriberStatusSelect',
|
|
label => 'Status',
|
|
validate_when_empty => 1,
|
|
);
|
|
|
|
has_field 'administrative' => (
|
|
type => 'Boolean',
|
|
label => 'Administrative',
|
|
required => 0,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['Subscriber can configure other subscribers within the Customer Account']
|
|
},
|
|
);
|
|
|
|
has_field 'external_id' => (
|
|
type => 'Text',
|
|
label => 'External ID',
|
|
required => 0,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['A non-unique external ID e.g., provided by a 3rd party provisioning']
|
|
},
|
|
);
|
|
|
|
has_field 'timezone' => (
|
|
type => '+NGCP::Panel::Field::TimezoneSelect',
|
|
label => 'Timezone',
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The timezone of the subscriber.']
|
|
},
|
|
);
|
|
|
|
has_field 'profile_set' => (
|
|
type => '+NGCP::Panel::Field::SubscriberProfileSet',
|
|
label => 'Subscriber Profile',
|
|
validate_when_empty => 0,
|
|
element_attr => {
|
|
rel => ['tooltip'],
|
|
title => ['The profile set defining the possible feature sets for this subscriber.']
|
|
},
|
|
);
|
|
|
|
|
|
has_field 'save' => (
|
|
type => 'Submit',
|
|
value => 'Save',
|
|
element_class => [qw/btn btn-primary/],
|
|
label => '',
|
|
);
|
|
|
|
|
|
has_block 'fields' => (
|
|
tag => 'div',
|
|
class => [qw/modal-body/],
|
|
render_list => [qw/domain e164 email webusername webpassword username password lock status external_id administrative timezone profile_set/ ],
|
|
);
|
|
|
|
has_block 'actions' => (
|
|
tag => 'div',
|
|
class => [qw/modal-footer/],
|
|
render_list => [qw/save/],
|
|
);
|
|
|
|
sub update_fields {
|
|
#IMPORTANT! redefined sub update_fields with no super call disable call of the update_field_list and defaults methods
|
|
my $self = shift;
|
|
my $c = $self->ctx;
|
|
return unless $c;
|
|
|
|
if($self->field('profile_set')) {
|
|
$self->field('profile_set')->field('id')->ajax_src(
|
|
$c->uri_for_action('/subscriberprofile/set_ajax_reseller', [$c->stash->{contract}->contact->reseller_id])->as_string
|
|
);
|
|
}
|
|
|
|
if($self->field('domain')) {
|
|
$self->field('domain')->field('id')->ajax_src(
|
|
$c->uri_for_action('/domain/ajax_filter_reseller', [$c->stash->{contract}->contact->reseller_id])->as_string
|
|
);
|
|
}
|
|
|
|
if($c->config->{security}->{password_sip_autogenerate}) {
|
|
$self->field('password')->inactive(1);
|
|
$self->field('password')->required(0);
|
|
}
|
|
if($c->config->{security}->{password_web_autogenerate}) {
|
|
$self->field('webpassword')->inactive(1);
|
|
$self->field('webpassword')->required(0);
|
|
}
|
|
}
|
|
|
|
sub validate_password {
|
|
my ($self, $field) = @_;
|
|
my $c = $self->form->ctx;
|
|
return unless $c;
|
|
|
|
NGCP::Panel::Utils::Form::validate_password(c => $c, field => $field);
|
|
}
|
|
|
|
sub validate_webpassword {
|
|
my ($self, $field) = @_;
|
|
my $c = $self->form->ctx;
|
|
return unless $c;
|
|
|
|
NGCP::Panel::Utils::Form::validate_password(c => $c, field => $field);
|
|
}
|
|
|
|
1;
|
|
|
|
=head1 NAME
|
|
|
|
NGCP::Panel::Form::Subscriber
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Form to modify a subscriber.
|
|
|
|
=head1 METHODS
|
|
|
|
=head1 AUTHOR
|
|
|
|
Gerhard Jungwirth
|
|
|
|
=head1 LICENSE
|
|
|
|
This library is free software. You can redistribute it and/or modify
|
|
it under the same terms as Perl itself.
|
|
|
|
=cut
|
|
|
|
# vim: set tabstop=4 expandtab:
|