2011-07-04 04:41:04 +02:00
|
|
|
<?php
|
2018-02-05 13:47:06 +01:00
|
|
|
/**
|
|
|
|
* @file mod/starred.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2018-02-05 13:47:06 +01:00
|
|
|
use Friendica\Model\Item;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function starred_init(App $a) {
|
2011-07-04 04:41:04 +02:00
|
|
|
$starred = 0;
|
2018-02-14 06:07:26 +01:00
|
|
|
$message_id = null;
|
2011-07-04 04:41:04 +02:00
|
|
|
|
2018-06-21 08:21:51 +02:00
|
|
|
if (!local_user()) {
|
2011-07-04 04:41:04 +02:00
|
|
|
killme();
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
|
|
|
if ($a->argc > 1) {
|
2011-07-04 04:41:04 +02:00
|
|
|
$message_id = intval($a->argv[1]);
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2018-06-21 08:21:51 +02:00
|
|
|
if (!$message_id) {
|
2011-07-04 04:41:04 +02:00
|
|
|
killme();
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-07-04 04:41:04 +02:00
|
|
|
|
2018-06-24 12:48:29 +02:00
|
|
|
$item = Item::selectFirstForUser(local_user(), ['starred'], ['uid' => local_user(), 'id' => $message_id]);
|
2018-06-21 08:21:51 +02:00
|
|
|
if (!DBM::is_result($item)) {
|
2011-07-04 04:41:04 +02:00
|
|
|
killme();
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2011-07-04 04:41:04 +02:00
|
|
|
|
2018-06-21 08:21:51 +02:00
|
|
|
if (!intval($item['starred'])) {
|
2011-07-04 04:41:04 +02:00
|
|
|
$starred = 1;
|
2016-12-20 21:31:05 +01:00
|
|
|
}
|
2011-07-04 04:41:04 +02:00
|
|
|
|
2018-02-06 13:40:22 +01:00
|
|
|
Item::update(['starred' => $starred], ['id' => $message_id]);
|
2014-05-29 14:17:37 +02:00
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
// See if we've been passed a return path to redirect to
|
2018-06-21 08:21:51 +02:00
|
|
|
$return_path = (x($_REQUEST,'return') ? $_REQUEST['return'] : '');
|
2016-12-20 21:31:05 +01:00
|
|
|
if ($return_path) {
|
2013-01-26 20:52:21 +01:00
|
|
|
$rand = '_=' . time();
|
2016-12-20 21:31:05 +01:00
|
|
|
if (strpos($return_path, '?')) {
|
|
|
|
$rand = "&$rand";
|
2016-12-21 23:04:09 +01:00
|
|
|
} else {
|
2016-12-20 21:31:05 +01:00
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
2013-01-26 20:52:21 +01:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl() . "/" . $return_path . $rand);
|
2013-01-26 20:52:21 +01:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
killme();
|
|
|
|
}
|