118 lines
3.8 KiB
PHP
118 lines
3.8 KiB
PHP
<?php
|
|
namespace Misuzu;
|
|
|
|
use DateTimeInterface;
|
|
use RuntimeException;
|
|
use Index\DateTime;
|
|
use Index\XArray;
|
|
use Misuzu\Changelog\Changelog;
|
|
|
|
$authInfo = $msz->getAuthInfo();
|
|
if(!$authInfo->getPerms('global')->check(Perm::G_CL_CHANGES_MANAGE))
|
|
Template::throwError(403);
|
|
|
|
$changeActions = [];
|
|
foreach(Changelog::ACTIONS as $action)
|
|
$changeActions[$action] = Changelog::actionText($action);
|
|
|
|
$changelog = $msz->getChangelog();
|
|
$changeId = (string)filter_input(INPUT_GET, 'c', FILTER_SANITIZE_NUMBER_INT);
|
|
$changeInfo = null;
|
|
$changeTagIds = [];
|
|
$tagInfos = $changelog->getTags();
|
|
|
|
if(empty($changeId))
|
|
$isNew = true;
|
|
else
|
|
try {
|
|
$isNew = false;
|
|
$changeInfo = $changelog->getChange($changeId);
|
|
$changeTagIds = XArray::select($changelog->getTags(changeInfo: $changeInfo), fn($tagInfo) => $tagInfo->getId());
|
|
} catch(RuntimeException $ex) {
|
|
Template::throwError(404);
|
|
}
|
|
|
|
if($_SERVER['REQUEST_METHOD'] === 'GET' && !empty($_GET['delete'])) {
|
|
if(!CSRF::validateRequest())
|
|
Template::throwError(403);
|
|
|
|
$changelog->deleteChange($changeInfo);
|
|
$msz->createAuditLog('CHANGELOG_ENTRY_DELETE', [$changeInfo->getId()]);
|
|
url_redirect('manage-changelog-changes');
|
|
return;
|
|
}
|
|
|
|
// make errors not echos lol
|
|
while($_SERVER['REQUEST_METHOD'] === 'POST' && CSRF::validateRequest()) {
|
|
$action = trim((string)filter_input(INPUT_POST, 'cl_action'));
|
|
$summary = trim((string)filter_input(INPUT_POST, 'cl_summary'));
|
|
$body = trim((string)filter_input(INPUT_POST, 'cl_body'));
|
|
$userId = (int)filter_input(INPUT_POST, 'cl_user', FILTER_SANITIZE_NUMBER_INT);
|
|
$createdAt = trim((string)filter_input(INPUT_POST, 'cl_created'));
|
|
$tags = filter_input(INPUT_POST, 'cl_tags', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY);
|
|
|
|
if($userId < 1) $userId = null;
|
|
else $userId = (string)$userId;
|
|
|
|
if(empty($createdAt))
|
|
$createdAt = null;
|
|
else {
|
|
$createdAt = DateTime::createFromFormat(DateTimeInterface::ATOM, $createdAt . ':00Z');
|
|
if($createdAt->getUnixTimeSeconds() < 0)
|
|
$createdAt = null;
|
|
}
|
|
|
|
if($isNew) {
|
|
$changeInfo = $changelog->createChange($action, $summary, $body, $userId, $createdAt);
|
|
} else {
|
|
if($action === $changeInfo->getAction())
|
|
$action = null;
|
|
if($summary === $changeInfo->getSummary())
|
|
$summary = null;
|
|
if($body === $changeInfo->getBody())
|
|
$body = null;
|
|
if($createdAt !== null && $createdAt->equals($changeInfo->getCreatedAt()))
|
|
$createdAt = null;
|
|
$updateUserInfo = $userId !== $changeInfo->getUserId();
|
|
|
|
if($action !== null || $summary !== null || $body !== null || $createdAt !== null || $updateUserInfo)
|
|
$changelog->updateChange($changeInfo, $action, $summary, $body, $updateUserInfo, $userId, $createdAt);
|
|
}
|
|
|
|
if(!empty($tags)) {
|
|
$tCurrent = $changeTagIds;
|
|
$tApply = $tags;
|
|
$tRemove = [];
|
|
|
|
foreach($tCurrent as $tag)
|
|
if(!in_array($tag, $tApply)) {
|
|
$tRemove[] = $tag;
|
|
$changelog->removeTagFromChange($changeInfo, $tag);
|
|
}
|
|
|
|
$tCurrent = array_diff($tCurrent, $tRemove);
|
|
|
|
foreach($tApply as $tag)
|
|
if(!in_array($tag, $tCurrent)) {
|
|
$changelog->addTagToChange($changeInfo, $tag);
|
|
$tCurrent[] = $tag;
|
|
}
|
|
}
|
|
|
|
$msz->createAuditLog(
|
|
$isNew ? 'CHANGELOG_ENTRY_CREATE' : 'CHANGELOG_ENTRY_EDIT',
|
|
[$changeInfo->getId()]
|
|
);
|
|
|
|
url_redirect('manage-changelog-change', ['change' => $changeInfo->getId()]);
|
|
return;
|
|
}
|
|
|
|
Template::render('manage.changelog.change', [
|
|
'change_new' => $isNew,
|
|
'change_info' => $changeInfo,
|
|
'change_info_tags' => $changeTagIds,
|
|
'change_tags' => $tagInfos,
|
|
'change_actions' => $changeActions,
|
|
'change_author_id' => $authInfo->getUserInfo(),
|
|
]);
|