2012-07-16 03:06:35 +02:00
|
|
|
<?php
|
2014-01-10 03:19:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @package dms
|
2017-05-08 05:30:24 +02:00
|
|
|
*
|
|
|
|
* @property Varchar Filename
|
|
|
|
* @property Varchar Folder
|
|
|
|
* @property Varchar Title
|
|
|
|
* @property Text Description
|
|
|
|
* @property int ViewCount
|
|
|
|
* @property Boolean EmbargoedIndefinitely
|
|
|
|
* @property Boolean EmbargoedUntilPublished
|
|
|
|
* @property DateTime EmbargoedUntilDate
|
|
|
|
* @property DateTime ExpireAtDate
|
|
|
|
* @property Enum DownloadBehavior
|
|
|
|
* @property Enum CanViewType Enum('Anyone, LoggedInUsers, OnlyTheseUsers', 'Anyone')
|
|
|
|
* @property Enum CanEditType Enum('LoggedInUsers, OnlyTheseUsers', 'LoggedInUsers')
|
|
|
|
*
|
|
|
|
* @method ManyManyList RelatedDocuments
|
|
|
|
* @method ManyManyList ViewerGroups
|
|
|
|
* @method ManyManyList EditorGroups
|
|
|
|
*
|
2017-05-08 13:57:52 +02:00
|
|
|
* @method Member CreatedBy
|
|
|
|
* @property Int CreatedByID
|
|
|
|
* @method Member LastEditedBy
|
|
|
|
* @property Int LastEditedByID
|
|
|
|
*
|
2014-01-10 03:19:12 +01:00
|
|
|
*/
|
2015-12-17 19:48:37 +01:00
|
|
|
class DMSDocument extends DataObject implements DMSDocumentInterface
|
|
|
|
{
|
|
|
|
private static $db = array(
|
|
|
|
"Filename" => "Varchar(255)", // eg. 3469~2011-energysaving-report.pdf
|
|
|
|
"Folder" => "Varchar(255)", // eg. 0
|
|
|
|
"Title" => 'Varchar(1024)', // eg. "Energy Saving Report for Year 2011, New Zealand LandCorp"
|
|
|
|
"Description" => 'Text',
|
|
|
|
"ViewCount" => 'Int',
|
|
|
|
"EmbargoedIndefinitely" => 'Boolean(false)',
|
|
|
|
"EmbargoedUntilPublished" => 'Boolean(false)',
|
|
|
|
"EmbargoedUntilDate" => 'SS_DateTime',
|
2016-11-24 04:28:25 +01:00
|
|
|
"ExpireAtDate" => 'SS_DateTime',
|
|
|
|
"DownloadBehavior" => 'Enum(array("open","download"), "download")',
|
2017-05-08 05:30:24 +02:00
|
|
|
"CanViewType" => "Enum('Anyone, LoggedInUsers, OnlyTheseUsers', 'Anyone')",
|
|
|
|
"CanEditType" => "Enum('LoggedInUsers, OnlyTheseUsers', 'LoggedInUsers')",
|
2015-12-17 19:48:37 +01:00
|
|
|
);
|
|
|
|
|
2017-05-02 04:49:41 +02:00
|
|
|
private static $belongs_many_many = array(
|
|
|
|
'Sets' => 'DMSDocumentSet'
|
|
|
|
);
|
|
|
|
|
2017-05-08 13:57:52 +02:00
|
|
|
private static $has_one = array(
|
|
|
|
'CoverImage' => 'Image',
|
|
|
|
'CreatedBy' => 'Member',
|
|
|
|
'LastEditedBy' => 'Member',
|
|
|
|
);
|
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
private static $many_many = array(
|
2017-05-01 06:29:04 +02:00
|
|
|
'RelatedDocuments' => 'DMSDocument',
|
2017-05-08 05:30:24 +02:00
|
|
|
'ViewerGroups' => 'Group',
|
|
|
|
'EditorGroups' => 'Group',
|
2015-12-17 19:48:37 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
private static $display_fields = array(
|
|
|
|
'ID' => 'ID',
|
|
|
|
'Title' => 'Title',
|
|
|
|
'FilenameWithoutID' => 'Filename',
|
2017-05-17 00:58:51 +02:00
|
|
|
'LastEdited' => 'Last Edited'
|
2015-12-17 19:48:37 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
private static $singular_name = 'Document';
|
|
|
|
|
|
|
|
private static $plural_name = 'Documents';
|
|
|
|
|
2017-05-03 03:26:17 +02:00
|
|
|
private static $summary_fields = array(
|
|
|
|
'Filename' => 'Filename',
|
|
|
|
'Title' => 'Title',
|
2017-05-30 03:51:56 +02:00
|
|
|
'getRelatedPages.count' => 'Page Use',
|
2017-05-03 03:26:17 +02:00
|
|
|
'ViewCount' => 'ViewCount',
|
|
|
|
);
|
|
|
|
|
2016-11-24 04:28:25 +01:00
|
|
|
/**
|
|
|
|
* @var string download|open
|
|
|
|
* @config
|
|
|
|
*/
|
|
|
|
private static $default_download_behaviour = 'download';
|
|
|
|
|
2017-05-09 06:47:05 +02:00
|
|
|
/**
|
|
|
|
* A key value map of the "actions" tabs that will be added to the CMS fields
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $actionTasks = array(
|
|
|
|
'embargo' => 'Embargo',
|
|
|
|
'expiry' => 'Expiry',
|
|
|
|
'replace' => 'Replace',
|
|
|
|
'find-usage' => 'Usage',
|
|
|
|
'find-references' => 'References',
|
|
|
|
'find-relateddocuments' => 'Related Documents',
|
|
|
|
'permissions' => 'Permissions'
|
|
|
|
);
|
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
public function canView($member = null)
|
|
|
|
{
|
|
|
|
if (!$member || !(is_a($member, 'Member')) || is_numeric($member)) {
|
|
|
|
$member = Member::currentUser();
|
|
|
|
}
|
|
|
|
|
|
|
|
// extended access checks
|
|
|
|
$results = $this->extend('canView', $member);
|
|
|
|
|
|
|
|
if ($results && is_array($results)) {
|
|
|
|
if (!min($results)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-08 05:30:24 +02:00
|
|
|
if (!$this->CanViewType || $this->CanViewType == 'Anyone') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-08 13:57:52 +02:00
|
|
|
if ($member && Permission::checkMember($member, array(
|
|
|
|
'ADMIN',
|
|
|
|
'SITETREE_EDIT_ALL',
|
|
|
|
'SITETREE_VIEW_ALL',
|
|
|
|
))
|
|
|
|
) {
|
2015-12-17 19:48:37 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-08 05:30:24 +02:00
|
|
|
if ($this->isHidden()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->CanViewType == 'LoggedInUsers') {
|
|
|
|
return $member && $member->exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->CanViewType == 'OnlyTheseUsers' && $this->ViewerGroups()->count()) {
|
|
|
|
return ($member && $member->inGroups($this->ViewerGroups()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->canEdit($member);
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function canEdit($member = null)
|
|
|
|
{
|
|
|
|
if (!$member || !(is_a($member, 'Member')) || is_numeric($member)) {
|
|
|
|
$member = Member::currentUser();
|
|
|
|
}
|
|
|
|
|
|
|
|
$results = $this->extend('canEdit', $member);
|
|
|
|
|
|
|
|
if ($results && is_array($results)) {
|
|
|
|
if (!min($results)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-08 05:30:24 +02:00
|
|
|
// Do early admin check
|
2017-05-08 13:57:52 +02:00
|
|
|
if ($member && Permission::checkMember(
|
|
|
|
$member,
|
|
|
|
array(
|
2017-05-08 05:30:24 +02:00
|
|
|
'ADMIN',
|
|
|
|
'SITETREE_EDIT_ALL',
|
|
|
|
'SITETREE_VIEW_ALL',
|
|
|
|
)
|
2017-05-08 13:57:52 +02:00
|
|
|
)
|
2017-05-08 05:30:24 +02:00
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->CanEditType === 'LoggedInUsers') {
|
|
|
|
return $member && $member->exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->CanEditType === 'OnlyTheseUsers' && $this->EditorGroups()->count()) {
|
|
|
|
return $member && $member->inGroups($this->EditorGroups());
|
|
|
|
}
|
|
|
|
|
|
|
|
return ($member && Permission::checkMember($member, array('ADMIN', 'SITETREE_EDIT_ALL')));
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Member $member
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canCreate($member = null)
|
|
|
|
{
|
|
|
|
if (!$member || !(is_a($member, 'Member')) || is_numeric($member)) {
|
|
|
|
$member = Member::currentUser();
|
|
|
|
}
|
|
|
|
|
|
|
|
$results = $this->extend('canCreate', $member);
|
|
|
|
|
|
|
|
if ($results && is_array($results)) {
|
|
|
|
if (!min($results)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-08 05:30:24 +02:00
|
|
|
return $this->canEdit($member);
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Member $member
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function canDelete($member = null)
|
|
|
|
{
|
|
|
|
if (!$member || !(is_a($member, 'Member')) || is_numeric($member)) {
|
|
|
|
$member = Member::currentUser();
|
|
|
|
}
|
|
|
|
|
|
|
|
$results = $this->extend('canDelete', $member);
|
|
|
|
|
|
|
|
if ($results && is_array($results)) {
|
|
|
|
if (!min($results)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->canView();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increase ViewCount by 1, without update any other record fields such as
|
|
|
|
* LastEdited.
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function trackView()
|
|
|
|
{
|
|
|
|
if ($this->ID > 0) {
|
|
|
|
$count = $this->ViewCount + 1;
|
|
|
|
|
|
|
|
$this->ViewCount = $count;
|
|
|
|
|
|
|
|
DB::query("UPDATE \"DMSDocument\" SET \"ViewCount\"='$count' WHERE \"ID\"={$this->ID}");
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a link to download this document from the DMS store.
|
2017-05-08 05:30:24 +02:00
|
|
|
* Alternatively a basic javascript alert will be shown should the user not have view permissions. An extension
|
|
|
|
* point for this was also added.
|
|
|
|
*
|
|
|
|
* To extend use the following from within an Extension subclass:
|
|
|
|
*
|
|
|
|
* <code>
|
|
|
|
* public function updateGetLink($result)
|
|
|
|
* {
|
|
|
|
* // Do something here
|
|
|
|
* }
|
|
|
|
* </code>
|
2015-12-17 19:48:37 +01:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLink()
|
|
|
|
{
|
2017-05-24 01:43:23 +02:00
|
|
|
$urlSegment = sprintf('%d-%s', $this->ID, URLSegmentFilter::create()->filter($this->getTitle()));
|
|
|
|
$result = Controller::join_links(Director::baseURL(), 'dmsdocument/' . $urlSegment);
|
2017-05-08 05:30:24 +02:00
|
|
|
if (!$this->canView()) {
|
|
|
|
$result = sprintf("javascript:alert('%s')", $this->getPermissionDeniedReason());
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->extend('updateGetLink', $result);
|
|
|
|
|
|
|
|
return $result;
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function Link()
|
|
|
|
{
|
|
|
|
return $this->getLink();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides the document, so it does not show up when getByPage($myPage) is
|
|
|
|
* called (without specifying the $showEmbargoed = true parameter).
|
|
|
|
*
|
|
|
|
* This is similar to expire, except that this method should be used to hide
|
|
|
|
* documents that have not yet gone live.
|
|
|
|
*
|
|
|
|
* @param bool $write Save change to the database
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function embargoIndefinitely($write = true)
|
|
|
|
{
|
|
|
|
$this->EmbargoedIndefinitely = true;
|
|
|
|
|
|
|
|
if ($write) {
|
|
|
|
$this->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides the document until any page it is linked to is published
|
|
|
|
*
|
|
|
|
* @param bool $write Save change to database
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function embargoUntilPublished($write = true)
|
|
|
|
{
|
|
|
|
$this->EmbargoedUntilPublished = true;
|
|
|
|
|
|
|
|
if ($write) {
|
|
|
|
$this->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns if this is Document is embargoed or expired.
|
|
|
|
*
|
|
|
|
* Also, returns if the document should be displayed on the front-end,
|
|
|
|
* respecting the current reading mode of the site and the embargo status.
|
|
|
|
*
|
2014-01-10 03:19:12 +01:00
|
|
|
* I.e. if a document is embargoed until published, then it should still
|
|
|
|
* show up in draft mode.
|
|
|
|
*
|
2015-12-17 19:48:37 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isHidden()
|
|
|
|
{
|
|
|
|
$hidden = $this->isEmbargoed() || $this->isExpired();
|
|
|
|
$readingMode = Versioned::get_reading_mode();
|
|
|
|
|
|
|
|
if ($readingMode == "Stage.Stage") {
|
|
|
|
if ($this->EmbargoedUntilPublished == true) {
|
|
|
|
$hidden = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns if this is Document is embargoed.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isEmbargoed()
|
|
|
|
{
|
|
|
|
if (is_object($this->EmbargoedUntilDate)) {
|
|
|
|
$this->EmbargoedUntilDate = $this->EmbargoedUntilDate->Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$embargoed = false;
|
|
|
|
|
|
|
|
if ($this->EmbargoedIndefinitely) {
|
|
|
|
$embargoed = true;
|
|
|
|
} elseif ($this->EmbargoedUntilPublished) {
|
|
|
|
$embargoed = true;
|
|
|
|
} elseif (!empty($this->EmbargoedUntilDate)) {
|
|
|
|
if (SS_Datetime::now()->Value < $this->EmbargoedUntilDate) {
|
|
|
|
$embargoed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $embargoed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides the document, so it does not show up when getByPage($myPage) is
|
|
|
|
* called. Automatically un-hides the Document at a specific date.
|
|
|
|
*
|
|
|
|
* @param string $datetime date time value when this Document should expire.
|
|
|
|
* @param bool $write
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function embargoUntilDate($datetime, $write = true)
|
|
|
|
{
|
|
|
|
$this->EmbargoedUntilDate = DBField::create_field('SS_Datetime', $datetime)->Format('Y-m-d H:i:s');
|
|
|
|
|
|
|
|
if ($write) {
|
|
|
|
$this->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears any previously set embargos, so the Document always shows up in
|
|
|
|
* all queries.
|
|
|
|
*
|
|
|
|
* @param bool $write
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function clearEmbargo($write = true)
|
|
|
|
{
|
|
|
|
$this->EmbargoedIndefinitely = false;
|
|
|
|
$this->EmbargoedUntilPublished = false;
|
|
|
|
$this->EmbargoedUntilDate = null;
|
|
|
|
|
|
|
|
if ($write) {
|
|
|
|
$this->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns if this is Document is expired.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isExpired()
|
|
|
|
{
|
|
|
|
if (is_object($this->ExpireAtDate)) {
|
|
|
|
$this->ExpireAtDate = $this->ExpireAtDate->Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$expired = false;
|
|
|
|
|
|
|
|
if (!empty($this->ExpireAtDate)) {
|
|
|
|
if (SS_Datetime::now()->Value >= $this->ExpireAtDate) {
|
|
|
|
$expired = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $expired;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides the document at a specific date, so it does not show up when
|
|
|
|
* getByPage($myPage) is called.
|
|
|
|
*
|
|
|
|
* @param string $datetime date time value when this Document should expire
|
|
|
|
* @param bool $write
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function expireAtDate($datetime, $write = true)
|
|
|
|
{
|
|
|
|
$this->ExpireAtDate = DBField::create_field('SS_Datetime', $datetime)->Format('Y-m-d H:i:s');
|
|
|
|
|
|
|
|
if ($write) {
|
|
|
|
$this->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears any previously set expiry.
|
|
|
|
*
|
|
|
|
* @param bool $write
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function clearExpiry($write = true)
|
|
|
|
{
|
|
|
|
$this->ExpireAtDate = null;
|
|
|
|
|
|
|
|
if ($write) {
|
|
|
|
$this->write();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a DataList of all previous Versions of this document (check the
|
|
|
|
* LastEdited date of each object to find the correct one).
|
|
|
|
*
|
|
|
|
* If {@link DMSDocument_versions::$enable_versions} is disabled then an
|
|
|
|
* Exception is thrown
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*
|
|
|
|
* @return DataList List of Document objects
|
|
|
|
*/
|
|
|
|
public function getVersions()
|
|
|
|
{
|
|
|
|
if (!DMSDocument_versions::$enable_versions) {
|
|
|
|
throw new Exception("DMSDocument versions are disabled");
|
|
|
|
}
|
|
|
|
|
|
|
|
return DMSDocument_versions::get_versions($this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the full filename of the document stored in this object.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFullPath()
|
|
|
|
{
|
|
|
|
if ($this->Filename) {
|
2017-05-17 06:24:25 +02:00
|
|
|
return DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR
|
|
|
|
. $this->Folder . DIRECTORY_SEPARATOR . $this->Filename;
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the filename of this asset.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFileName()
|
|
|
|
{
|
|
|
|
if ($this->getField('Filename')) {
|
|
|
|
return $this->getField('Filename');
|
|
|
|
}
|
2017-05-22 04:06:06 +02:00
|
|
|
return ASSETS_DIR . '/';
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return $this->getField('Title');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-05-22 04:06:06 +02:00
|
|
|
* Returns the filename of a document without the prefix, e.g. 0~filename.jpg -> filename.jpg
|
|
|
|
*
|
2015-12-17 19:48:37 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFilenameWithoutID()
|
|
|
|
{
|
|
|
|
$filenameParts = explode('~', $this->Filename);
|
|
|
|
$filename = array_pop($filenameParts);
|
|
|
|
|
|
|
|
return $filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getStorageFolder()
|
|
|
|
{
|
2017-05-17 06:24:25 +02:00
|
|
|
return DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR . DMS::inst()->getStorageFolder($this->ID);
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-05-16 04:52:21 +02:00
|
|
|
* Deletes the DMSDocument and its underlying file. Also calls the parent DataObject's delete method in
|
2015-12-17 19:48:37 +01:00
|
|
|
* order to complete an cascade.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
// delete the file (and previous versions of files)
|
|
|
|
$filesToDelete = array();
|
|
|
|
$storageFolder = $this->getStorageFolder();
|
|
|
|
|
|
|
|
if (file_exists($storageFolder)) {
|
|
|
|
if ($handle = opendir($storageFolder)) {
|
|
|
|
while (false !== ($entry = readdir($handle))) {
|
|
|
|
// only delete if filename starts the the relevant ID
|
|
|
|
if (strpos($entry, $this->ID.'~') === 0) {
|
|
|
|
$filesToDelete[] = $entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir($handle);
|
|
|
|
|
|
|
|
//delete all this files that have the id of this document
|
|
|
|
foreach ($filesToDelete as $file) {
|
|
|
|
$filePath = $storageFolder .DIRECTORY_SEPARATOR . $file;
|
|
|
|
|
|
|
|
if (is_file($filePath)) {
|
|
|
|
unlink($filePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get rid of any versions have saved for this DMSDocument, too
|
|
|
|
if (DMSDocument_versions::$enable_versions) {
|
|
|
|
$versions = $this->getVersions();
|
|
|
|
|
|
|
|
if ($versions->Count() > 0) {
|
|
|
|
foreach ($versions as $v) {
|
|
|
|
$v->delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-02 04:49:41 +02:00
|
|
|
return parent::delete();
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Relate an existing file on the filesystem to the document.
|
|
|
|
*
|
2017-05-17 06:24:25 +02:00
|
|
|
* Copies the file to the new destination, as defined in {@link DMS::getStoragePath()}.
|
2015-12-17 19:48:37 +01:00
|
|
|
*
|
|
|
|
* @param string $filePath Path to file, relative to webroot.
|
|
|
|
*
|
|
|
|
* @return DMSDocument
|
|
|
|
*/
|
|
|
|
public function storeDocument($filePath)
|
|
|
|
{
|
|
|
|
if (empty($this->ID)) {
|
|
|
|
user_error("Document must be written to database before it can store documents", E_USER_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate all the path to copy the file to
|
|
|
|
$fromFilename = basename($filePath);
|
|
|
|
$toFilename = $this->ID. '~' . $fromFilename; //add the docID to the start of the Filename
|
2017-05-17 06:24:25 +02:00
|
|
|
$toFolder = DMS::inst()->getStorageFolder($this->ID);
|
|
|
|
$toPath = DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR . $toFolder . DIRECTORY_SEPARATOR . $toFilename;
|
2015-12-17 19:48:37 +01:00
|
|
|
|
2017-05-17 06:24:25 +02:00
|
|
|
DMS::inst()->createStorageFolder(DMS::inst()->getStoragePath() . DIRECTORY_SEPARATOR . $toFolder);
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
//copy the file into place
|
|
|
|
$fromPath = BASE_PATH . DIRECTORY_SEPARATOR . $filePath;
|
|
|
|
|
|
|
|
//version the existing file (copy it to a new "very specific" filename
|
|
|
|
if (DMSDocument_versions::$enable_versions) {
|
|
|
|
DMSDocument_versions::create_version($this);
|
|
|
|
} else { //otherwise delete the old document file
|
|
|
|
$oldPath = $this->getFullPath();
|
|
|
|
if (file_exists($oldPath)) {
|
|
|
|
unlink($oldPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
copy($fromPath, $toPath); //this will overwrite the existing file (if present)
|
|
|
|
|
|
|
|
//write the filename of the stored document
|
|
|
|
$this->Filename = $toFilename;
|
2016-01-22 01:39:50 +01:00
|
|
|
$this->Folder = strval($toFolder);
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
$extension = pathinfo($this->Filename, PATHINFO_EXTENSION);
|
|
|
|
|
|
|
|
if (empty($this->Title)) {
|
|
|
|
// don't overwrite existing document titles
|
|
|
|
$this->Title = basename($filePath, '.'.$extension);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->write();
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a File object or a String (path to a file) and copies it into the
|
|
|
|
* DMS, replacing the original document file but keeping the rest of the
|
|
|
|
* document unchanged.
|
|
|
|
*
|
|
|
|
* @param File|string $file path to a file to store
|
|
|
|
*
|
|
|
|
* @return DMSDocument object that we replaced the file in
|
|
|
|
*/
|
|
|
|
public function replaceDocument($file)
|
|
|
|
{
|
2017-05-17 06:24:25 +02:00
|
|
|
$filePath = DMS::inst()->transformFileToFilePath($file);
|
2015-12-17 19:48:37 +01:00
|
|
|
$doc = $this->storeDocument($filePath); // replace the document
|
2012-08-14 08:36:52 +02:00
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
return $doc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the type of file for the given extension
|
|
|
|
* on the current file name.
|
|
|
|
*
|
|
|
|
* @param string $ext
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function get_file_type($ext)
|
|
|
|
{
|
|
|
|
$types = array(
|
|
|
|
'gif' => 'GIF image - good for diagrams',
|
|
|
|
'jpg' => 'JPEG image - good for photos',
|
|
|
|
'jpeg' => 'JPEG image - good for photos',
|
|
|
|
'png' => 'PNG image - good general-purpose format',
|
|
|
|
'ico' => 'Icon image',
|
|
|
|
'tiff' => 'Tagged image format',
|
|
|
|
'doc' => 'Word document',
|
|
|
|
'xls' => 'Excel spreadsheet',
|
|
|
|
'zip' => 'ZIP compressed file',
|
|
|
|
'gz' => 'GZIP compressed file',
|
|
|
|
'dmg' => 'Apple disk image',
|
|
|
|
'pdf' => 'Adobe Acrobat PDF file',
|
|
|
|
'mp3' => 'MP3 audio file',
|
|
|
|
'wav' => 'WAV audo file',
|
|
|
|
'avi' => 'AVI video file',
|
|
|
|
'mpg' => 'MPEG video file',
|
|
|
|
'mpeg' => 'MPEG video file',
|
|
|
|
'js' => 'Javascript file',
|
|
|
|
'css' => 'CSS file',
|
|
|
|
'html' => 'HTML file',
|
|
|
|
'htm' => 'HTML file'
|
|
|
|
);
|
|
|
|
|
|
|
|
return isset($types[$ext]) ? $types[$ext] : $ext;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Description field with HTML <br> tags added when there is a
|
|
|
|
* line break.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getDescriptionWithLineBreak()
|
|
|
|
{
|
|
|
|
return nl2br($this->getField('Description'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
public function getCMSFields()
|
|
|
|
{
|
|
|
|
//include JS to handling showing and hiding of bottom "action" tabs
|
2017-05-09 05:53:52 +02:00
|
|
|
Requirements::javascript(DMS_DIR . '/javascript/DMSDocumentCMSFields.js');
|
|
|
|
Requirements::css(DMS_DIR . '/dist/css/cmsbundle.css');
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
$fields = new FieldList(); //don't use the automatic scaffolding, it is slow and unnecessary here
|
|
|
|
|
|
|
|
$extraTasks = ''; //additional text to inject into the list of tasks at the bottom of a DMSDocument CMSfield
|
|
|
|
|
|
|
|
//get list of shortcode page relations
|
|
|
|
$relationFinder = new ShortCodeRelationFinder();
|
|
|
|
$relationList = $relationFinder->getList($this->ID);
|
|
|
|
|
|
|
|
$fieldsTop = $this->getFieldsForFile($relationList->count());
|
|
|
|
$fields->add($fieldsTop);
|
|
|
|
|
2017-05-08 13:57:52 +02:00
|
|
|
$fields->add(TextField::create('Title', _t('DMSDocument.TITLE', 'Title')));
|
|
|
|
$fields->add(TextareaField::create('Description', _t('DMSDocument.DESCRIPTION', 'Description')));
|
|
|
|
|
|
|
|
$coverImageField = UploadField::create('CoverImage', _t('DMSDocument.COVERIMAGE', 'Cover Image'));
|
|
|
|
$coverImageField->getValidator()->setAllowedExtensions(array('jpg', 'jpeg', 'png', 'gif'));
|
|
|
|
$coverImageField->setConfig('allowedMaxFileNumber', 1);
|
|
|
|
$fields->add($coverImageField);
|
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
|
2016-11-24 04:28:25 +01:00
|
|
|
$downloadBehaviorSource = array(
|
|
|
|
'open' => _t('DMSDocument.OPENINBROWSER', 'Open in browser'),
|
|
|
|
'download' => _t('DMSDocument.FORCEDOWNLOAD', 'Force download'),
|
|
|
|
);
|
|
|
|
$defaultDownloadBehaviour = Config::inst()->get('DMSDocument', 'default_download_behaviour');
|
|
|
|
if (!isset($downloadBehaviorSource[$defaultDownloadBehaviour])) {
|
|
|
|
user_error('Default download behaviour "' . $defaultDownloadBehaviour . '" not supported.', E_USER_WARNING);
|
2017-05-01 05:54:48 +02:00
|
|
|
} else {
|
2016-11-24 04:28:25 +01:00
|
|
|
$downloadBehaviorSource[$defaultDownloadBehaviour] .= ' (' . _t('DMSDocument.DEFAULT', 'default') . ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields->add(
|
|
|
|
OptionsetField::create(
|
|
|
|
'DownloadBehavior',
|
|
|
|
_t('DMSDocument.DOWNLOADBEHAVIOUR', 'Download behavior'),
|
|
|
|
$downloadBehaviorSource,
|
|
|
|
$defaultDownloadBehaviour
|
|
|
|
)
|
2017-05-01 05:54:48 +02:00
|
|
|
->setDescription(
|
|
|
|
'How the visitor will view this file. <strong>Open in browser</strong> '
|
|
|
|
. 'allows files to be opened in a new tab.'
|
|
|
|
)
|
2016-11-24 04:28:25 +01:00
|
|
|
);
|
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
//create upload field to replace document
|
|
|
|
$uploadField = new DMSUploadField('ReplaceFile', 'Replace file');
|
|
|
|
$uploadField->setConfig('allowedMaxFileNumber', 1);
|
|
|
|
$uploadField->setConfig('downloadTemplateName', 'ss-dmsuploadfield-downloadtemplate');
|
|
|
|
$uploadField->setRecord($this);
|
|
|
|
|
|
|
|
$gridFieldConfig = GridFieldConfig::create()->addComponents(
|
|
|
|
new GridFieldToolbarHeader(),
|
|
|
|
new GridFieldSortableHeader(),
|
|
|
|
new GridFieldDataColumns(),
|
|
|
|
new GridFieldPaginator(30),
|
|
|
|
//new GridFieldEditButton(),
|
|
|
|
new GridFieldDetailForm()
|
|
|
|
);
|
|
|
|
|
|
|
|
$gridFieldConfig->getComponentByType('GridFieldDataColumns')
|
|
|
|
->setDisplayFields(array(
|
2017-05-24 01:43:23 +02:00
|
|
|
'Title' => 'Title',
|
|
|
|
'ClassName' => 'Page Type',
|
|
|
|
'ID' => 'Page ID'
|
2015-12-17 19:48:37 +01:00
|
|
|
))
|
|
|
|
->setFieldFormatting(array(
|
2017-05-24 01:43:23 +02:00
|
|
|
'Title' => sprintf(
|
2015-12-17 19:48:37 +01:00
|
|
|
'<a class=\"cms-panel-link\" href=\"%s/$ID\">$Title</a>',
|
|
|
|
singleton('CMSPageEditController')->Link('show')
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
$pagesGrid = GridField::create(
|
|
|
|
'Pages',
|
|
|
|
_t('DMSDocument.RelatedPages', 'Related Pages'),
|
2017-05-02 04:49:41 +02:00
|
|
|
$this->getRelatedPages(),
|
2015-12-17 19:48:37 +01:00
|
|
|
$gridFieldConfig
|
|
|
|
);
|
|
|
|
|
|
|
|
$referencesGrid = GridField::create(
|
|
|
|
'References',
|
|
|
|
_t('DMSDocument.RelatedReferences', 'Related References'),
|
|
|
|
$relationList,
|
|
|
|
$gridFieldConfig
|
|
|
|
);
|
|
|
|
|
|
|
|
if (DMSDocument_versions::$enable_versions) {
|
|
|
|
$versionsGridFieldConfig = GridFieldConfig::create()->addComponents(
|
|
|
|
new GridFieldToolbarHeader(),
|
|
|
|
new GridFieldSortableHeader(),
|
|
|
|
new GridFieldDataColumns(),
|
|
|
|
new GridFieldPaginator(30)
|
|
|
|
);
|
2017-05-01 05:54:48 +02:00
|
|
|
$versionsGridFieldConfig->getComponentByType('GridFieldDataColumns')
|
|
|
|
->setDisplayFields(Config::inst()->get('DMSDocument_versions', 'display_fields'))
|
|
|
|
->setFieldFormatting(
|
|
|
|
array(
|
2017-05-24 01:43:23 +02:00
|
|
|
'FilenameWithoutID' => '<a target="_blank" class="file-url" href="$Link">'
|
2017-05-01 05:54:48 +02:00
|
|
|
. '$FilenameWithoutID</a>'
|
|
|
|
)
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
$versionsGrid = GridField::create(
|
|
|
|
'Versions',
|
|
|
|
_t('DMSDocument.Versions', 'Versions'),
|
|
|
|
$this->getVersions(),
|
|
|
|
$versionsGridFieldConfig
|
|
|
|
);
|
2017-05-09 06:47:05 +02:00
|
|
|
$this->addActionPanelTask('find-versions', 'Versions');
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 06:47:05 +02:00
|
|
|
$fields->add(LiteralField::create('BottomTaskSelection', $this->getActionTaskHtml()));
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
$embargoValue = 'None';
|
|
|
|
if ($this->EmbargoedIndefinitely) {
|
|
|
|
$embargoValue = 'Indefinitely';
|
|
|
|
} elseif ($this->EmbargoedUntilPublished) {
|
|
|
|
$embargoValue = 'Published';
|
|
|
|
} elseif (!empty($this->EmbargoedUntilDate)) {
|
|
|
|
$embargoValue = 'Date';
|
|
|
|
}
|
2017-05-01 05:54:48 +02:00
|
|
|
$embargo = new OptionsetField(
|
|
|
|
'Embargo',
|
2017-05-09 06:47:05 +02:00
|
|
|
_t('DMSDocument.EMBARGO', 'Embargo'),
|
2017-05-01 05:54:48 +02:00
|
|
|
array(
|
2017-05-09 06:47:05 +02:00
|
|
|
'None' => _t('DMSDocument.EMBARGO_NONE', 'None'),
|
|
|
|
'Published' => _t('DMSDocument.EMBARGO_PUBLISHED', 'Hide document until page is published'),
|
|
|
|
'Indefinitely' => _t('DMSDocument.EMBARGO_INDEFINITELY', 'Hide document indefinitely'),
|
|
|
|
'Date' => _t('DMSDocument.EMBARGO_DATE', 'Hide until set date')
|
2017-05-01 05:54:48 +02:00
|
|
|
),
|
|
|
|
$embargoValue
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
$embargoDatetime = DatetimeField::create('EmbargoedUntilDate', '');
|
2017-05-01 05:54:48 +02:00
|
|
|
$embargoDatetime->getDateField()
|
|
|
|
->setConfig('showcalendar', true)
|
|
|
|
->setConfig('dateformat', 'dd-MM-yyyy')
|
|
|
|
->setConfig('datavalueformat', 'dd-MM-yyyy');
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
$expiryValue = 'None';
|
|
|
|
if (!empty($this->ExpireAtDate)) {
|
|
|
|
$expiryValue = 'Date';
|
|
|
|
}
|
2017-05-01 05:54:48 +02:00
|
|
|
$expiry = new OptionsetField(
|
|
|
|
'Expiry',
|
|
|
|
'Expiry',
|
|
|
|
array(
|
|
|
|
'None' => 'None',
|
|
|
|
'Date' => 'Set document to expire on'
|
|
|
|
),
|
|
|
|
$expiryValue
|
|
|
|
);
|
2015-12-17 19:48:37 +01:00
|
|
|
$expiryDatetime = DatetimeField::create('ExpireAtDate', '');
|
2017-05-01 05:54:48 +02:00
|
|
|
$expiryDatetime->getDateField()
|
|
|
|
->setConfig('showcalendar', true)
|
|
|
|
->setConfig('dateformat', 'dd-MM-yyyy')
|
|
|
|
->setConfig('datavalueformat', 'dd-MM-yyyy');
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
// This adds all the actions details into a group.
|
|
|
|
// Embargo, History, etc to go in here
|
|
|
|
// These are toggled on and off via the Actions Buttons above
|
|
|
|
// exit('hit');
|
|
|
|
$actionsPanel = FieldGroup::create(
|
2017-05-01 06:29:04 +02:00
|
|
|
FieldGroup::create($embargo, $embargoDatetime)->addExtraClass('embargo'),
|
|
|
|
FieldGroup::create($expiry, $expiryDatetime)->addExtraClass('expiry'),
|
|
|
|
FieldGroup::create($uploadField)->addExtraClass('replace'),
|
|
|
|
FieldGroup::create($pagesGrid)->addExtraClass('find-usage'),
|
|
|
|
FieldGroup::create($referencesGrid)->addExtraClass('find-references'),
|
|
|
|
FieldGroup::create($versionsGrid)->addExtraClass('find-versions'),
|
2017-05-09 06:47:05 +02:00
|
|
|
FieldGroup::create($this->getRelatedDocumentsGridField())->addExtraClass('find-relateddocuments'),
|
|
|
|
FieldGroup::create($this->getPermissionsActionPanel())->addExtraClass('permissions')
|
2015-12-17 19:48:37 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$actionsPanel->setName("ActionsPanel");
|
2017-05-22 04:06:06 +02:00
|
|
|
$actionsPanel->addExtraClass('dmsdocument-actionspanel');
|
2015-12-17 19:48:37 +01:00
|
|
|
$fields->push($actionsPanel);
|
|
|
|
|
|
|
|
$this->extend('updateCMSFields', $fields);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
2017-05-08 05:30:24 +02:00
|
|
|
/**
|
2017-05-09 06:47:05 +02:00
|
|
|
* Adds permissions selection fields to a composite field and returns so it can be used in the "actions panel"
|
2017-05-08 05:30:24 +02:00
|
|
|
*
|
2017-05-09 06:47:05 +02:00
|
|
|
* @return CompositeField
|
2017-05-08 05:30:24 +02:00
|
|
|
*/
|
2017-05-09 06:47:05 +02:00
|
|
|
public function getPermissionsActionPanel()
|
2017-05-08 05:30:24 +02:00
|
|
|
{
|
2017-05-09 06:47:05 +02:00
|
|
|
$fields = FieldList::create();
|
2017-05-08 05:30:24 +02:00
|
|
|
$showFields = array(
|
|
|
|
'CanViewType' => '',
|
|
|
|
'ViewerGroups' => 'hide',
|
|
|
|
'CanEditType' => '',
|
|
|
|
'EditorGroups' => 'hide',
|
|
|
|
);
|
|
|
|
/** @var SiteTree $siteTree */
|
|
|
|
$siteTree = singleton('SiteTree');
|
|
|
|
$settingsFields = $siteTree->getSettingsFields();
|
|
|
|
|
|
|
|
foreach ($showFields as $name => $extraCss) {
|
|
|
|
$compositeName = "Root.Settings.$name";
|
|
|
|
/** @var FormField $field */
|
|
|
|
if ($field = $settingsFields->fieldByName($compositeName)) {
|
|
|
|
$field->addExtraClass($extraCss);
|
|
|
|
$title = str_replace('page', 'document', $field->Title());
|
|
|
|
$field->setTitle($title);
|
|
|
|
|
|
|
|
// Remove Inherited source option from DropdownField
|
|
|
|
if ($field instanceof DropdownField) {
|
|
|
|
$options = $field->getSource();
|
|
|
|
unset($options['Inherit']);
|
|
|
|
$field->setSource($options);
|
|
|
|
}
|
|
|
|
$fields->push($field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->extend('updatePermissionsFields', $fields);
|
2017-05-09 06:47:05 +02:00
|
|
|
|
|
|
|
return CompositeField::create($fields);
|
2017-05-08 05:30:24 +02:00
|
|
|
}
|
|
|
|
|
2017-05-08 13:57:52 +02:00
|
|
|
/**
|
|
|
|
* Return a title to use on the frontend, preferably the "title", otherwise the filename without it's numeric ID
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTitle()
|
|
|
|
{
|
|
|
|
if ($this->getField('Title')) {
|
|
|
|
return $this->getField('Title');
|
|
|
|
}
|
|
|
|
return $this->FilenameWithoutID;
|
|
|
|
}
|
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
public function onBeforeWrite()
|
|
|
|
{
|
|
|
|
parent::onBeforeWrite();
|
|
|
|
|
|
|
|
if (isset($this->Embargo)) {
|
|
|
|
//set the embargo options from the OptionSetField created in the getCMSFields method
|
|
|
|
//do not write after clearing the embargo (write happens automatically)
|
|
|
|
$savedDate = $this->EmbargoedUntilDate;
|
2017-05-08 13:57:52 +02:00
|
|
|
$this->clearEmbargo(false); // Clear all previous settings and re-apply them on save
|
2015-12-17 19:48:37 +01:00
|
|
|
|
|
|
|
if ($this->Embargo == 'Published') {
|
|
|
|
$this->embargoUntilPublished(false);
|
|
|
|
}
|
|
|
|
if ($this->Embargo == 'Indefinitely') {
|
|
|
|
$this->embargoIndefinitely(false);
|
|
|
|
}
|
|
|
|
if ($this->Embargo == 'Date') {
|
|
|
|
$this->embargoUntilDate($savedDate, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->Expiry)) {
|
|
|
|
if ($this->Expiry == 'Date') {
|
|
|
|
$this->expireAtDate($this->ExpireAtDate, false);
|
|
|
|
} else {
|
|
|
|
$this->clearExpiry(false);
|
2017-05-08 13:57:52 +02:00
|
|
|
} // Clear all previous settings
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set user fields
|
|
|
|
if ($currentUserID = Member::currentUserID()) {
|
|
|
|
if (!$this->CreatedByID) {
|
|
|
|
$this->CreatedByID = $currentUserID;
|
|
|
|
}
|
|
|
|
$this->LastEditedByID = $currentUserID;
|
2015-12-17 19:48:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the relative URL of an icon for the file type, based on the
|
|
|
|
* {@link appCategory()} value.
|
|
|
|
*
|
|
|
|
* Images are searched for in "dms/images/app_icons/".
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function Icon($ext)
|
|
|
|
{
|
|
|
|
if (!Director::fileExists(DMS_DIR."/images/app_icons/{$ext}_32.png")) {
|
|
|
|
$ext = File::get_app_category($ext);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Director::fileExists(DMS_DIR."/images/app_icons/{$ext}_32.png")) {
|
|
|
|
$ext = "generic";
|
|
|
|
}
|
|
|
|
|
|
|
|
return DMS_DIR."/images/app_icons/{$ext}_32.png";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the extension of the file associated with the document
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getExtension()
|
|
|
|
{
|
|
|
|
return strtolower(pathinfo($this->Filename, PATHINFO_EXTENSION));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSize()
|
|
|
|
{
|
|
|
|
$size = $this->getAbsoluteSize();
|
|
|
|
return ($size) ? File::format_size($size) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the size of the file associated with the document.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getAbsoluteSize()
|
|
|
|
{
|
|
|
|
return file_exists($this->getFullPath()) ? filesize($this->getFullPath()) : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An alias to DMSDocument::getSize()
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getFileSizeFormatted()
|
|
|
|
{
|
|
|
|
return $this->getSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return FieldList
|
|
|
|
*/
|
|
|
|
protected function getFieldsForFile($relationListCount)
|
|
|
|
{
|
|
|
|
$extension = $this->getExtension();
|
|
|
|
|
2017-05-01 05:54:48 +02:00
|
|
|
$previewField = new LiteralField(
|
|
|
|
"ImageFull",
|
|
|
|
"<img id='thumbnailImage' class='thumbnail-preview' src='{$this->Icon($extension)}?r="
|
|
|
|
. rand(1, 100000) . "' alt='{$this->Title}' />\n"
|
2015-12-17 19:48:37 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
//count the number of pages this document is published on
|
2017-05-02 04:49:41 +02:00
|
|
|
$publishedOnCount = $this->getRelatedPages()->count();
|
2015-12-17 19:48:37 +01:00
|
|
|
$publishedOnValue = "$publishedOnCount pages";
|
|
|
|
if ($publishedOnCount == 1) {
|
|
|
|
$publishedOnValue = "$publishedOnCount page";
|
|
|
|
}
|
|
|
|
|
|
|
|
$relationListCountValue = "$relationListCount pages";
|
|
|
|
if ($relationListCount == 1) {
|
|
|
|
$relationListCountValue = "$relationListCount page";
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields = new FieldGroup(
|
|
|
|
$filePreview = CompositeField::create(
|
|
|
|
CompositeField::create(
|
|
|
|
$previewField
|
|
|
|
)->setName("FilePreviewImage")->addExtraClass('cms-file-info-preview'),
|
|
|
|
CompositeField::create(
|
|
|
|
CompositeField::create(
|
|
|
|
new ReadonlyField("ID", "ID number". ':', $this->ID),
|
2017-05-01 05:54:48 +02:00
|
|
|
new ReadonlyField(
|
|
|
|
"FileType",
|
|
|
|
_t('AssetTableField.TYPE', 'File type') . ':',
|
|
|
|
self::get_file_type($extension)
|
|
|
|
),
|
|
|
|
new ReadonlyField(
|
|
|
|
"Size",
|
|
|
|
_t('AssetTableField.SIZE', 'File size') . ':',
|
|
|
|
$this->getFileSizeFormatted()
|
|
|
|
),
|
|
|
|
$urlField = new ReadonlyField(
|
|
|
|
'ClickableURL',
|
|
|
|
_t('AssetTableField.URL', 'URL'),
|
|
|
|
sprintf(
|
|
|
|
'<a href="%s" target="_blank" class="file-url">%s</a>',
|
|
|
|
$this->getLink(),
|
|
|
|
$this->getLink()
|
|
|
|
)
|
2015-12-17 19:48:37 +01:00
|
|
|
),
|
|
|
|
new ReadonlyField("FilenameWithoutIDField", "Filename". ':', $this->getFilenameWithoutID()),
|
2017-05-01 05:54:48 +02:00
|
|
|
new DateField_Disabled(
|
|
|
|
"Created",
|
|
|
|
_t('AssetTableField.CREATED', 'First uploaded') . ':',
|
|
|
|
$this->Created
|
|
|
|
),
|
|
|
|
new DateField_Disabled(
|
|
|
|
"LastEdited",
|
|
|
|
_t('AssetTableField.LASTEDIT', 'Last changed') . ':',
|
|
|
|
$this->LastEdited
|
|
|
|
),
|
2015-12-17 19:48:37 +01:00
|
|
|
new ReadonlyField("PublishedOn", "Published on". ':', $publishedOnValue),
|
|
|
|
new ReadonlyField("ReferencedOn", "Referenced on". ':', $relationListCountValue),
|
|
|
|
new ReadonlyField("ViewCount", "View count". ':', $this->ViewCount)
|
2017-05-30 03:51:56 +02:00
|
|
|
)->setName('FilePreviewDataFields')
|
2015-12-17 19:48:37 +01:00
|
|
|
)->setName("FilePreviewData")->addExtraClass('cms-file-info-data')
|
|
|
|
)->setName("FilePreview")->addExtraClass('cms-file-info')
|
|
|
|
);
|
|
|
|
|
2017-05-22 04:06:06 +02:00
|
|
|
$fields->addExtraClass('dmsdocument-documentdetails');
|
2015-12-17 19:48:37 +01:00
|
|
|
$urlField->dontEscape = true;
|
|
|
|
|
2017-05-30 03:51:56 +02:00
|
|
|
$this->extend('updateFieldsForFile', $fields);
|
|
|
|
|
2015-12-17 19:48:37 +01:00
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a file and adds it to the DMSDocument storage, replacing the
|
|
|
|
* current file.
|
|
|
|
*
|
|
|
|
* @param File $file
|
|
|
|
*
|
2017-05-01 05:54:48 +02:00
|
|
|
* @return $this
|
2015-12-17 19:48:37 +01:00
|
|
|
*/
|
|
|
|
public function ingestFile($file)
|
|
|
|
{
|
|
|
|
$this->replaceDocument($file);
|
|
|
|
$file->delete();
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2017-05-01 06:29:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a data list of documents related to this document
|
|
|
|
*
|
|
|
|
* @return DataList
|
|
|
|
*/
|
|
|
|
public function getRelatedDocuments()
|
|
|
|
{
|
|
|
|
$documents = $this->RelatedDocuments();
|
|
|
|
|
|
|
|
$this->extend('updateRelatedDocuments', $documents);
|
|
|
|
|
|
|
|
return $documents;
|
|
|
|
}
|
|
|
|
|
2017-05-02 04:49:41 +02:00
|
|
|
/**
|
|
|
|
* Get a list of related pages for this document by going through the associated document sets
|
|
|
|
*
|
|
|
|
* @return ArrayList
|
|
|
|
*/
|
|
|
|
public function getRelatedPages()
|
|
|
|
{
|
|
|
|
$pages = ArrayList::create();
|
|
|
|
|
|
|
|
foreach ($this->Sets() as $documentSet) {
|
|
|
|
/** @var DocumentSet $documentSet */
|
|
|
|
$pages->add($documentSet->Page());
|
|
|
|
}
|
|
|
|
$pages->removeDuplicates();
|
|
|
|
|
|
|
|
$this->extend('updateRelatedPages', $pages);
|
|
|
|
|
|
|
|
return $pages;
|
|
|
|
}
|
|
|
|
|
2017-05-01 06:29:04 +02:00
|
|
|
/**
|
|
|
|
* Get a GridField for managing related documents
|
|
|
|
*
|
|
|
|
* @return GridField
|
|
|
|
*/
|
|
|
|
protected function getRelatedDocumentsGridField()
|
|
|
|
{
|
|
|
|
$gridField = GridField::create(
|
|
|
|
'RelatedDocuments',
|
|
|
|
_t('DMSDocument.RELATEDDOCUMENTS', 'Related Documents'),
|
|
|
|
$this->RelatedDocuments(),
|
|
|
|
new GridFieldConfig_RelationEditor
|
|
|
|
);
|
|
|
|
|
|
|
|
$gridField->getConfig()->removeComponentsByType('GridFieldAddNewButton');
|
|
|
|
// Move the autocompleter to the left
|
|
|
|
$gridField->getConfig()->removeComponentsByType('GridFieldAddExistingAutocompleter');
|
2017-05-09 00:59:33 +02:00
|
|
|
$gridField->getConfig()->addComponent(
|
|
|
|
$addExisting = new GridFieldAddExistingAutocompleter('buttons-before-left')
|
|
|
|
);
|
|
|
|
|
|
|
|
// Ensure that current document doesn't get returned in the autocompleter
|
|
|
|
$addExisting->setSearchList($this->getRelatedDocumentsForAutocompleter());
|
2017-05-01 06:29:04 +02:00
|
|
|
|
2017-05-17 00:58:51 +02:00
|
|
|
// Restrict search fields to specific fields only
|
2017-05-22 04:06:06 +02:00
|
|
|
$addExisting->setSearchFields(array('Title:PartialMatch', 'Filename:PartialMatch'));
|
|
|
|
$addExisting->setResultsFormat('$Filename');
|
2017-05-17 00:58:51 +02:00
|
|
|
|
2017-05-01 06:29:04 +02:00
|
|
|
$this->extend('updateRelatedDocumentsGridField', $gridField);
|
|
|
|
|
|
|
|
return $gridField;
|
|
|
|
}
|
2017-05-08 05:30:24 +02:00
|
|
|
|
2017-05-09 00:59:33 +02:00
|
|
|
/**
|
|
|
|
* Get the list of documents to show in "related documents". This can be modified via the extension point, for
|
|
|
|
* example if you wanted to exclude embargoed documents or something similar.
|
|
|
|
*
|
|
|
|
* @return DataList
|
|
|
|
*/
|
|
|
|
protected function getRelatedDocumentsForAutocompleter()
|
|
|
|
{
|
|
|
|
$documents = DMSDocument::get()->exclude('ID', $this->ID);
|
|
|
|
$this->extend('updateRelatedDocumentsForAutocompleter', $documents);
|
|
|
|
return $documents;
|
|
|
|
}
|
|
|
|
|
2017-05-08 05:30:24 +02:00
|
|
|
/**
|
|
|
|
* Checks at least one group is selected if CanViewType || CanEditType == 'OnlyTheseUsers'
|
|
|
|
*
|
|
|
|
* @return ValidationResult
|
|
|
|
*/
|
|
|
|
protected function validate()
|
|
|
|
{
|
|
|
|
$valid = parent::validate();
|
|
|
|
|
|
|
|
if ($this->CanViewType == 'OnlyTheseUsers' && !$this->ViewerGroups()->count()) {
|
|
|
|
$valid->error(
|
|
|
|
_t(
|
|
|
|
'DMSDocument.VALIDATIONERROR_NOVIEWERSELECTED',
|
|
|
|
"Selecting 'Only these people' from a viewers list needs at least one group selected."
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->CanEditType == 'OnlyTheseUsers' && !$this->EditorGroups()->count()) {
|
|
|
|
$valid->error(
|
|
|
|
_t(
|
|
|
|
'DMSDocument.VALIDATIONERROR_NOEDITORSELECTED',
|
|
|
|
"Selecting 'Only these people' from a editors list needs at least one group selected."
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a reason as to why this document cannot be viewed.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPermissionDeniedReason()
|
|
|
|
{
|
|
|
|
$result = '';
|
|
|
|
|
|
|
|
if ($this->CanViewType == 'LoggedInUsers') {
|
|
|
|
$result = _t('DMSDocument.PERMISSIONDENIEDREASON_LOGINREQUIRED', 'Please log in to view this document');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->CanViewType == 'OnlyTheseUsers') {
|
2017-05-09 06:47:05 +02:00
|
|
|
$result = _t(
|
|
|
|
'DMSDocument.PERMISSIONDENIEDREASON_NOTAUTHORISED',
|
|
|
|
'You are not authorised to view this document'
|
|
|
|
);
|
2017-05-08 05:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2017-05-09 06:47:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an "action panel" task
|
|
|
|
*
|
|
|
|
* @param string $panelKey
|
|
|
|
* @param string $title
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function addActionPanelTask($panelKey, $title)
|
|
|
|
{
|
|
|
|
$this->actionTasks[$panelKey] = $title;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a HTML representation of the action tasks for the CMS
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getActionTaskHtml()
|
|
|
|
{
|
2017-05-22 04:06:06 +02:00
|
|
|
$html = '<div class="field dmsdocment-actions">'
|
2017-05-09 06:47:05 +02:00
|
|
|
. '<label class="left">' . _t('DMSDocument.ACTIONS_LABEL', 'Actions') . '</label>'
|
|
|
|
. '<ul>';
|
|
|
|
|
|
|
|
foreach ($this->actionTasks as $panelKey => $title) {
|
2017-05-22 04:06:06 +02:00
|
|
|
$html .= '<li class="ss-ui-button dmsdocument-action" data-panel="' . $panelKey . '">'
|
2017-05-09 06:47:05 +02:00
|
|
|
. _t('DMSDocument.ACTION_' . strtoupper($panelKey), $title)
|
|
|
|
. '</li>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$html .= '</ul></div>';
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2012-07-27 07:38:20 +02:00
|
|
|
}
|