354 lines
7.0 KiB
354 lines
7.0 KiB
package NGCP::Schema::Result::voicemail_users;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Scalar::Util qw(blessed);
|
|
use parent 'DBIx::Class::Core';
|
|
|
|
our $VERSION = '2.007';
|
|
|
|
__PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON");
|
|
|
|
__PACKAGE__->table("kamailio.voicemail_users");
|
|
|
|
__PACKAGE__->add_columns(
|
|
"uniqueid",
|
|
{
|
|
data_type => "integer",
|
|
extra => { unsigned => 1 },
|
|
is_auto_increment => 1,
|
|
is_nullable => 0,
|
|
},
|
|
"customer_id",
|
|
{ data_type => "char", default_value => "", is_nullable => 0, size => 36 },
|
|
"context",
|
|
{
|
|
data_type => "varchar",
|
|
default_value => "default",
|
|
is_nullable => 0,
|
|
size => 63,
|
|
},
|
|
"mailbox",
|
|
{ data_type => "varchar", is_nullable => 0, size => 64 },
|
|
"password",
|
|
{ data_type => "varchar", default_value => 0, is_nullable => 0, size => 31 },
|
|
"fullname",
|
|
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
|
|
"email",
|
|
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
|
|
"pager",
|
|
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
|
|
"tz",
|
|
{
|
|
data_type => "varchar",
|
|
default_value => "central",
|
|
is_nullable => 0,
|
|
size => 10,
|
|
},
|
|
"attach",
|
|
{ data_type => "varchar", default_value => "yes", is_nullable => 0, size => 4 },
|
|
"saycid",
|
|
{ data_type => "varchar", default_value => "yes", is_nullable => 0, size => 4 },
|
|
"dialout",
|
|
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
|
|
"callback",
|
|
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 10 },
|
|
"review",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"operator",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"envelope",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"sayduration",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"saydurationm",
|
|
{ data_type => "tinyint", default_value => 1, is_nullable => 0 },
|
|
"sendvoicemail",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"delete",
|
|
{
|
|
accessor => "column_delete",
|
|
data_type => "varchar",
|
|
default_value => "no",
|
|
is_nullable => 0,
|
|
size => 4,
|
|
},
|
|
"nextaftercmd",
|
|
{ data_type => "varchar", default_value => "yes", is_nullable => 0, size => 4 },
|
|
"forcename",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"forcegreetings",
|
|
{ data_type => "varchar", default_value => "no", is_nullable => 0, size => 4 },
|
|
"hidefromdir",
|
|
{ data_type => "varchar", default_value => "yes", is_nullable => 0, size => 4 },
|
|
"stamp",
|
|
{
|
|
data_type => "timestamp",
|
|
datetime_undef_if_invalid => 1,
|
|
default_value => \"current_timestamp",
|
|
is_nullable => 0,
|
|
},
|
|
);
|
|
|
|
__PACKAGE__->set_primary_key("uniqueid");
|
|
|
|
__PACKAGE__->has_many(
|
|
"voicemail_spools",
|
|
"NGCP::Schema::Result::voicemail_spool",
|
|
{ "foreign.mailboxuser" => "self.customer_id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
__PACKAGE__->belongs_to(
|
|
"provisioning_voip_subscriber",
|
|
"NGCP::Schema::Result::provisioning_voip_subscribers",
|
|
{ "foreign.uuid" => "self.customer_id" },
|
|
{ cascade_copy => 0, cascade_delete => 0 },
|
|
);
|
|
|
|
sub TO_JSON {
|
|
my ($self) = @_;
|
|
return {
|
|
map { blessed($_) && $_->isa('DateTime') ? $_->datetime : $_ } %{ $self->next::method }
|
|
};
|
|
}
|
|
|
|
1;
|
|
__END__
|
|
|
|
=encoding UTF-8
|
|
|
|
=head1 NAME
|
|
|
|
NGCP::Schema::Result::voicemail_users
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This module is a schema class for the NGCP database table "kamailio.voicemail_users".
|
|
|
|
=head1 COMPONENTS LOADED
|
|
|
|
=over 4
|
|
|
|
=item * L<DBIx::Class::InflateColumn::DateTime>
|
|
|
|
=item * L<DBIx::Class::Helper::Row::ToJSON>
|
|
|
|
=back
|
|
|
|
=head1 TABLE: C<kamailio.voicemail_users>
|
|
|
|
=head1 ACCESSORS
|
|
|
|
=head2 uniqueid
|
|
|
|
data_type: 'integer'
|
|
extra: {unsigned => 1}
|
|
is_auto_increment: 1
|
|
is_nullable: 0
|
|
|
|
=head2 customer_id
|
|
|
|
data_type: 'char'
|
|
default_value: (empty string)
|
|
is_nullable: 0
|
|
size: 36
|
|
|
|
=head2 context
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'default'
|
|
is_nullable: 0
|
|
size: 63
|
|
|
|
=head2 mailbox
|
|
|
|
data_type: 'varchar'
|
|
is_nullable: 0
|
|
size: 31
|
|
|
|
=head2 password
|
|
|
|
data_type: 'varchar'
|
|
default_value: 0
|
|
is_nullable: 0
|
|
size: 31
|
|
|
|
=head2 fullname
|
|
|
|
data_type: 'varchar'
|
|
default_value: (empty string)
|
|
is_nullable: 0
|
|
size: 255
|
|
|
|
=head2 email
|
|
|
|
data_type: 'varchar'
|
|
default_value: (empty string)
|
|
is_nullable: 0
|
|
size: 255
|
|
|
|
=head2 pager
|
|
|
|
data_type: 'varchar'
|
|
default_value: (empty string)
|
|
is_nullable: 0
|
|
size: 255
|
|
|
|
=head2 tz
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'central'
|
|
is_nullable: 0
|
|
size: 10
|
|
|
|
=head2 attach
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'yes'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 saycid
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'yes'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 dialout
|
|
|
|
data_type: 'varchar'
|
|
default_value: (empty string)
|
|
is_nullable: 0
|
|
size: 10
|
|
|
|
=head2 callback
|
|
|
|
data_type: 'varchar'
|
|
default_value: (empty string)
|
|
is_nullable: 0
|
|
size: 10
|
|
|
|
=head2 review
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 operator
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 envelope
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 sayduration
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 saydurationm
|
|
|
|
data_type: 'tinyint'
|
|
default_value: 1
|
|
is_nullable: 0
|
|
|
|
=head2 sendvoicemail
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 delete
|
|
|
|
accessor: 'column_delete'
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 nextaftercmd
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'yes'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 forcename
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 forcegreetings
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'no'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 hidefromdir
|
|
|
|
data_type: 'varchar'
|
|
default_value: 'yes'
|
|
is_nullable: 0
|
|
size: 4
|
|
|
|
=head2 stamp
|
|
|
|
data_type: 'timestamp'
|
|
datetime_undef_if_invalid: 1
|
|
default_value: current_timestamp
|
|
is_nullable: 0
|
|
|
|
=head1 PRIMARY KEY
|
|
|
|
=over 4
|
|
|
|
=item * L</uniqueid>
|
|
|
|
=back
|
|
|
|
=head1 RELATIONS
|
|
|
|
=head2 voicemail_spools
|
|
|
|
Type: has_many
|
|
|
|
Related object: L<NGCP::Schema::Result::voicemail_spool>
|
|
|
|
=head1 AUTHOR
|
|
|
|
Sipwise Development Team C<< <support@sipwise.com> >>
|
|
|
|
=head1 LICENSE
|
|
|
|
This software is Copyright © 2017 by Sipwise GmbH, Austria.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this package. If not, see <https://www.gnu.org/licenses/>.
|