friendica/mod/starred.php

53 lines
1010 B
PHP
Raw Normal View History

2011-07-04 04:41:04 +02:00
<?php
/**
* @file mod/starred.php
*/
use Friendica\App;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Database\DBA;
use Friendica\Model\Item;
function starred_init(App $a) {
2011-07-04 04:41:04 +02:00
$starred = 0;
$message_id = null;
2011-07-04 04:41:04 +02:00
if (!local_user()) {
2018-12-26 06:40:12 +01:00
exit();
}
if ($a->argc > 1) {
2011-07-04 04:41:04 +02:00
$message_id = intval($a->argv[1]);
}
if (!$message_id) {
2018-12-26 06:40:12 +01:00
exit();
}
2011-07-04 04:41:04 +02:00
$item = Item::selectFirstForUser(local_user(), ['starred'], ['uid' => local_user(), 'id' => $message_id]);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($item)) {
2018-12-26 06:40:12 +01:00
exit();
}
2011-07-04 04:41:04 +02:00
if (!intval($item['starred'])) {
2011-07-04 04:41:04 +02:00
$starred = 1;
}
2011-07-04 04:41:04 +02:00
Item::update(['starred' => $starred], ['id' => $message_id]);
2014-05-29 14:17:37 +02:00
// See if we've been passed a return path to redirect to
$return_path = defaults($_REQUEST, 'return', '');
if ($return_path) {
$rand = '_=' . time();
if (strpos($return_path, '?')) {
$rand = "&$rand";
} else {
$rand = "?$rand";
}
$a->internalRedirect($return_path . $rand);
}
2011-07-04 04:41:04 +02:00
// the json doesn't really matter, it will either be 0 or 1
echo json_encode($starred);
2018-12-26 06:40:12 +01:00
exit();
2011-07-04 04:41:04 +02:00
}