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
|
# BEGIN BPS TAGGED BLOCK {{{
#
# COPYRIGHT:
#
# This software is Copyright (c) 1996-2018 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 }}}
package RT::Attribute;
use strict;
use warnings;
use base 'RT::Record';
sub Table {'Attributes'}
use Storable qw/nfreeze thaw/;
use MIME::Base64;
=head1 NAME
RT::Attribute_Overlay
=head1 Content
=cut
# the acl map is a map of "name of attribute" and "what right the user must have on the associated object to see/edit it
our $ACL_MAP = {
SavedSearch => { create => 'EditSavedSearches',
update => 'EditSavedSearches',
delete => 'EditSavedSearches',
display => 'ShowSavedSearches' },
};
# There are a number of attributes that users should be able to modify for themselves, such as saved searches
# we could do this with a different set of "update" rights, but that gets very hacky very fast. this is even faster and even
# hackier. we're hardcoding that a different set of rights are needed for attributes on oneself
our $PERSONAL_ACL_MAP = {
SavedSearch => { create => 'ModifySelf',
update => 'ModifySelf',
delete => 'ModifySelf',
display => 'allow' },
};
=head2 LookupObjectRight { ObjectType => undef, ObjectId => undef, Name => undef, Right => { create, update, delete, display } }
Returns the right that the user needs to have on this attribute's object to perform the related attribute operation. Returns "allow" if the right is otherwise unspecified.
=cut
sub LookupObjectRight {
my $self = shift;
my %args = ( ObjectType => undef,
ObjectId => undef,
Right => undef,
Name => undef,
@_);
# if it's an attribute on oneself, check the personal acl map
if (($args{'ObjectType'} eq 'RT::User') && ($args{'ObjectId'} eq $self->CurrentUser->Id)) {
return('allow') unless ($PERSONAL_ACL_MAP->{$args{'Name'}});
return('allow') unless ($PERSONAL_ACL_MAP->{$args{'Name'}}->{$args{'Right'}});
return($PERSONAL_ACL_MAP->{$args{'Name'}}->{$args{'Right'}});
}
# otherwise check the main ACL map
else {
return('allow') unless ($ACL_MAP->{$args{'Name'}});
return('allow') unless ($ACL_MAP->{$args{'Name'}}->{$args{'Right'}});
return($ACL_MAP->{$args{'Name'}}->{$args{'Right'}});
}
}
=head2 Create PARAMHASH
Create takes a hash of values and creates a row in the database:
varchar(200) 'Name'.
varchar(255) 'Content'.
varchar(16) 'ContentType',
varchar(64) 'ObjectType'.
int(11) 'ObjectId'.
You may pass a C<Object> instead of C<ObjectType> and C<ObjectId>.
=cut
sub Create {
my $self = shift;
my %args = (
Name => '',
Description => '',
Content => '',
ContentType => '',
Object => undef,
@_);
if ($args{Object} and UNIVERSAL::can($args{Object}, 'Id')) {
$args{ObjectType} = $args{Object}->isa("RT::CurrentUser") ? "RT::User" : ref($args{Object});
$args{ObjectId} = $args{Object}->Id;
} else {
return(0, $self->loc("Required parameter '[_1]' not specified", 'Object'));
}
# object_right is the right that the user has to have on the object for them to have $right on this attribute
my $object_right = $self->LookupObjectRight(
Right => 'create',
ObjectId => $args{'ObjectId'},
ObjectType => $args{'ObjectType'},
Name => $args{'Name'}
);
if ($object_right eq 'deny') {
return (0, $self->loc('Permission Denied'));
}
elsif ($object_right eq 'allow') {
# do nothing, we're ok
}
elsif (!$self->CurrentUser->HasRight( Object => $args{Object}, Right => $object_right)) {
return (0, $self->loc('Permission Denied'));
}
if (ref ($args{'Content'}) ) {
eval {$args{'Content'} = $self->_SerializeContent($args{'Content'}); };
if ($@) {
return(0, $@);
}
$args{'ContentType'} = 'storable';
}
$self->SUPER::Create(
Name => $args{'Name'},
Content => $args{'Content'},
ContentType => $args{'ContentType'},
Description => $args{'Description'},
ObjectType => $args{'ObjectType'},
ObjectId => $args{'ObjectId'},
);
}
=head2 LoadByNameAndObject (Object => OBJECT, Name => NAME)
Loads the Attribute named NAME for Object OBJECT.
=cut
sub LoadByNameAndObject {
my $self = shift;
my %args = (
Object => undef,
Name => undef,
@_,
);
return (
$self->LoadByCols(
Name => $args{'Name'},
ObjectType => ref($args{'Object'}),
ObjectId => $args{'Object'}->Id,
)
);
}
=head2 _DeserializeContent
DeserializeContent returns this Attribute's "Content" as a hashref.
=cut
sub _DeserializeContent {
my $self = shift;
my $content = shift;
my $hashref;
eval {$hashref = thaw(decode_base64($content))} ;
if ($@) {
$RT::Logger->error("Deserialization of attribute ".$self->Id. " failed");
}
return($hashref);
}
=head2 Content
Returns this attribute's content. If it's a scalar, returns a scalar
If it's data structure returns a ref to that data structure.
=cut
sub Content {
my $self = shift;
# Here we call _Value to get the ACL check.
my $content = $self->_Value('Content');
if ( ($self->__Value('ContentType') || '') eq 'storable') {
eval {$content = $self->_DeserializeContent($content); };
if ($@) {
$RT::Logger->error("Deserialization of content for attribute ".$self->Id. " failed. Attribute was: ".$content);
}
}
return($content);
}
sub _SerializeContent {
my $self = shift;
my $content = shift;
return( encode_base64(nfreeze($content)));
}
sub SetContent {
my $self = shift;
my $content = shift;
# Call __Value to avoid ACL check.
if ( ($self->__Value('ContentType')||'') eq 'storable' ) {
# We eval the serialization because it will lose on a coderef.
$content = eval { $self->_SerializeContent($content) };
if ($@) {
$RT::Logger->error("Content couldn't be frozen: $@");
return(0, "Content couldn't be frozen");
}
}
my ($ok, $msg) = $self->_Set( Field => 'Content', Value => $content );
return ($ok, $self->loc("Attribute updated")) if $ok;
return ($ok, $msg);
}
=head2 SubValue KEY
Returns the subvalue for $key.
=cut
sub SubValue {
my $self = shift;
my $key = shift;
my $values = $self->Content();
return undef unless ref($values);
return($values->{$key});
}
=head2 DeleteSubValue NAME
Deletes the subvalue with the key NAME
=cut
sub DeleteSubValue {
my $self = shift;
my $key = shift;
my $values = $self->Content();
delete $values->{$key};
$self->SetContent($values);
}
=head2 DeleteAllSubValues
Deletes all subvalues for this attribute
=cut
sub DeleteAllSubValues {
my $self = shift;
$self->SetContent({});
}
=head2 SetSubValues { }
Takes a hash of keys and values and stores them in the content of this attribute.
Each key B<replaces> the existing key with the same name
Returns a tuple of (status, message)
=cut
sub SetSubValues {
my $self = shift;
my %args = (@_);
my $values = ($self->Content() || {} );
foreach my $key (keys %args) {
$values->{$key} = $args{$key};
}
$self->SetContent($values);
}
sub Object {
my $self = shift;
my $object_type = $self->__Value('ObjectType');
my $object;
eval { $object = $object_type->new($self->CurrentUser) };
unless(UNIVERSAL::isa($object, $object_type)) {
$RT::Logger->error("Attribute ".$self->Id." has a bogus object type - $object_type (".$@.")");
return(undef);
}
$object->Load($self->__Value('ObjectId'));
return($object);
}
sub Delete {
my $self = shift;
unless ($self->CurrentUserHasRight('delete')) {
return (0,$self->loc('Permission Denied'));
}
return($self->SUPER::Delete(@_));
}
sub _Value {
my $self = shift;
unless ($self->CurrentUserHasRight('display')) {
return (0,$self->loc('Permission Denied'));
}
return($self->SUPER::_Value(@_));
}
sub _Set {
my $self = shift;
unless ($self->CurrentUserHasRight('update')) {
return (0,$self->loc('Permission Denied'));
}
return($self->SUPER::_Set(@_));
}
=head2 CurrentUserHasRight
One of "display" "update" "delete" or "create" and returns 1 if the user has that right for attributes of this name for this object.Returns undef otherwise.
=cut
sub CurrentUserHasRight {
my $self = shift;
my $right = shift;
# object_right is the right that the user has to have on the object for them to have $right on this attribute
my $object_right = $self->LookupObjectRight(
Right => $right,
ObjectId => $self->__Value('ObjectId'),
ObjectType => $self->__Value('ObjectType'),
Name => $self->__Value('Name')
);
return (1) if ($object_right eq 'allow');
return (0) if ($object_right eq 'deny');
return(1) if ($self->CurrentUser->HasRight( Object => $self->Object, Right => $object_right));
return(0);
}
=head1 TODO
We should be deserializing the content on load and then never again, rather than at every access
=cut
=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(255).)
=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(255).)
=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 Content
Returns the current value of Content.
(In the database, Content is stored as blob.)
=head2 SetContent VALUE
Set Content to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, Content will be stored as a blob.)
=cut
=head2 ContentType
Returns the current value of ContentType.
(In the database, ContentType is stored as varchar(16).)
=head2 SetContentType VALUE
Set ContentType to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, ContentType will be stored as a varchar(16).)
=cut
=head2 ObjectType
Returns the current value of ObjectType.
(In the database, ObjectType is stored as varchar(64).)
=head2 SetObjectType VALUE
Set ObjectType to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, ObjectType will be stored as a varchar(64).)
=cut
=head2 ObjectId
Returns the current value of ObjectId.
(In the database, ObjectId is stored as int(11).)
=head2 SetObjectId VALUE
Set ObjectId to VALUE.
Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
(In the database, ObjectId will be stored as a 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
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 => 255, is_blob => 0, is_numeric => 0, type => 'varchar(255)', default => ''},
Description =>
{read => 1, write => 1, sql_type => 12, length => 255, is_blob => 0, is_numeric => 0, type => 'varchar(255)', default => ''},
Content =>
{read => 1, write => 1, sql_type => -4, length => 0, is_blob => 1, is_numeric => 0, type => 'blob', default => ''},
ContentType =>
{read => 1, write => 1, sql_type => 12, length => 16, is_blob => 0, is_numeric => 0, type => 'varchar(16)', default => ''},
ObjectType =>
{read => 1, write => 1, sql_type => 12, length => 64, is_blob => 0, is_numeric => 0, type => 'varchar(64)', default => ''},
ObjectId =>
{read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => ''},
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 => ''},
}
};
sub FindDependencies {
my $self = shift;
my ($walker, $deps) = @_;
$self->SUPER::FindDependencies($walker, $deps);
$deps->Add( out => $self->Object );
# dashboards in menu attribute has dependencies on each of its dashboards
if ($self->Name eq RT::User::_PrefName("DashboardsInMenu")) {
my $content = $self->Content;
for my $pane (values %{ $content || {} }) {
for my $dash_id (@$pane) {
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($dash_id);
$deps->Add( out => $attr );
}
}
}
# homepage settings attribute has dependencies on each of the searches in it
elsif ($self->Name eq RT::User::_PrefName("HomepageSettings")) {
my $content = $self->Content;
for my $pane (values %{ $content || {} }) {
for my $component (@$pane) {
# this hairy code mirrors what's in the saved search loader
# in /Elements/ShowSearch
if ($component->{type} eq 'saved') {
if ($component->{name} =~ /^(.*?)-(\d+)-SavedSearch-(\d+)$/) {
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($3);
$deps->Add( out => $attr );
}
}
elsif ($component->{type} eq 'system') {
my ($search) = RT::System->new($self->CurrentUser)->Attributes->Named( 'Search - ' . $component->{name} );
unless ( $search && $search->Id ) {
my (@custom_searches) = RT::System->new($self->CurrentUser)->Attributes->Named('SavedSearch');
foreach my $custom (@custom_searches) {
if ($custom->Description eq $component->{name}) { $search = $custom; last }
}
}
$deps->Add( out => $search ) if $search;
}
}
}
}
# dashboards have dependencies on all the searches and dashboards they use
elsif ($self->Name eq 'Dashboard') {
my $content = $self->Content;
for my $pane (values %{ $content->{Panes} || {} }) {
for my $component (@$pane) {
if ($component->{portlet_type} eq 'search' || $component->{portlet_type} eq 'dashboard') {
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($component->{id});
$deps->Add( out => $attr );
}
}
}
}
# each subscription depends on its dashboard
elsif ($self->Name eq 'Subscription') {
my $content = $self->Content;
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($content->{DashboardId});
$deps->Add( out => $attr );
}
}
sub PreInflate {
my $class = shift;
my ($importer, $uid, $data) = @_;
if ($data->{Object} and ref $data->{Object}) {
my $on_uid = ${ $data->{Object} };
# skip attributes of objects we're not inflating
# exception: we don't inflate RT->System, but we want RT->System's searches
unless ($on_uid eq RT->System->UID && $data->{Name} =~ /Search/) {
return if $importer->ShouldSkipTransaction($on_uid);
}
}
return $class->SUPER::PreInflate( $importer, $uid, $data );
}
# this method will be called repeatedly to fix up this attribute's contents
# (a list of searches, dashboards) during the import process, as the
# ordinary dependency resolution system can't quite handle the subtlety
# involved (e.g. a user simply declares out-dependencies on all of her
# attributes, but those attributes (e.g. dashboards, saved searches,
# dashboards in menu preferences) have dependencies amongst themselves).
# if this attribute (e.g. a user's dashboard) fails to load an attribute
# (e.g. a user's saved search) then it postpones and repeats the postinflate
# process again when that user's saved search has been imported
# this method updates Content each time through, each time getting closer and
# closer to the fully inflated attribute
sub PostInflateFixup {
my $self = shift;
my $importer = shift;
my $spec = shift;
# decode UIDs to be raw dashboard IDs
if ($self->Name eq RT::User::_PrefName("DashboardsInMenu")) {
my $content = $self->Content;
for my $pane (values %{ $content || {} }) {
for (@$pane) {
if (ref($_) eq 'SCALAR') {
my $attr = $importer->LookupObj($$_);
if ($attr) {
$_ = $attr->Id;
}
else {
$importer->Postpone(
for => $$_,
uid => $spec->{uid},
method => 'PostInflateFixup',
);
}
}
}
}
$self->SetContent($content);
}
# decode UIDs to be saved searches
elsif ($self->Name eq RT::User::_PrefName("HomepageSettings")) {
my $content = $self->Content;
for my $pane (values %{ $content || {} }) {
for (@$pane) {
if (ref($_->{uid}) eq 'SCALAR') {
my $uid = $_->{uid};
my $attr = $importer->LookupObj($$uid);
if ($attr) {
if ($_->{type} eq 'saved') {
$_->{name} = join '-', $attr->ObjectType, $attr->ObjectId, 'SavedSearch', $attr->id;
}
# if type is system, name doesn't need to change
# if type is anything else, pass it through as is
delete $_->{uid};
}
else {
$importer->Postpone(
for => $$uid,
uid => $spec->{uid},
method => 'PostInflateFixup',
);
}
}
}
}
$self->SetContent($content);
}
elsif ($self->Name eq 'Dashboard') {
my $content = $self->Content;
for my $pane (values %{ $content->{Panes} || {} }) {
for (@$pane) {
if (ref($_->{uid}) eq 'SCALAR') {
my $uid = $_->{uid};
my $attr = $importer->LookupObj($$uid);
if ($attr) {
# update with the new id numbers assigned to us
$_->{id} = $attr->Id;
$_->{privacy} = join '-', $attr->ObjectType, $attr->ObjectId;
delete $_->{uid};
}
else {
$importer->Postpone(
for => $$uid,
uid => $spec->{uid},
method => 'PostInflateFixup',
);
}
}
}
}
$self->SetContent($content);
}
elsif ($self->Name eq 'Subscription') {
my $content = $self->Content;
if (ref($content->{DashboardId}) eq 'SCALAR') {
my $attr = $importer->LookupObj(${ $content->{DashboardId} });
if ($attr) {
$content->{DashboardId} = $attr->Id;
}
else {
$importer->Postpone(
for => ${ $content->{DashboardId} },
uid => $spec->{uid},
method => 'PostInflateFixup',
);
}
}
$self->SetContent($content);
}
}
sub PostInflate {
my $self = shift;
my ($importer, $uid) = @_;
$self->SUPER::PostInflate( $importer, $uid );
# this method is separate because it needs to be callable multple times,
# and we can't guarantee that SUPER::PostInflate can deal with that
$self->PostInflateFixup($importer, { uid => $uid });
}
sub Serialize {
my $self = shift;
my %args = (@_);
my %store = $self->SUPER::Serialize(@_);
# encode raw dashboard IDs to be UIDs
if ($store{Name} eq RT::User::_PrefName("DashboardsInMenu")) {
my $content = $self->_DeserializeContent($store{Content});
for my $pane (values %{ $content || {} }) {
for (@$pane) {
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($_);
$_ = \($attr->UID);
}
}
$store{Content} = $self->_SerializeContent($content);
}
# encode saved searches to be UIDs
elsif ($store{Name} eq RT::User::_PrefName("HomepageSettings")) {
my $content = $self->_DeserializeContent($store{Content});
for my $pane (values %{ $content || {} }) {
for (@$pane) {
# this hairy code mirrors what's in the saved search loader
# in /Elements/ShowSearch
if ($_->{type} eq 'saved') {
if ($_->{name} =~ /^(.*?)-(\d+)-SavedSearch-(\d+)$/) {
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($3);
$_->{uid} = \($attr->UID);
}
# if we can't parse the name, just pass it through
}
elsif ($_->{type} eq 'system') {
my ($search) = RT::System->new($self->CurrentUser)->Attributes->Named( 'Search - ' . $_->{name} );
unless ( $search && $search->Id ) {
my (@custom_searches) = RT::System->new($self->CurrentUser)->Attributes->Named('SavedSearch');
foreach my $custom (@custom_searches) {
if ($custom->Description eq $_->{name}) { $search = $custom; last }
}
}
# if we can't load the search, just pass it through
if ($search) {
$_->{uid} = \($search->UID);
}
}
# pass through everything else (e.g. component)
}
}
$store{Content} = $self->_SerializeContent($content);
}
# encode saved searches and dashboards to be UIDs
elsif ($store{Name} eq 'Dashboard') {
my $content = $self->_DeserializeContent($store{Content}) || {};
for my $pane (values %{ $content->{Panes} || {} }) {
for (@$pane) {
if ($_->{portlet_type} eq 'search' || $_->{portlet_type} eq 'dashboard') {
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($_->{id});
$_->{uid} = \($attr->UID);
}
# pass through everything else (e.g. component)
}
}
$store{Content} = $self->_SerializeContent($content);
}
# encode subscriptions to have dashboard UID
elsif ($store{Name} eq 'Subscription') {
my $content = $self->_DeserializeContent($store{Content});
my $attr = RT::Attribute->new($self->CurrentUser);
$attr->LoadById($content->{DashboardId});
$content->{DashboardId} = \($attr->UID);
$store{Content} = $self->_SerializeContent($content);
}
return %store;
}
RT::Base->_ImportOverlays();
1;
|