Skip to content

Commit

Permalink
New hooks for news management
Browse files Browse the repository at this point in the history
Can be used for example as discord hooks
  • Loading branch information
slawkens committed Nov 12, 2024
1 parent 85bc234 commit 36bd3eb
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 34 deletions.
107 changes: 73 additions & 34 deletions system/src/News.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,26 +37,27 @@ static public function add($title, $body, $type, $category, $player_id, $comment
if(!self::verify($title, $body, $article_text, $article_image, $errors))
return false;

ModelsNews::create([
'title' => $title,
'body' => $body,
'type' => $type,
'date' => time(),
'category' => $category,
'player_id' => isset($player_id) ? $player_id : 0,
$currentTime = time();

$params = [
'title' => $title, 'body' => $body,
'type' => $type, 'category' => $category,
'date' => $currentTime,
'player_id' => $player_id ?? 0,
'comments' => $comments,
'article_text' => ($type == 3 ? $article_text : ''),
'article_image' => ($type == 3 ? $article_image : '')
]);
];

global $hooks;
if (!$hooks->trigger(HOOK_ADMIN_NEWS_ADD_PRE, $params)) {
return false;
}

$newsModel = ModelsNews::create($params);

$hooks->trigger(HOOK_ADMIN_NEWS_ADD,
[
'title' => $title, 'body' => $body,
'type' => $type, 'category' => $category,
'player_id' => $player_id, 'comments' => $comments,
'article_text' => $article_text, 'article_image' => $article_image,
]
$params + ['id' => $newsModel->id],
);

self::clearCache();
Expand All @@ -69,30 +70,55 @@ static public function get($id) {

static public function update($id, $title, $body, $type, $category, $player_id, $comments, $article_text, $article_image, &$errors)
{
if(!self::verify($title, $body, $article_text, $article_image, $errors))
if(!self::verify($title, $body, $article_text, $article_image, $errors)) {
return false;
}

$currentTime = time();

ModelsNews::where('id', $id)->update([
'title' => $title,
'body' => $body,
'type' => $type,
'category' => $category,
'last_modified_by' => isset($player_id) ? $player_id : 0,
'last_modified_date' => time(),
$params = [
'id' => $id,
'title' => $title, 'body' => $body,
'type' => $type, 'category' => $category,
'last_modified_by' => $player_id ?? 0, 'last_modified_date' => $currentTime,
'comments' => $comments,
'article_text' => $article_text,
'article_image' => $article_image
]);
'article_text' => ($type == 3 ? $article_text : ''),
'article_image' => ($type == 3 ? $article_image : ''),
];

global $hooks;
if (!$hooks->trigger(HOOK_ADMIN_NEWS_UPDATE_PRE, $params)) {
return false;
}

unset($params['id']);

ModelsNews::where('id', $id)->update($params);

$hooks->trigger(HOOK_ADMIN_NEWS_UPDATE,
$params + ['id' => $id]
);

self::clearCache();
return true;
}

static public function delete($id, &$errors)
{
global $hooks;

if(isset($id)) {
$row = ModelsNews::find($id);
if($row) {
if (!$row->delete()) {
$params = ['id' => $id];

if (!$hooks->trigger(HOOK_ADMIN_NEWS_DELETE_PRE, $params)) {
return false;
}

if ($row->delete()) {
$hooks->trigger(HOOK_ADMIN_NEWS_DELETE, $params);
} else {
$errors[] = 'Fail during delete News.';
}
}
Expand All @@ -114,22 +140,35 @@ static public function delete($id, &$errors)

static public function toggleHide($id, &$errors, &$status)
{
if(isset($id))
{
global $hooks;

if(isset($id)) {
$row = ModelsNews::find($id);
if($row)
{
$row->hide = $row->hide == 1 ? 0 : 1;
if (!$row->save()) {
if($row) {
$row->hide = ($row->hide == 1 ? 0 : 1);

$params = ['hide' => $row->hide];

if (!$hooks->trigger(HOOK_ADMIN_NEWS_TOGGLE_HIDE_PRE, $params)) {
return false;
}

if ($row->save()) {
$hooks->trigger(HOOK_ADMIN_NEWS_TOGGLE_HIDE, $params);
}
else {
$errors[] = 'Fail during toggle hide News.';
}

$status = $row->hide;
}
else
else {
$errors[] = 'News with id ' . $id . ' does not exists.';
}
}
else
else {
$errors[] = 'News id not set.';
}

if(count($errors)) {
return false;
Expand Down
7 changes: 7 additions & 0 deletions system/src/global.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,14 @@
define('HOOK_ADMIN_BODY_END', ++$i);
define('HOOK_ADMIN_BEFORE_PAGE', ++$i);
define('HOOK_ADMIN_MENU', ++$i);
define('HOOK_ADMIN_NEWS_ADD_PRE', ++$i);
define('HOOK_ADMIN_NEWS_ADD', ++$i);
define('HOOK_ADMIN_NEWS_UPDATE_PRE', ++$i);
define('HOOK_ADMIN_NEWS_UPDATE', ++$i);
define('HOOK_ADMIN_NEWS_DELETE_PRE', ++$i);
define('HOOK_ADMIN_NEWS_DELETE', ++$i);
define('HOOK_ADMIN_NEWS_TOGGLE_HIDE_PRE', ++$i);
define('HOOK_ADMIN_NEWS_TOGGLE_HIDE', ++$i);
define('HOOK_ADMIN_LOGIN_AFTER_ACCOUNT', ++$i);
define('HOOK_ADMIN_LOGIN_AFTER_PASSWORD', ++$i);
define('HOOK_ADMIN_LOGIN_AFTER_SIGN_IN', ++$i);
Expand Down

0 comments on commit 36bd3eb

Please sign in to comment.