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
|
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: Role.pm 1174 2008-01-08 21:02:50Z bchoate $
package MT::Role;
use strict;
use base qw( MT::Object );
# NOTE: Keep the role_mask fields defined here in sync with those in
# MT::Permission.
__PACKAGE__->install_properties({
column_defs => {
id => 'integer not null auto_increment',
name => 'string(255) not null',
description => 'text',
is_system => 'boolean',
role_mask => 'integer',
role_mask2 => 'integer', # for upgrades...
role_mask3 => 'integer',
role_mask4 => 'integer',
permissions => 'text',
},
indexes => {
name => 1,
is_system => 1,
created_on => 1,
},
defaults => {
is_system => 0,
},
child_classes => ['MT::Association'],
audit => 1,
datasource => 'role',
primary_key => 'id',
});
sub class_label {
return MT->translate('Role');
}
sub class_label_plural {
return MT->translate('Roles');
}
sub save {
my $role = shift;
my $res = $role->SUPER::save(@_) or return;
require MT::Association;
# now, update MT::Permissions to reflect role update
if (my $assoc_iter = MT::Association->load_iter({
type => [ MT::Association::USER_BLOG_ROLE(),
MT::Association::GROUP_BLOG_ROLE() ],
role_id => $role->id,
})) {
while (my $assoc = $assoc_iter->()) {
$assoc->rebuild_permissions;
}
}
$res;
}
sub remove {
my $role = shift;
if (ref $role) {
$role->remove_children({ key => 'role_id' }) or return;
}
$role->SUPER::remove(@_);
}
sub load_same {
my $class = shift;
require MT::Permission;
MT::Permission::load_same($class, @_);
}
sub load_by_permission {
my $class = shift;
my (@list) = @_;
require MT::Permission;
MT::Permission::load_same($class, undef, undef, 0, @list);
}
# Lets you set a list of permissions by name.
sub set_these_permissions {
require MT::Permission;
MT::Permission::set_these_permissions(@_);
}
sub clear_full_permissions {
require MT::Permission;
MT::Permission::clear_full_permissions(@_);
}
sub clear_permissions {
require MT::Permission;
MT::Permission::clear_permissions(@_);
}
sub set_full_permissions {
require MT::Permission;
MT::Permission::set_full_permissions(@_);
}
sub set_permissions {
require MT::Permission;
MT::Permission::set_permissions(@_);
}
sub add_permissions {
require MT::Permission;
MT::Permission::add_permissions(@_);
}
sub has {
require MT::Permission;
MT::Permission::has(@_);
}
1;
__END__
=head1 NAME
MT::Role
=head1 METHODS
=head2 save()
Save this role and rebuild the associated permissions.
=head2 remove([\%terms])
Remove this role and optionally, constrain the set with I<%terms>.
=head2 has($flag_name)
Return the value of L<MT::Permission/has> for I<flag_name>.
=head2 add_permissions
Return the value of L<MT::Permission/add_permissions>.
=head2 clear_full_permissions
Return the value of L<MT::Permission/clear_full_permissions>.
=head2 clear_permissions
Return the value of L<MT::Permission/clear_permissions>.
=head2 set_full_permissions
Return the value of L<MT::Permission/set_full_permissions>.
=head2 set_permissions
Return the value of L<MT::Permission/set_permissions>.
=head2 set_these_permissions
Return the value of L<MT::Permission/set_these_permissions>.
=head2 load_by_permission(@permissions)
Return a list of roles given by a list of I<@permissions>.
=head1 AUTHOR & COPYRIGHT
Please see L<MT/AUTHOR & COPYRIGHT>.
=cut
|