2021-12-16 22:44:50 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2021-12-16 22:44:50 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\Api\Twitter;
|
|
|
|
|
2021-12-19 08:22:16 +00:00
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Database\Database;
|
2021-12-16 22:44:50 +00:00
|
|
|
use Friendica\Database\DBA;
|
2021-12-19 08:22:16 +00:00
|
|
|
use Friendica\Factory\Api\Twitter\DirectMessage;
|
2021-12-16 22:44:50 +00:00
|
|
|
use Friendica\Model\Contact;
|
2021-12-19 08:22:16 +00:00
|
|
|
use Friendica\Module\Api\ApiResponse;
|
2021-12-16 22:44:50 +00:00
|
|
|
use Friendica\Module\BaseApi;
|
2021-12-19 08:22:16 +00:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2021-12-16 22:54:48 +00:00
|
|
|
|
2021-12-16 22:44:50 +00:00
|
|
|
abstract class DirectMessagesEndpoint extends BaseApi
|
|
|
|
{
|
2021-12-19 08:22:16 +00:00
|
|
|
/** @var Database */
|
|
|
|
private $dba;
|
|
|
|
|
|
|
|
/** @var DirectMessage */
|
|
|
|
private $directMessage;
|
|
|
|
|
|
|
|
public function __construct(DirectMessage $directMessage, Database $dba, App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
|
|
|
|
{
|
|
|
|
parent::__construct($app, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
|
|
|
|
$this->dba = $dba;
|
|
|
|
$this->directMessage = $directMessage;
|
|
|
|
}
|
|
|
|
|
2021-12-16 22:44:50 +00:00
|
|
|
/**
|
2021-12-17 14:55:16 +00:00
|
|
|
* Handles a direct messages endpoint with the given condition
|
2021-12-17 15:27:38 +00:00
|
|
|
*
|
2021-12-17 14:55:16 +00:00
|
|
|
* @param array $request
|
|
|
|
* @param int $uid
|
|
|
|
* @param array $condition
|
2022-08-12 12:00:02 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2021-12-16 22:44:50 +00:00
|
|
|
*/
|
|
|
|
protected function getMessages(array $request, int $uid, array $condition)
|
|
|
|
{
|
|
|
|
// params
|
2022-01-16 14:04:20 +00:00
|
|
|
$count = $this->getRequestValue($request, 'count', 20, 1, 100);
|
|
|
|
$page = $this->getRequestValue($request, 'page', 1, 1);
|
2022-01-16 15:03:01 +00:00
|
|
|
$since_id = $this->getRequestValue($request, 'since_id', 0, 0);
|
|
|
|
$max_id = $this->getRequestValue($request, 'max_id', 0, 0);
|
|
|
|
$min_id = $this->getRequestValue($request, 'min_id', 0, 0);
|
2022-01-16 14:04:20 +00:00
|
|
|
$verbose = $this->getRequestValue($request, 'friendica_verbose', false);
|
2021-12-16 22:44:50 +00:00
|
|
|
|
|
|
|
// pagination
|
|
|
|
$start = max(0, ($page - 1) * $count);
|
|
|
|
|
2021-12-16 22:51:47 +00:00
|
|
|
$params = ['order' => ['id' => true], 'limit' => [$start, $count]];
|
2021-12-16 22:44:50 +00:00
|
|
|
|
|
|
|
if (!empty($max_id)) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`id` < ?", $max_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($since_id)) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`id` > ?", $since_id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($min_id)) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`id` > ?", $min_id]);
|
|
|
|
|
|
|
|
$params['order'] = ['id'];
|
|
|
|
}
|
|
|
|
|
2022-07-28 22:36:07 +00:00
|
|
|
$cid = BaseApi::getContactIDForSearchterm($this->getRequestValue($request, 'screen_name', ''), $this->getRequestValue($request, 'profileurl', ''), $this->getRequestValue($request, 'user_id', 0), 0);
|
2021-12-16 22:44:50 +00:00
|
|
|
if (!empty($cid)) {
|
|
|
|
$cdata = Contact::getPublicAndUserContactID($cid, $uid);
|
|
|
|
if (!empty($cdata['user'])) {
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`contact-id` = ?", $cdata['user']]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$condition = DBA::mergeConditions($condition, ["`uid` = ?", $uid]);
|
|
|
|
|
2021-12-19 08:22:16 +00:00
|
|
|
$mails = $this->dba->selectToArray('mail', ['id'], $condition, $params);
|
2021-12-16 22:44:50 +00:00
|
|
|
if ($verbose && !DBA::isResult($mails)) {
|
|
|
|
$answer = ['result' => 'error', 'message' => 'no mails available'];
|
2023-09-22 14:14:46 +00:00
|
|
|
$this->response->addFormattedContent('direct-messages', ['direct_message' => $answer], $this->parameters['extension'] ?? null);
|
2021-12-19 08:22:16 +00:00
|
|
|
return;
|
2021-12-16 22:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$ids = array_column($mails, 'id');
|
|
|
|
|
|
|
|
if (!empty($min_id)) {
|
|
|
|
$ids = array_reverse($ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
$ret = [];
|
|
|
|
foreach ($ids as $id) {
|
2022-07-28 22:36:07 +00:00
|
|
|
$ret[] = $this->directMessage->createFromMailId($id, $uid, $this->getRequestValue($request, 'getText', ''));
|
2021-12-16 22:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self::setLinkHeader();
|
|
|
|
|
2023-09-22 14:14:46 +00:00
|
|
|
$this->response->addFormattedContent('direct-messages', ['direct_message' => $ret], $this->parameters['extension'] ?? null, Contact::getPublicIdByUserId($uid));
|
2021-12-16 22:44:50 +00:00
|
|
|
}
|
|
|
|
}
|