2013-02-02 15:54:27 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
2016-08-09 05:34:30 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2013-02-02 15:54:27 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
include("../inc/inc.Settings.php");
|
2016-07-27 06:57:51 +00:00
|
|
|
include("../inc/inc.Utils.php");
|
2022-11-09 05:40:50 +00:00
|
|
|
include("../inc/inc.LogInit.php");
|
2013-02-02 15:54:27 +00:00
|
|
|
include("../inc/inc.Language.php");
|
2014-12-08 13:47:32 +00:00
|
|
|
include("../inc/inc.Init.php");
|
|
|
|
include("../inc/inc.Extension.php");
|
|
|
|
include("../inc/inc.DBInit.php");
|
2013-02-02 15:54:27 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2018-01-16 17:11:50 +00:00
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
2018-03-20 10:16:13 +00:00
|
|
|
//$controller = Controller::factory($tmp[1], array('dms'=>$dms, 'user'=>$user));
|
2018-01-16 17:11:50 +00:00
|
|
|
$accessop = new SeedDMS_AccessOperation($dms, $user, $settings);
|
|
|
|
if(!$accessop->check_controller_access($tmp[1] /*$controller*/)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("access_denied"));
|
|
|
|
}
|
2021-01-25 09:09:47 +00:00
|
|
|
|
2021-01-25 08:07:49 +00:00
|
|
|
/* Check if the form data comes from a trusted request */
|
|
|
|
if(!checkFormKey('overridecontentstatus')) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_request_token"))),getMLText("invalid_request_token"));
|
|
|
|
}
|
|
|
|
|
2013-02-02 15:54:27 +00:00
|
|
|
if (!isset($_POST["documentid"]) || !is_numeric($_POST["documentid"]) || intval($_POST["documentid"])<1) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
|
|
|
}
|
|
|
|
$documentid = $_POST["documentid"];
|
|
|
|
$document = $dms->getDocument($documentid);
|
|
|
|
if (!is_object($document)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
|
|
|
}
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if ($document->getAccessMode($user) < M_ALL) {
|
2013-02-02 15:54:27 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("access_denied"));
|
|
|
|
}
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if (!isset($_POST["version"]) || !is_numeric($_POST["version"]) || intval($_POST["version"])<1) {
|
2013-02-02 15:54:27 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_version"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2013-02-02 15:54:27 +00:00
|
|
|
|
|
|
|
$version = $_POST["version"];
|
2010-10-29 13:19:51 +00:00
|
|
|
$content = $document->getContentByVersion($version);
|
2013-02-02 15:54:27 +00:00
|
|
|
|
|
|
|
if (!is_object($content)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_version"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2013-02-02 15:54:27 +00:00
|
|
|
|
|
|
|
if (!isset($_POST["overrideStatus"]) || !is_numeric($_POST["overrideStatus"]) ||
|
2019-10-18 05:24:33 +00:00
|
|
|
(intval($_POST["overrideStatus"]) != S_RELEASED && intval($_POST["overrideStatus"]) != S_OBSOLETE && intval($_POST["overrideStatus"]) != S_DRAFT && intval($_POST["overrideStatus"]) != S_NEEDS_CORRECTION)) {
|
2013-02-02 15:54:27 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_status"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2013-02-02 15:54:27 +00:00
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
$overallStatus = $content->getStatus();
|
|
|
|
|
2019-08-17 06:00:06 +00:00
|
|
|
// status change control, setting a status to obsolete is alwasy allowed
|
|
|
|
if(intval($_POST["overrideStatus"]) != S_OBSOLETE)
|
2013-02-02 15:54:27 +00:00
|
|
|
if ($overallStatus["status"] == S_REJECTED || $overallStatus["status"] == S_EXPIRED || $overallStatus["status"] == S_DRAFT_REV || $overallStatus["status"] == S_DRAFT_APP || $overallStatus["status"] == S_IN_WORKFLOW) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("cannot_change_final_states"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2013-02-02 15:54:27 +00:00
|
|
|
|
|
|
|
$overrideStatus = $_POST["overrideStatus"];
|
|
|
|
$comment = $_POST["comment"];
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
if ($overrideStatus != $overallStatus["status"]) {
|
|
|
|
|
|
|
|
if (!$content->setStatus($overrideStatus, $comment, $user)) {
|
2013-02-02 15:54:27 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("error_occured"));
|
2010-11-18 13:53:26 +00:00
|
|
|
} else {
|
|
|
|
// Send notification to subscribers.
|
|
|
|
if($notifier) {
|
2021-05-19 18:41:50 +00:00
|
|
|
$notifier->sendChangedDocumentStatusMail($content, $user, $overallStatus["status"]);
|
2010-11-18 13:53:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-02-02 15:54:27 +00:00
|
|
|
}
|
2010-10-29 13:19:51 +00:00
|
|
|
add_log_line("?documentid=".$documentid);
|
|
|
|
header("Location:../out/out.DocumentVersionDetail.php?documentid=".$documentid."&version=".$version);
|
2013-02-02 15:54:27 +00:00
|
|
|
|
|
|
|
?>
|