package WebGUI::Asset; =head1 LEGAL ------------------------------------------------------------------- WebGUI is Copyright 2001-2006 Plain Black Corporation. ------------------------------------------------------------------- Please read the legal notices (docs/legal.txt) and the license (docs/license.txt) that came with this distribution before using this software. ------------------------------------------------------------------- http://www.plainblack.com info@plainblack.com ------------------------------------------------------------------- =cut use strict; =head1 NAME Package WebGUI::AssetClipboard =head1 DESCRIPTION This is a mixin package for WebGUI::Asset that contains all clipboard related functions. =head1 SYNOPSIS use WebGUI::Asset; =head1 METHODS These methods are available from this class: =cut #------------------------------------------------------------------- =head2 cut ( ) Removes asset from lineage, places it in clipboard state. The "gap" in the lineage is changed in state to clipboard-limbo. =cut sub cut { my $self = shift; return undef if ($self->getId eq $self->session->setting->get("defaultPage") || $self->getId eq $self->session->setting->get("notFoundPage")); $self->session->db->beginTransaction; $self->session->db->write("update asset set state='clipboard-limbo' where lineage like ".$self->session->db->quote($self->get("lineage").'%')." and state='published'"); $self->session->db->write("update asset set state='clipboard', stateChangedBy=".$self->session->db->quote($self->session->user->userId).", stateChanged=".$self->session->datetime->time()." where assetId=".$self->session->db->quote($self->getId)); $self->session->db->commit; $self->updateHistory("cut"); $self->{_properties}{state} = "clipboard"; $self->purgeCache; } #------------------------------------------------------------------- =head2 duplicate ( [assetToDuplicate] ) Duplicates an asset. Calls addChild with assetToDuplicate as an arguement. Returns a new Asset object. =head3 assetToDuplicate If not supplied, defaults to self. =cut sub duplicate { my $self = shift; my $assetToDuplicate = shift || $self; my $newAsset = $self->addChild($assetToDuplicate->get); my $sth = $self->session->db->read("select * from metaData_values where assetId = ".$self->session->db->quote($assetToDuplicate->getId)); while( my $h = $sth->hashRef) { $self->session->db->write("insert into metaData_values (fieldId, assetId, value) values (". $self->session->db->quote($h->{fieldId}).",".$self->session->db->quote($newAsset->getId).",".$self->session->db->quote($h->{value}).")"); } $sth->finish; return $newAsset; } #------------------------------------------------------------------- =head2 getAssetsInClipboard ( [limitToUser,userId] ) Returns an array reference of title, assetId, and classname to the assets in the clipboard. =head3 limitToUser If True, only return assets last updated by userId. =head3 userId If not specified, uses current user. =cut sub getAssetsInClipboard { my $self = shift; my $limitToUser = shift; my $userId = shift || $self->session->user->userId; my @assets; my $limit; if ($limitToUser) { $limit = "and asset.stateChangedBy=".$self->session->db->quote($userId); } my $sth = $self->session->db->read(" select asset.assetId, assetData.revisionDate, asset.className from asset left join assetData on asset.assetId=assetData.assetId where asset.state='clipboard' and assetData.revisionDate=(SELECT max(revisionDate) from assetData where assetData.assetId=asset.assetId) $limit group by assetData.assetId order by assetData.title desc "); while (my ($id, $date, $class) = $sth->array) { push(@assets, WebGUI::Asset->new($self->session,$id,$class,$date)); } $sth->finish; return \@assets; } #------------------------------------------------------------------- =head2 paste ( assetId ) Returns 1 if can paste an asset to a Parent. Sets the Asset to published. Otherwise returns 0. =head3 assetId Alphanumeric ID tag of Asset. =cut sub paste { my $self = shift; my $assetId = shift; my $pastedAsset = WebGUI::Asset->newByDynamicClass($self->session,$assetId); return 0 unless ($self->get("state") eq "published"); if ($self->getId eq $pastedAsset->get("parentId") || $pastedAsset->setParent($self)) { $pastedAsset->publish(['clipboard','clipboard-limbo']); # Paste only clipboard items $pastedAsset->updateHistory("pasted to parent ".$self->getId); return 1; } return 0; } #------------------------------------------------------------------- =head2 www_copy ( ) Duplicates self, cuts duplicate, returns self->getContainer->www_view if canEdit. Otherwise returns an AdminConsole rendered as insufficient privilege. =cut sub www_copy { my $self = shift; return $self->session->privilege->insufficient() unless $self->canEdit; my $newAsset = $self->duplicate; $newAsset->update({ title=>$self->getTitle.' (copy)'}); $newAsset->cut; return $self->getContainer->www_view; } #------------------------------------------------------------------- =head2 www_copyList ( ) Copies to clipboard assets in a list, then returns self calling method www_manageAssets(), if canEdit. Otherwise returns AdminConsole rendered insufficient privilege. =cut sub www_copyList { my $self = shift; return $self->session->privilege->insufficient() unless $self->canEdit; foreach my $assetId ($self->session->form->param("assetId")) { my $asset = WebGUI::Asset->newByDynamicClass($self->session,$assetId); if ($asset->canEdit) { my $newAsset = $asset->duplicate; $newAsset->update({ title=>$newAsset->getTitle.' (copy)'}); $newAsset->cut; } } if ($self->session->form->process("proceed") ne "") { my $method = "www_".$self->session->form->process("proceed"); return $self->$method(); } return $self->www_manageAssets(); } #------------------------------------------------------------------- =head2 www_createShortcut ( ) =cut sub www_createShortcut { my $self = shift; return $self->session->privilege->insufficient() unless ($self->session->user->isInGroup(4)); my $isOnDashboard = ref $self->getParent eq 'WebGUI::Asset::Wobject::Dashboard'; my $child = $self->getParent->addChild({ className=>'WebGUI::Asset::Shortcut', shortcutToAssetId=>$self->getId, title=>$self->getTitle, menuTitle=>$self->getMenuTitle, isHidden=>$self->get("isHidden"), newWindow=>$self->get("newWindow"), ownerUserId=>$self->get("ownerUserId"), groupIdEdit=>$self->get("groupIdEdit"), groupIdView=>$self->get("groupIdView"), url=>$self->get("title"), templateId=>'PBtmpl0000000000000140' }); if ($isOnDashboard) { return $self->getParent->www_view; } else { $child->cut; return $self->getContainer->www_manageAssets if ($self->session->form->process("proceed") eq "manageAssets"); return $self->getContainer->www_view; } } #------------------------------------------------------------------- =head2 www_cut ( ) Cuts (removes to clipboard) self, returns the www_view of the Parent if canEdit. Otherwise returns AdminConsole rendered insufficient privilege. =cut sub www_cut { my $self = shift; return $self->session->privilege->insufficient() unless $self->canEdit; $self->cut; $self->session->asset($self->getParent); return $self->getParent->www_view; } #------------------------------------------------------------------- =head2 www_cutList ( ) Cuts assets in a list (removes to clipboard), then returns self calling method www_manageAssets(), if canEdit. Otherwise returns AdminConsole rendered insufficient privilege. =cut sub www_cutList { my $self = shift; return $self->session->privilege->insufficient() unless $self->canEdit; foreach my $assetId ($self->session->form->param("assetId")) { my $asset = WebGUI::Asset->newByDynamicClass($self->session,$assetId); if ($asset->canEdit) { $asset->cut; } } if ($self->session->form->process("proceed") ne "") { my $method = "www_".$self->session->form->process("proceed"); return $self->$method(); } return $self->www_manageAssets(); } #------------------------------------------------------------------- =head2 www_duplicateList ( ) Creates a bunch of duplicate assets under the same parent. =cut sub www_duplicateList { my $self = shift; return $self->session->privilege->insufficient() unless $self->canEdit; foreach my $assetId ($self->session->form->param("assetId")) { my $asset = WebGUI::Asset->newByDynamicClass($self->session,$assetId); if ($asset->canEdit) { my $newAsset = $asset->duplicate; $newAsset->update({ title=>$newAsset->getTitle.' (copy)'}); $newAsset->setParent($asset->getParent); } } if ($self->session->form->process("proceed") ne "") { my $method = "www_".$self->session->form->process("proceed"); return $self->$method(); } return $self->www_manageAssets(); } #------------------------------------------------------------------- =head2 www_emptyClipboard ( ) Moves assets in clipboard to trash. Returns www_manageClipboard() when finished. If isInGroup(4) returns False, insufficient privilege is rendered. =cut sub www_emptyClipboard { my $self = shift; my $ac = WebGUI::AdminConsole->new($self->session,"clipboard"); return $self->session->privilege->insufficient() unless ($self->session->user->isInGroup(4)); foreach my $asset (@{$self->getAssetsInClipboard(!($self->session->form->process("systemClipboard") && $self->session->user->isInGroup(3)))}) { $asset->trash; } return $self->www_manageClipboard(); } #------------------------------------------------------------------- =head2 www_manageClipboard ( ) Returns an AdminConsole to deal with assets in the Clipboard. If isInGroup(12) is False, renders an insufficient privilege page. =cut sub www_manageClipboard { my $self = shift; my $ac = WebGUI::AdminConsole->new($self->session,"clipboard"); return $self->session->privilege->insufficient() unless ($self->session->user->isInGroup(12)); my $i18n = WebGUI::International->new($self->session, "Asset"); my ($header,$limit); $ac->setHelp("clipboard manage"); if ($self->session->form->process("systemClipboard") && $self->session->user->isInGroup(3)) { $header = $i18n->get(966); $ac->addSubmenuItem($self->getUrl('func=manageClipboard'), $i18n->get(949)); $ac->addSubmenuItem($self->getUrl('func=emptyClipboard;systemClipboard=1'), $i18n->get(959), 'onclick="return window.confirm(\''.$i18n->get(951,"WebGUI").'\')"',"Asset"); } else { $ac->addSubmenuItem($self->getUrl('func=manageClipboard;systemClipboard=1'), $i18n->get(954)); $ac->addSubmenuItem($self->getUrl('func=emptyClipboard'), $i18n->get(950), 'onclick="return window.confirm(\''.$i18n->get(951,"WebGUI").'\')"',"Asset"); $limit = 1; } $self->session->style->setLink($self->session->url->extras('assetManager/assetManager.css'), {rel=>"stylesheet",type=>"text/css"}); $self->session->style->setScript($self->session->url->extras('assetManager/assetManager.js'), {type=>"text/javascript"}); my $output = "