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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
|
# BEGIN BPS TAGGED BLOCK {{{
#
# COPYRIGHT:
#
# This software is Copyright (c) 1996-2022 Best Practical Solutions, LLC
# <sales@bestpractical.com>
#
# (Except where explicitly superseded by other copyright notices)
#
#
# LICENSE:
#
# This work is made available to you under the terms of Version 2 of
# the GNU General Public License. A copy of that license should have
# been provided with this software, but in any event can be snarfed
# from www.gnu.org.
#
# This work 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 program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 or visit their web page on the internet at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
#
#
# CONTRIBUTION SUBMISSION POLICY:
#
# (The following paragraph is not intended to limit the rights granted
# to you to modify and distribute this software under the terms of
# the GNU General Public License and is only of importance to you if
# you choose to contribute your changes and enhancements to the
# community by submitting them to Best Practical Solutions, LLC.)
#
# By intentionally submitting any modifications, corrections or
# derivatives to this work, or any other work intended for use with
# Request Tracker, to Best Practical Solutions, LLC, you confirm that
# you are the copyright holder for those contributions and you grant
# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
# royalty-free, perpetual, license to use, copy, create derivative
# works based on those contributions, and sublicense and distribute
# those contributions and any derivatives thereof.
#
# END BPS TAGGED BLOCK }}}
=head1 NAME
RT::Queue - an RT Queue object
=head1 SYNOPSIS
use RT::Queue;
=head1 DESCRIPTION
An RT queue object.
=head1 METHODS
=cut
package RT::Queue;
use strict;
use warnings;
use base 'RT::Record';
use Role::Basic 'with';
with "RT::Record::Role::Lifecycle",
"RT::Record::Role::Links" => { -excludes => ["_AddLinksOnCreate"] },
"RT::Record::Role::Roles",
"RT::Record::Role::Rights";
sub Table {'Queues'}
sub LifecycleType { "ticket" }
sub ModifyLinkRight { "AdminQueue" }
require RT::ACE;
RT::ACE->RegisterCacheHandler(sub {
my %args = (
Action => "",
RightName => "",
@_
);
return unless $args{Action} =~ /^(Grant|Revoke)$/i
and $args{RightName} =~ /^(SeeQueue|CreateTicket|AdminQueue|ShowTicket|SuperUser)$/;
RT->System->QueueCacheNeedsUpdate(1);
});
use RT::Groups;
use RT::CustomRoles;
use RT::ACL;
use RT::Interface::Email;
__PACKAGE__->AddRight( General => SeeQueue => 'View queue' ); # loc
__PACKAGE__->AddRight( Admin => AdminQueue => 'Create, modify and delete queue' ); # loc
__PACKAGE__->AddRight( Admin => ShowACL => 'Display Access Control List' ); # loc
__PACKAGE__->AddRight( Admin => ModifyACL => 'Create, modify and delete Access Control List entries' ); # loc
__PACKAGE__->AddRight( Admin => ModifyQueueWatchers => 'Modify queue watchers' ); # loc
__PACKAGE__->AddRight( General => SeeCustomField => 'View custom field values' ); # loc
__PACKAGE__->AddRight( Staff => ModifyCustomField => 'Modify custom field values' ); # loc
__PACKAGE__->AddRight( Staff => SetInitialCustomField => 'Add custom field values only at object creation time'); # loc
__PACKAGE__->AddRight( Admin => AssignCustomFields => 'Assign and remove queue custom fields' ); # loc
__PACKAGE__->AddRight( Admin => ModifyTemplate => 'Modify Scrip templates' ); # loc
__PACKAGE__->AddRight( Admin => ShowTemplate => 'View Scrip templates' ); # loc
__PACKAGE__->AddRight( Admin => ModifyScrips => 'Modify Scrips' ); # loc
__PACKAGE__->AddRight( Admin => ShowScrips => 'View Scrips' ); # loc
__PACKAGE__->AddRight( General => ShowTicket => 'View ticket summaries' ); # loc
__PACKAGE__->AddRight( Staff => ShowTicketComments => 'View ticket private commentary' ); # loc
__PACKAGE__->AddRight( Staff => ShowOutgoingEmail => 'View exact outgoing email messages and their recipients' ); # loc
__PACKAGE__->AddRight( General => Watch => 'Sign up as a ticket Requestor or ticket or queue Cc' ); # loc
__PACKAGE__->AddRight( Staff => WatchAsAdminCc => 'Sign up as a ticket or queue AdminCc' ); # loc
__PACKAGE__->AddRight( General => CreateTicket => 'Create tickets' ); # loc
__PACKAGE__->AddRight( General => ReplyToTicket => 'Reply to tickets' ); # loc
__PACKAGE__->AddRight( General => CommentOnTicket => 'Comment on tickets' ); # loc
__PACKAGE__->AddRight( Staff => OwnTicket => 'Own tickets' ); # loc
__PACKAGE__->AddRight( Staff => ModifyTicket => 'Modify tickets' ); # loc
__PACKAGE__->AddRight( Staff => DeleteTicket => 'Delete tickets' ); # loc
__PACKAGE__->AddRight( Staff => TakeTicket => 'Take tickets' ); # loc
__PACKAGE__->AddRight( Staff => StealTicket => 'Steal tickets' ); # loc
__PACKAGE__->AddRight( Staff => ReassignTicket => 'Modify ticket owner' ); # loc
__PACKAGE__->AddRight( Staff => ForwardMessage => 'Forward messages outside of RT' ); # loc
=head2 Create(ARGS)
Arguments: ARGS is a hash of named parameters. Valid parameters are:
Name (required)
Description
CorrespondAddress
CommentAddress
If you pass the ACL check, it creates the queue and returns its queue id.
=cut
sub Create {
my $self = shift;
my %args = (
Name => undef,
Description => '',
CorrespondAddress => '',
CommentAddress => '',
Lifecycle => 'default',
SubjectTag => undef,
Sign => undef,
SignAuto => undef,
Encrypt => undef,
SLA => undef,
_RecordTransaction => 1,
@_
);
unless ( $self->CurrentUser->HasRight(Right => 'AdminQueue', Object => $RT::System) )
{ #Check them ACLs
return ( 0, $self->loc("No permission to create queues") );
}
{
my ($val, $msg) = $self->_ValidateName( $args{'Name'} );
return ($val, $msg) unless $val;
}
$args{'Lifecycle'} ||= 'default';
return ( 0, $self->loc('[_1] is not a valid lifecycle', $args{'Lifecycle'} ) )
unless $self->ValidateLifecycle( $args{'Lifecycle'} );
my %attrs = map {$_ => 1} $self->ReadableAttributes;
#TODO better input validation
$RT::Handle->BeginTransaction();
my $id = $self->SUPER::Create( map { $_ => $args{$_} } grep exists $args{$_}, keys %attrs );
unless ($id) {
$RT::Handle->Rollback();
return ( 0, $self->loc('Queue could not be created') );
}
my $create_ret = $self->_CreateRoleGroups();
unless ($create_ret) {
$RT::Handle->Rollback();
return ( 0, $self->loc('Queue could not be created') );
}
if ( $args{'_RecordTransaction'} ) {
$self->_NewTransaction( Type => "Create" );
}
$RT::Handle->Commit;
for my $attr (qw/Sign SignAuto Encrypt SLA/) {
next unless defined $args{$attr};
my $set = "Set" . $attr;
my ($status, $msg) = $self->$set( $args{$attr} );
$RT::Logger->error("Couldn't set attribute '$attr': $msg")
unless $status;
}
RT->System->QueueCacheNeedsUpdate(1);
return ( $id, $self->loc("Queue created") );
}
sub Delete {
my $self = shift;
return ( 0,
$self->loc('Deleting this object would break referential integrity') );
}
=head2 Load
Takes either a numerical id or a textual Name and loads the specified queue.
=cut
sub Load {
my $self = shift;
my $identifier = shift;
if ( !$identifier ) {
return (undef);
}
if ( $identifier =~ /^(\d+)$/ ) {
$self->SUPER::LoadById($identifier);
}
else {
$self->LoadByCols( Name => $identifier );
}
return ( $self->Id );
}
=head2 ValidateName NAME
Takes a queue name. Returns true if it's an ok name for
a new queue. Returns undef if there's already a queue by that name.
=cut
sub ValidateName {
my $self = shift;
my $name = shift;
my ($ok, $msg) = $self->_ValidateName($name);
return $ok ? 1 : 0;
}
sub _ValidateName {
my $self = shift;
my $name = shift;
return (undef, "Queue name is required") unless length $name;
# Validate via the superclass first
# Case: short circuit if it's an integer so we don't have
# fale negatives when loading a temp queue
unless ( my $q = $self->SUPER::ValidateName($name) ) {
return ($q, $self->loc("'[_1]' is not a valid name.", $name));
}
my $tempqueue = RT::Queue->new(RT->SystemUser);
$tempqueue->Load($name);
#If this queue exists, return undef
if ( $tempqueue->Name() && ( !$self->id || $tempqueue->id != $self->id ) ) {
return (undef, $self->loc("Queue already exists") );
}
return (1);
}
=head2 SetSign
=cut
sub Sign {
my $self = shift;
my $value = shift;
return undef unless $self->CurrentUserHasRight('SeeQueue');
my $attr = $self->FirstAttribute('Sign') or return 0;
return $attr->Content;
}
sub SetSign {
my $self = shift;
my $value = shift;
return ( 0, $self->loc('Permission Denied') )
unless $self->CurrentUserHasRight('AdminQueue');
my ($status, $msg) = $self->SetAttribute(
Name => 'Sign',
Description => 'Sign outgoing messages by default',
Content => $value,
);
return ($status, $msg) unless $status;
my ( undef, undef, $TransObj ) = $self->_NewTransaction(
Field => 'Signing', #loc
Type => $value ? "Enabled" : "Disabled"
);
return ($status, scalar $TransObj->BriefDescription);
}
sub SignAuto {
my $self = shift;
my $value = shift;
return undef unless $self->CurrentUserHasRight('SeeQueue');
my $attr = $self->FirstAttribute('SignAuto') or return 0;
return $attr->Content;
}
sub SetSignAuto {
my $self = shift;
my $value = shift;
return ( 0, $self->loc('Permission Denied') )
unless $self->CurrentUserHasRight('AdminQueue');
my ($status, $msg) = $self->SetAttribute(
Name => 'SignAuto',
Description => 'Sign auto-generated outgoing messages',
Content => $value,
);
return ($status, $msg) unless $status;
my ( undef, undef, $TransObj ) = $self->_NewTransaction(
Field => 'AutoSigning', #loc
Type => $value ? "Enabled" : "Disabled"
);
return ($status, scalar $TransObj->BriefDescription);
}
sub Encrypt {
my $self = shift;
my $value = shift;
return undef unless $self->CurrentUserHasRight('SeeQueue');
my $attr = $self->FirstAttribute('Encrypt') or return 0;
return $attr->Content;
}
sub SetEncrypt {
my $self = shift;
my $value = shift;
return ( 0, $self->loc('Permission Denied') )
unless $self->CurrentUserHasRight('AdminQueue');
my ($status, $msg) = $self->SetAttribute(
Name => 'Encrypt',
Description => 'Encrypt outgoing messages by default',
Content => $value,
);
return ($status, $msg) unless $status;
my ( undef, undef, $TransObj ) = $self->_NewTransaction(
Field => 'Encrypting', #loc
Type => $value ? "Enabled" : "Disabled"
);
return ($status, scalar $TransObj->BriefDescription);
}
=head2 Templates
Returns an RT::Templates object of all of this queue's templates.
=cut
sub Templates {
my $self = shift;
my $templates = RT::Templates->new( $self->CurrentUser );
if ( $self->CurrentUserHasRight('ShowTemplate') ) {
$templates->LimitToQueue( $self->id );
}
return ($templates);
}
=head2 CustomField NAME
Load the Ticket Custom Field applied to this Queue named NAME.
Does not load Global custom fields.
=cut
sub CustomField {
my $self = shift;
my $name = shift;
my $cf = RT::CustomField->new($self->CurrentUser);
$cf->LoadByName(
Name => $name,
LookupType => RT::Ticket->CustomFieldLookupType,
ObjectId => $self->id,
);
return ($cf);
}
=head2 TicketCustomFields
Returns an L<RT::CustomFields> object containing all global and
queue-specific B<ticket> custom fields.
=cut
sub TicketCustomFields {
my $self = shift;
my $cfs = RT::CustomFields->new( $self->CurrentUser );
if ( $self->CurrentUserHasRight('SeeQueue') ) {
$cfs->SetContextObject( $self );
$cfs->LimitToGlobalOrObjectId( $self->Id );
$cfs->LimitToLookupType( 'RT::Queue-RT::Ticket' );
$cfs->ApplySortOrder;
}
return ($cfs);
}
=head2 TicketTransactionCustomFields
Returns an L<RT::CustomFields> object containing all global and
queue-specific B<transaction> custom fields.
=cut
sub TicketTransactionCustomFields {
my $self = shift;
my $cfs = RT::CustomFields->new( $self->CurrentUser );
if ( $self->CurrentUserHasRight('SeeQueue') ) {
$cfs->SetContextObject( $self );
$cfs->LimitToGlobalOrObjectId( $self->Id );
$cfs->LimitToLookupType( 'RT::Queue-RT::Ticket-RT::Transaction' );
$cfs->ApplySortOrder;
}
return ($cfs);
}
=head2 CustomRoles
Returns an L<RT::CustomRoles> object containing all queue-specific roles.
=cut
sub CustomRoles {
my $self = shift;
my $roles = RT::CustomRoles->new( $self->CurrentUser );
if ( $self->CurrentUserHasRight('SeeQueue') ) {
$roles->LimitToObjectId( $self->Id );
$roles->ApplySortOrder;
}
else {
$roles->Limit( FIELD => 'id', VALUE => 0, SUBCLAUSE => 'ACL' );
}
return ($roles);
}
=head2 ManageableRoleGroupTypes
Returns a list of the names of the various role group types for Queues,
excluding ones used only for ACLs such as Requestor and Owner. If you want
them, see L</Roles>.
=cut
sub ManageableRoleGroupTypes {
shift->Roles( ACLOnly => 0 )
}
=head2 IsManageableRoleGroupType
Returns whether the passed-in type is a manageable role group type.
=cut
sub IsManageableRoleGroupType {
my $self = shift;
my $type = shift;
return grep { $type eq $_ } $self->ManageableRoleGroupTypes;
}
sub _HasModifyWatcherRight {
my $self = shift;
my ($type, $principal) = @_;
# ModifyQueueWatchers works in any case
return 1 if $self->CurrentUserHasRight('ModifyQueueWatchers');
# If the watcher isn't the current user then the current user has no right
return 0 unless $self->CurrentUser->PrincipalId == $principal->id;
# If it's an AdminCc and they have 'WatchAsAdminCc', they can modify
return 1 if $type eq 'AdminCc' and $self->CurrentUserHasRight('WatchAsAdminCc');
# If it's a Requestor or Cc and they have 'Watch', they can modify
return 1 if ($type eq "Cc" or $type eq 'Requestor')
and $self->CurrentUserHasRight('Watch');
# Unknown type, so default to denied.
return 0;
}
=head2 AddWatcher
Applies access control checking, then calls
L<RT::Record::Role::Roles/AddRoleMember>. Additionally, C<Email> is
accepted as an alternative argument name for C<User>.
Returns a tuple of (status, message).
=cut
sub AddWatcher {
my $self = shift;
my %args = (
Type => undef,
PrincipalId => undef,
Email => undef,
@_
);
$args{ACL} = sub { $self->_HasModifyWatcherRight( @_ ) };
$args{User} ||= delete $args{Email};
my ($principal, $msg) = $self->AddRoleMember( %args );
return ( 0, $msg) unless $principal;
my $group = $self->RoleGroup( $args{Type} );
return ( 1, $self->loc("Added [_1] as [_2] for this queue",
$principal->Object->Name, $group->Label ));
}
=head2 DeleteWatcher
Applies access control checking, then calls
L<RT::Record::Role::Roles/DeleteRoleMember>. Additionally, C<Email> is
accepted as an alternative argument name for C<User>.
Returns a tuple of (status, message).
=cut
sub DeleteWatcher {
my $self = shift;
my %args = (
Type => undef,
PrincipalId => undef,
Email => undef,
@_
);
$args{ACL} = sub { $self->_HasModifyWatcherRight( @_ ) };
$args{User} ||= delete $args{Email};
my ($principal, $msg) = $self->DeleteRoleMember( %args );
return ( 0, $msg) unless $principal;
my $group = $self->RoleGroup( $args{Type} );
return ( 1, $self->loc("[_1] is no longer [_2] for this queue",
$principal->Object->Name, $group->Label ));
}
=head2 AdminCcAddresses
returns String: All queue AdminCc email addresses as a string
=cut
sub AdminCcAddresses {
my $self = shift;
unless ( $self->CurrentUserHasRight('SeeQueue') ) {
return undef;
}
return ( $self->AdminCc->MemberEmailAddressesAsString )
}
=head2 CcAddresses
returns String: All queue Ccs as a string of email addresses
=cut
sub CcAddresses {
my $self = shift;
unless ( $self->CurrentUserHasRight('SeeQueue') ) {
return undef;
}
return ( $self->Cc->MemberEmailAddressesAsString);
}
=head2 Cc
Takes nothing.
Returns an RT::Group object which contains this Queue's Ccs.
If the user doesn't have "ShowQueue" permission, returns an empty group
=cut
sub Cc {
my $self = shift;
return $self->RoleGroup( 'Cc', CheckRight => 'SeeQueue' );
}
=head2 AdminCc
Takes nothing.
Returns an RT::Group object which contains this Queue's AdminCcs.
If the user doesn't have "ShowQueue" permission, returns an empty group
=cut
sub AdminCc {
my $self = shift;
return $self->RoleGroup( 'AdminCc', CheckRight => 'SeeQueue' );
}
# a generic routine to be called by IsRequestor, IsCc and IsAdminCc
=head2 IsWatcher { Type => TYPE, PrincipalId => PRINCIPAL_ID }
Takes a param hash with the attributes Type and PrincipalId
Type is one of Requestor, Cc, AdminCc and Owner
PrincipalId is an RT::Principal id
Returns true if that principal is a member of the group Type for this queue
=cut
sub IsWatcher {
my $self = shift;
my %args = ( Type => 'Cc',
PrincipalId => undef,
@_
);
# Load the relevant group.
my $group = $self->RoleGroup( $args{'Type'} );
# Ask if it has the member in question
my $principal = RT::Principal->new($self->CurrentUser);
$principal->Load($args{'PrincipalId'});
unless ($principal->Id) {
return (undef);
}
return ($group->HasMemberRecursively($principal));
}
=head2 IsCc PRINCIPAL_ID
Takes an RT::Principal id.
Returns true if the principal is a requestor of the current queue.
=cut
sub IsCc {
my $self = shift;
my $cc = shift;
return ( $self->IsWatcher( Type => 'Cc', PrincipalId => $cc ) );
}
=head2 IsAdminCc PRINCIPAL_ID
Takes an RT::Principal id.
Returns true if the principal is a requestor of the current queue.
=cut
sub IsAdminCc {
my $self = shift;
my $person = shift;
return ( $self->IsWatcher( Type => 'AdminCc', PrincipalId => $person ) );
}
sub _Set {
my $self = shift;
my %args = (
Field => undef,
Value => undef,
TransactionType => 'Set',
RecordTransaction => 1,
@_
);
unless ( $self->CurrentUserHasRight('AdminQueue') ) {
return ( 0, $self->loc('Permission Denied') );
}
my $Old = $self->SUPER::_Value("$args{'Field'}");
my ($ret, $msg) = $self->SUPER::_Set(
Field => $args{'Field'},
Value => $args{'Value'},
);
if ( $ret == 0 ) { return ( 0, $msg ); }
RT->System->QueueCacheNeedsUpdate(1);
if ( $args{'RecordTransaction'} == 1 ) {
if ($args{'Field'} eq 'Disabled') {
$args{'TransactionType'} = ($args{'Value'} == 1) ? "Disabled" : "Enabled";
delete $args{'Field'};
}
my ( undef, undef, $TransObj ) = $self->_NewTransaction(
Type => $args{'TransactionType'},
Field => $args{'Field'},
NewValue => $args{'Value'},
OldValue => $Old,
TimeTaken => $args{'TimeTaken'},
);
}
return ( $ret, $msg );
}
sub _Value {
my $self = shift;
unless ( $self->CurrentUserHasRight('SeeQueue') ) {
return (undef);
}
return ( $self->__Value(@_) );
}
=head2 CurrentUserCanSee
Returns true if the current user can see the queue, using SeeQueue
=cut
sub CurrentUserCanSee {
my $self = shift;
return $self->CurrentUserHasRight('SeeQueue');
}
=head2 CurrentUserCanCreate
Returns true if the current user can create a new queue, using I<AdminQueue>.
=cut
sub CurrentUserCanCreate {
my $self = shift;
return $self->CurrentUserHasRight('AdminQueue');
}
=head2 CurrentUserCanModify
Returns true if the current user can modify the queue, using I<AdminQueue>.
=cut
sub CurrentUserCanModify {
my $self = shift;
return $self->CurrentUserHasRight('AdminQueue');
}
=head2 id
Returns the current value of id.
(In the database, id is stored as int(11).)
=cut
=head2 Name
Returns the current value of Name.
(In the database, Name is stored as varchar(200).)
=head2 SetName VALUE
Set Name to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, Name will be stored as a varchar(200).)
=cut
=head2 Description
Returns the current value of Description.
(In the database, Description is stored as varchar(255).)
=head2 SetDescription VALUE
Set Description to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, Description will be stored as a varchar(255).)
=cut
=head2 CorrespondAddress
Returns the current value of CorrespondAddress.
(In the database, CorrespondAddress is stored as varchar(120).)
=head2 SetCorrespondAddress VALUE
Set CorrespondAddress to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, CorrespondAddress will be stored as a varchar(120).)
=cut
=head2 CommentAddress
Returns the current value of CommentAddress.
(In the database, CommentAddress is stored as varchar(120).)
=head2 SetCommentAddress VALUE
Set CommentAddress to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, CommentAddress will be stored as a varchar(120).)
=cut
=head2 Lifecycle
Returns the current value of Lifecycle.
(In the database, Lifecycle is stored as varchar(32).)
=head2 SetLifecycle VALUE
Set Lifecycle to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, Lifecycle will be stored as a varchar(32).)
=cut
=head2 SubjectTag
Returns the current value of SubjectTag.
(In the database, SubjectTag is stored as varchar(120).)
=head2 SetSubjectTag VALUE
Set SubjectTag to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, SubjectTag will be stored as a varchar(120).)
=cut
=head2 SortOrder
Returns the current value of SortOrder.
(In the database, SortOrder is stored as int(11).)
=cut
=head2 Creator
Returns the current value of Creator.
(In the database, Creator is stored as int(11).)
=cut
=head2 Created
Returns the current value of Created.
(In the database, Created is stored as datetime.)
=cut
=head2 LastUpdatedBy
Returns the current value of LastUpdatedBy.
(In the database, LastUpdatedBy is stored as int(11).)
=cut
=head2 LastUpdated
Returns the current value of LastUpdated.
(In the database, LastUpdated is stored as datetime.)
=cut
=head2 Disabled
Returns the current value of Disabled.
(In the database, Disabled is stored as smallint(6).)
=head2 SetDisabled VALUE
Set Disabled to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, Disabled will be stored as a smallint(6).)
=cut
sub _CoreAccessible {
{
id =>
{read => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => ''},
Name =>
{read => 1, write => 1, sql_type => 12, length => 200, is_blob => 0, is_numeric => 0, type => 'varchar(200)', default => ''},
Description =>
{read => 1, write => 1, sql_type => 12, length => 255, is_blob => 0, is_numeric => 0, type => 'varchar(255)', default => ''},
CorrespondAddress =>
{read => 1, write => 1, sql_type => 12, length => 120, is_blob => 0, is_numeric => 0, type => 'varchar(120)', default => ''},
CommentAddress =>
{read => 1, write => 1, sql_type => 12, length => 120, is_blob => 0, is_numeric => 0, type => 'varchar(120)', default => ''},
SubjectTag =>
{read => 1, write => 1, sql_type => 12, length => 120, is_blob => 0, is_numeric => 0, type => 'varchar(120)', default => ''},
Lifecycle =>
{read => 1, write => 1, sql_type => 12, length => 32, is_blob => 0, is_numeric => 0, type => 'varchar(32)', default => 'default'},
SortOrder =>
{read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'},
Creator =>
{read => 1, auto => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'},
Created =>
{read => 1, auto => 1, sql_type => 11, length => 0, is_blob => 0, is_numeric => 0, type => 'datetime', default => ''},
LastUpdatedBy =>
{read => 1, auto => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'},
LastUpdated =>
{read => 1, auto => 1, sql_type => 11, length => 0, is_blob => 0, is_numeric => 0, type => 'datetime', default => ''},
SLADisabled =>
{read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '1'},
Disabled =>
{read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '0'},
}
};
sub FindDependencies {
my $self = shift;
my ($walker, $deps) = @_;
$self->SUPER::FindDependencies($walker, $deps);
# Queue role groups( Cc, AdminCc )
my $objs = RT::Groups->new( $self->CurrentUser );
$objs->Limit( FIELD => 'Domain', VALUE => 'RT::Queue-Role', CASESENSITIVE => 0 );
$objs->Limit( FIELD => 'Instance', VALUE => $self->Id );
$deps->Add( in => $objs );
# Scrips
$objs = RT::ObjectScrips->new( $self->CurrentUser );
$objs->Limit( FIELD => 'ObjectId',
OPERATOR => '=',
VALUE => $self->id,
ENTRYAGGREGATOR => 'OR' );
$objs->Limit( FIELD => 'ObjectId',
OPERATOR => '=',
VALUE => 0,
ENTRYAGGREGATOR => 'OR' );
$deps->Add( in => $objs );
# Templates (global ones have already been dealt with)
$objs = RT::Templates->new( $self->CurrentUser );
$objs->Limit( FIELD => 'Queue', VALUE => $self->Id);
$deps->Add( in => $objs );
# Custom Fields on things _in_ this queue (CFs on the queue itself
# have already been dealt with)
$objs = RT::ObjectCustomFields->new( $self->CurrentUser );
$objs->Limit( FIELD => 'ObjectId',
OPERATOR => '=',
VALUE => $self->id,
ENTRYAGGREGATOR => 'OR' );
$objs->Limit( FIELD => 'ObjectId',
OPERATOR => '=',
VALUE => 0,
ENTRYAGGREGATOR => 'OR' );
my $cfs = $objs->Join(
ALIAS1 => 'main',
FIELD1 => 'CustomField',
TABLE2 => 'CustomFields',
FIELD2 => 'id',
);
$objs->Limit( ALIAS => $cfs,
FIELD => 'LookupType',
OPERATOR => 'STARTSWITH',
VALUE => 'RT::Queue-' );
$deps->Add( in => $objs );
# Tickets (skipped early as an optimization)
if ($walker->{FollowTickets} || !defined($walker->{FollowTickets})) {
$objs = RT::Tickets->new( $self->CurrentUser );
$objs->Limit( FIELD => "Queue", VALUE => $self->Id );
$objs->{allow_deleted_search} = 1;
$deps->Add( in => $objs );
}
# Object Custom Roles
$objs = RT::ObjectCustomRoles->new( $self->CurrentUser );
$objs->LimitToObjectId($self->Id);
$deps->Add( in => $objs );
}
sub __DependsOn {
my $self = shift;
my %args = (
Shredder => undef,
Dependencies => undef,
@_,
);
my $deps = $args{'Dependencies'};
my $list = [];
# Tickets
my $objs = RT::Tickets->new( $self->CurrentUser );
$objs->{'allow_deleted_search'} = 1;
$objs->Limit( FIELD => 'Queue', VALUE => $self->Id );
push( @$list, $objs );
# Queue role groups( Cc, AdminCc )
$objs = RT::Groups->new( $self->CurrentUser );
$objs->Limit( FIELD => 'Domain', VALUE => 'RT::Queue-Role', CASESENSITIVE => 0 );
$objs->Limit( FIELD => 'Instance', VALUE => $self->Id );
push( @$list, $objs );
# Scrips
$objs = RT::ObjectScrips->new( $self->CurrentUser );
$objs->LimitToObjectId( $self->id );
push( @$list, $objs );
# Templates
$objs = $self->Templates;
push( @$list, $objs );
# Object Custom Fields
$objs = RT::ObjectCustomFields->new( $self->CurrentUser );
$objs->LimitToObjectId( $self->id );
push( @$list, $objs );
# Object Custom Roles
$objs = RT::ObjectCustomRoles->new( $self->CurrentUser );
$objs->LimitToObjectId($self->Id);
push( @$list, $objs );
$deps->_PushDependencies(
BaseObject => $self,
Flags => RT::Shredder::Constants::DEPENDS_ON,
TargetObjects => $list,
Shredder => $args{'Shredder'}
);
return $self->SUPER::__DependsOn( %args );
}
sub PreInflate {
my $class = shift;
my ($importer, $uid, $data) = @_;
$class->SUPER::PreInflate( $importer, $uid, $data );
$data->{Name} = $importer->Qualify($data->{Name})
if $data->{Name} ne "___Approvals";
return if $importer->MergeBy( "Name", $class, $uid, $data );
return 1;
}
sub DefaultValue {
my $self = shift;
my $field = shift;
my $attr = $self->FirstAttribute('DefaultValues');
return undef unless $attr && $attr->Content;
return $attr->Content->{$field};
}
sub SetDefaultValue {
my $self = shift;
my %args = (
Name => undef,
Value => undef,
@_
);
my $field = shift;
my $attr = $self->FirstAttribute('DefaultValues');
my ($old_value, $old_content, $new_value);
if ( $attr && $attr->Content ) {
$old_content = $attr->Content;
$old_value = $old_content->{$args{Name}};
}
unless ( defined $old_value && length $old_value ) {
$old_value = $self->loc('(no value)');
}
$new_value = $args{Value};
unless ( defined $new_value && length $new_value ) {
$new_value = $self->loc( '(no value)' );
}
if ( $args{Name} eq 'Article' && $args{Value} ) {
my $article = RT::Article->new($self->CurrentUser);
my ($ret, $msg);
if ( $args{Value} =~ /^\d+$/ ) {
($ret, $msg) = $article->Load( $args{Value} );
}
else {
($ret, $msg) = $article->LoadByCols( Name => $args{Value} );
}
return ($ret, $msg ) unless $ret;
$args{Value} = $article->Id;
$new_value = $article->Name;
}
if ( $args{Name} eq 'Article' && $old_value =~ /^\d+$/ ) {
my $article = RT::Article->new($self->CurrentUser);
my ($ret, $msg) = $article->Load( $old_value );
if ($ret) {
$old_value = $article->Name;
}
}
return 1 if $new_value eq $old_value;
my ($ret, $msg) = $self->SetAttribute(
Name => 'DefaultValues',
Content => {
%{ $old_content || {} }, $args{Name} => $args{Value},
},
);
if ( $args{Name} =~ /Priority/ && RT->Config->Get('EnablePriorityAsString') ) {
if ( $old_value ne $self->loc('(no value)') ) {
my $str = RT::Ticket->_PriorityAsString( $old_value, $self->Name );
$old_value = $self->loc($str) if $str;
}
if ( $new_value ne $self->loc('(no value)') ) {
my $str = RT::Ticket->_PriorityAsString( $new_value, $self->Name );
$new_value = $self->loc($str) if $str;
}
}
if ( $ret ) {
return ( $ret, $self->loc( 'Default value of [_1] changed from [_2] to [_3]', $args{Name}, $old_value, $new_value ) );
}
else {
return ( $ret, $self->loc( "Can't change default value of [_1] from [_2] to [_3]: [_4]", $args{Name}, $old_value, $new_value, $msg ) );
}
}
sub SLA {
my $self = shift;
my $value = shift;
return undef unless $self->CurrentUserHasRight('SeeQueue');
my $attr = $self->FirstAttribute('SLA') or return undef;
return $attr->Content;
}
sub SetSLA {
my $self = shift;
my $value = shift;
return ( 0, $self->loc('Permission Denied') )
unless $self->CurrentUserHasRight('AdminQueue');
my ($status, $msg) = $self->SetAttribute(
Name => 'SLA',
Description => 'Default Queue SLA',
Content => $value,
);
return ($status, $msg) unless $status;
return ($status, $self->loc("Queue's default service level has been changed"));
}
sub InitialPriority {
my $self = shift;
RT->Deprecated( Instead => "DefaultValue('InitialPriority')", Remove => '4.6' );
return $self->DefaultValue('InitialPriority');
}
sub FinalPriority {
my $self = shift;
RT->Deprecated( Instead => "DefaultValue('FinalPriority')", Remove => '4.6' );
return $self->DefaultValue('FinalPriority');
}
sub DefaultDueIn {
my $self = shift;
RT->Deprecated( Instead => "DefaultValue('Due')", Remove => '4.6' );
# DefaultDueIn used to be a number of days; so if the DefaultValue is,
# say, "3 days" then return 3
my $due = $self->DefaultValue('Due');
if (defined($due) && $due =~ /^(\d+) days?$/i) {
return $1;
}
return $due;
}
sub SetInitialPriority {
my $self = shift;
my $value = shift;
RT->Deprecated( Instead => "SetDefaultValue", Remove => '4.6' );
return $self->SetDefaultValue(
Name => 'InitialPriority',
Value => $value,
);
}
sub SetFinalPriority {
my $self = shift;
my $value = shift;
RT->Deprecated( Instead => "SetDefaultValue", Remove => '4.6' );
return $self->SetDefaultValue(
Name => 'FinalPriority',
Value => $value,
);
}
sub SetDefaultDueIn {
my $self = shift;
my $value = shift;
# DefaultDueIn used to be a number of days; so if we're setting to,
# say, "3" then add the word "days" to match the way the new
# DefaultValues works
$value .= " days" if defined($value) && $value =~ /^\d+$/;
RT->Deprecated( Instead => "SetDefaultValue", Remove => '4.6' );
return $self->SetDefaultValue(
Name => 'Due',
Value => $value,
);
}
sub HiddenCustomRoleIDsForURL {
my $self = shift;
my $url = shift;
my $roles = $self->CustomRoles;
my @ids;
while (my $role = $roles->Next) {
push @ids, $role->Id if $role->IsHiddenForURL($url);
}
return @ids;
}
RT::Base->_ImportOverlays();
1;
|