2015-06-11 12:06:59 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
|
|
|
//
|
|
|
|
// 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");
|
|
|
|
include("../inc/inc.LogInit.php");
|
2010-10-29 13:19:51 +00:00
|
|
|
include("../inc/inc.DBInit.php");
|
2015-06-11 12:06:59 +00:00
|
|
|
include("../inc/inc.Language.php");
|
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2012-08-29 20:37:22 +00:00
|
|
|
/* Check if the form data comes for a trusted request */
|
|
|
|
if(!checkFormKey('removedocumentlink')) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_request_token"))),getMLText("invalid_request_token"));
|
|
|
|
}
|
|
|
|
|
2015-06-11 12:06:59 +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"];
|
2010-11-12 22:47:41 +00:00
|
|
|
$document = $dms->getDocument($documentid);
|
2015-06-11 12:06:59 +00:00
|
|
|
|
|
|
|
if (!is_object($document)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
|
|
|
}
|
|
|
|
|
2012-08-29 20:37:22 +00:00
|
|
|
if (!isset($_POST["linkid"]) || !is_numeric($_POST["linkid"]) || intval($_POST["linkid"])<1) {
|
2015-06-11 12:06:59 +00:00
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_link_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2015-06-11 12:06:59 +00:00
|
|
|
|
|
|
|
$linkid = $_POST["linkid"];
|
2010-11-12 22:47:41 +00:00
|
|
|
$link = $document->getDocumentLink($linkid);
|
2015-06-11 12:06:59 +00:00
|
|
|
|
|
|
|
if (!is_object($link)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("invalid_link_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2015-06-11 12:06:59 +00:00
|
|
|
|
|
|
|
$responsibleUser = $link->getUser();
|
2010-10-29 13:19:51 +00:00
|
|
|
$accessMode = $document->getAccessMode($user);
|
2015-06-11 12:06:59 +00:00
|
|
|
|
|
|
|
if (
|
|
|
|
($accessMode < M_READ)
|
|
|
|
|| (($accessMode == M_READ) && ($responsibleUser->getID() != $user->getID()))
|
|
|
|
|| (($accessMode > M_READ) && (!$user->isAdmin()) && ($responsibleUser->getID() != $user->getID()) && !$link->isPublic())
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("access_denied"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
2015-06-11 12:06:59 +00:00
|
|
|
|
|
|
|
if (!$document->removeDocumentLink($linkid)) {
|
|
|
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("error_occured"));
|
|
|
|
}
|
|
|
|
|
2010-10-29 13:19:51 +00:00
|
|
|
add_log_line("?documentid=".$documentid."&linkid=".$linkid);
|
2015-06-11 12:06:59 +00:00
|
|
|
|
2015-06-09 06:59:25 +00:00
|
|
|
header("Location:../out/out.ViewDocument.php?documentid=".$documentid."¤ttab=links");
|
2015-06-11 12:06:59 +00:00
|
|
|
?>
|