2014-09-04 01:04:43 +02:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-08-08 22:32:11 +02:00
|
|
|
use Friendica\Model\Item;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2018-08-08 22:32:11 +02:00
|
|
|
function ignored_init(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2018-08-08 22:32:11 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($a->argc > 1) {
|
2014-09-04 01:04:43 +02:00
|
|
|
$message_id = intval($a->argv[1]);
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2018-08-08 22:32:11 +02:00
|
|
|
|
2019-01-07 18:51:48 +01:00
|
|
|
if (empty($message_id)) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2014-09-04 01:04:43 +02:00
|
|
|
|
2018-08-08 22:32:11 +02:00
|
|
|
$thread = Item::selectFirstThreadForUser(local_user(), ['uid', 'ignored'], ['iid' => $message_id]);
|
|
|
|
if (!DBA::isResult($thread)) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2014-09-04 01:04:43 +02:00
|
|
|
|
2018-08-15 11:27:11 +02:00
|
|
|
// Numeric values are needed for the json output further below
|
|
|
|
$ignored = ($thread['ignored'] ? 0 : 1);
|
2014-09-04 01:04:43 +02:00
|
|
|
|
2018-08-08 22:32:11 +02:00
|
|
|
if ($thread['uid'] != 0) {
|
|
|
|
DBA::update('thread', ['ignored' => $ignored], ['iid' => $message_id]);
|
|
|
|
} else {
|
|
|
|
DBA::update('user-item', ['ignored' => $ignored], ['iid' => $message_id, 'uid' => local_user()], true);
|
|
|
|
}
|
2014-09-04 01:04:43 +02:00
|
|
|
|
|
|
|
// See if we've been passed a return path to redirect to
|
2018-08-08 22:32:11 +02:00
|
|
|
$return_path = defaults($_REQUEST, 'return', '');
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($return_path) {
|
2014-09-04 01:04:43 +02:00
|
|
|
$rand = '_=' . time();
|
2018-08-08 22:32:11 +02:00
|
|
|
if (strpos($return_path, '?')) {
|
|
|
|
$rand = "&$rand";
|
|
|
|
} else {
|
|
|
|
$rand = "?$rand";
|
|
|
|
}
|
2014-09-04 01:04:43 +02:00
|
|
|
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect($return_path . $rand);
|
2014-09-04 01:04:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// the json doesn't really matter, it will either be 0 or 1
|
|
|
|
|
|
|
|
echo json_encode($ignored);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2014-09-04 01:04:43 +02:00
|
|
|
}
|