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