-- ------------------------------------------
-- Friendica 2023.03-dev (Giant Rhubarb)
--- DB_UPDATE_VERSION 1503
+-- DB_UPDATE_VERSION 1504
-- ------------------------------------------
CREATE TABLE IF NOT EXISTS `report` (
`id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID',
`uid` mediumint unsigned COMMENT 'Reporting user',
+ `reporter-id` int unsigned COMMENT 'Reporting contact',
`cid` int unsigned NOT NULL COMMENT 'Reported contact',
`comment` text COMMENT 'Report',
`forward` boolean COMMENT 'Forward the report to the remote server',
PRIMARY KEY(`id`),
INDEX `uid` (`uid`),
INDEX `cid` (`cid`),
+ INDEX `reporter-id` (`reporter-id`),
FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
+ FOREIGN KEY (`reporter-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,
FOREIGN KEY (`cid`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='';
Fields
------
-| Field | Description | Type | Null | Key | Default | Extra |
-| ------- | --------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
-| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
-| uid | Reporting user | mediumint unsigned | YES | | NULL | |
-| cid | Reported contact | int unsigned | NO | | NULL | |
-| comment | Report | text | YES | | NULL | |
-| forward | Forward the report to the remote server | boolean | YES | | NULL | |
-| created | | datetime | NO | | 0001-01-01 00:00:00 | |
-| status | Status of the report | tinyint unsigned | YES | | NULL | |
+| Field | Description | Type | Null | Key | Default | Extra |
+| ----------- | --------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
+| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
+| uid | Reporting user | mediumint unsigned | YES | | NULL | |
+| reporter-id | Reporting contact | int unsigned | YES | | NULL | |
+| cid | Reported contact | int unsigned | NO | | NULL | |
+| comment | Report | text | YES | | NULL | |
+| forward | Forward the report to the remote server | boolean | YES | | NULL | |
+| created | | datetime | NO | | 0001-01-01 00:00:00 | |
+| status | Status of the report | tinyint unsigned | YES | | NULL | |
Indexes
------------
-| Name | Fields |
-| ------- | ------ |
-| PRIMARY | id |
-| uid | uid |
-| cid | cid |
+| Name | Fields |
+| ----------- | ----------- |
+| PRIMARY | id |
+| uid | uid |
+| cid | cid |
+| reporter-id | reporter-id |
Foreign Keys
------------
| Field | Target Table | Target Field |
|-------|--------------|--------------|
| uid | [user](help/database/db_user) | uid |
+| reporter-id | [contact](help/database/db_contact) | id |
| cid | [contact](help/database/db_contact) | id |
Return to [database documentation](help/database)
/** @var int|null */
protected $id;
/** @var int ID of the user making a moderation report*/
+ protected $reporterId;
+ /** @var int ID of the contact making a moderation report*/
protected $uid;
/** @var int ID of the contact being reported*/
protected $cid;
/** @var array Optional list of URI IDs of posts supporting the report*/
protected $postUriIds;
- public function __construct(int $uid, int $cid, \DateTime $created, string $comment = '', bool $forward = false, array $postUriIds = [], int $id = null)
+ public function __construct(int $uid = null, int $reporterId, int $cid, \DateTime $created, string $comment = '', bool $forward = false, array $postUriIds = [], int $id = null)
{
$this->uid = $uid;
+ $this->reporterId = $reporterId;
$this->cid = $cid;
$this->created = $created;
$this->comment = $comment;
{
return new Entity\Report(
$row['uid'],
+ $row['reporter-id'],
$row['cid'],
new \DateTime($row['created'] ?? 'now', new \DateTimeZone('UTC')),
$row['comment'],
* @see \Friendica\Module\Api\Mastodon\Reports::post()
*
* @param int $uid
+ * @param int $reporterId
* @param int $cid
* @param string $comment
* @param bool $forward
* @return Entity\Report
* @throws \Exception
*/
- public function createFromReportsRequest(int $uid, int $cid, string $comment = '', bool $forward = false, array $postUriIds = []): Entity\Report
+ public function createFromReportsRequest(int $uid = null, int $reporterId, int $cid, string $comment = '', bool $forward = false, array $postUriIds = []): Entity\Report
{
return new Entity\Report(
$uid,
+ $reporterId,
$cid,
new \DateTime('now', new \DateTimeZone('UTC')),
$comment,
public function save(\Friendica\Moderation\Entity\Report $Report)
{
$fields = [
- 'uid' => $Report->uid,
- 'cid' => $Report->cid,
- 'comment' => $Report->comment,
- 'forward' => $Report->forward,
+ 'uid' => $Report->uid,
+ 'reporter-id' => $Report->reporterId,
+ 'cid' => $Report->cid,
+ 'comment' => $Report->comment,
+ 'forward' => $Report->forward,
];
$postUriIds = $Report->postUriIds;
throw new HTTPException\NotFoundException('Account ' . $request['account_id'] . ' not found');
}
- $report = $this->reportFactory->createFromReportsRequest(self::getCurrentUserID(), $request['account_id'], $request['comment'], $request['forward'], $request['status_ids']);
+ $report = $this->reportFactory->createFromReportsRequest(self::getCurrentUserID(), Contact::getPublicIdByUserId(self::getCurrentUserID()), $request['account_id'], $request['comment'], $request['forward'], $request['status_ids']);
$this->reportRepo->save($report);
return;
}
+ $reporter_id = Contact::getIdForURL($activity['actor']);
+ if (empty($account_id)) {
+ Logger::info('Unknown actor', ['activity' => $activity]);
+ Queue::remove($activity);
+ return;
+ }
+
$status_ids = $activity['object_ids'];
array_shift($status_ids);
}
}
- // @todo We should store the actor
- $report = DI::reportFactory()->createFromReportsRequest(0, $account_id, $activity['content'], false, $uri_ids);
+ $report = DI::reportFactory()->createFromReportsRequest(null, $reporter_id, $account_id, $activity['content'], false, $uri_ids);
DI::report()->save($report);
- Logger::info('Stored report', ['account_id' => $account_id, 'comment' => $activity['content'], 'status_ids' => $status_ids]);
+ Logger::info('Stored report', ['reporter' => $reporter_id, 'account_id' => $account_id, 'comment' => $activity['content'], 'status_ids' => $status_ids]);
}
/**
use Friendica\Database\DBA;
if (!defined('DB_UPDATE_VERSION')) {
- define('DB_UPDATE_VERSION', 1503);
+ define('DB_UPDATE_VERSION', 1504);
}
return [
"fields" => [
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
"uid" => ["type" => "mediumint unsigned", "foreign" => ["user" => "uid"], "comment" => "Reporting user"],
+ "reporter-id" => ["type" => "int unsigned", "foreign" => ["contact" => "id"], "comment" => "Reporting contact"],
"cid" => ["type" => "int unsigned", "not null" => "1", "foreign" => ["contact" => "id"], "comment" => "Reported contact"],
"comment" => ["type" => "text", "comment" => "Report"],
"forward" => ["type" => "boolean", "comment" => "Forward the report to the remote server"],
"PRIMARY" => ["id"],
"uid" => ["uid"],
"cid" => ["cid"],
+ "reporter-id" => ["reporter-id"],
]
],
"report-post" => [
return [
'default' => [
'row' => [
- 'id' => 11,
- 'uid' => 12,
- 'cid' => 13,
- 'comment' => '',
- 'forward' => false,
- 'created' => null
+ 'id' => 11,
+ 'uid' => 12,
+ 'reporter-id' => 14,
+ 'cid' => 13,
+ 'comment' => '',
+ 'forward' => false,
+ 'created' => null
],
'postUriIds' => [],
'assertion' => new Entity\Report(
12,
+ 14,
13,
new \DateTime('now', new \DateTimeZone('UTC')),
'',
],
'full' => [
'row' => [
- 'id' => 11,
- 'uid' => 12,
- 'cid' => 13,
- 'comment' => 'Report',
- 'forward' => true,
- 'created' => '2021-10-12 12:23:00'
+ 'id' => 11,
+ 'uid' => 12,
+ 'reporter-id' => 14,
+ 'cid' => 13,
+ 'comment' => 'Report',
+ 'forward' => true,
+ 'created' => '2021-10-12 12:23:00'
],
'postUriIds' => [89, 90],
'assertion' => new Entity\Report(
12,
+ 14,
13,
new \DateTime('2021-10-12 12:23:00', new \DateTimeZone('UTC')),
'Report',
$report->id
);
self::assertEquals($assertion->uid, $report->uid);
+ self::assertEquals($assertion->reporterId, $report->reporterId);
self::assertEquals($assertion->cid, $report->cid);
self::assertEquals($assertion->comment, $report->comment);
self::assertEquals($assertion->forward, $report->forward);
{
return [
'default' => [
- 'uid' => 12,
- 'cid' => 13,
- 'comment' => '',
- 'forward' => false,
- 'postUriIds' => [],
- 'assertion' => new Entity\Report(
+ 'uid' => 12,
+ 'reporter-id' => 14,
+ 'cid' => 13,
+ 'comment' => '',
+ 'forward' => false,
+ 'postUriIds' => [],
+ 'assertion' => new Entity\Report(
12,
+ 14,
13,
new \DateTime('now', new \DateTimeZone('UTC')),
'',
),
],
'full' => [
- 'uid' => 12,
- 'cid' => 13,
- 'comment' => 'Report',
- 'forward' => true,
- 'postUriIds' => [89, 90],
- 'assertion' => new Entity\Report(
+ 'uid' => 12,
+ 'reporter-id' => 14,
+ 'cid' => 13,
+ 'comment' => 'Report',
+ 'forward' => true,
+ 'postUriIds' => [89, 90],
+ 'assertion' => new Entity\Report(
12,
+ 14,
13,
new \DateTime('now', new \DateTimeZone('UTC')),
'Report',
/**
* @dataProvider dataCreateFromReportsRequest
*/
- public function testCreateFromReportsRequest(int $uid, int $cid, string $comment, bool $forward, array $postUriIds, Entity\Report $assertion)
+ public function testCreateFromReportsRequest(int $uid, int $reporter, int $cid, string $comment, bool $forward, array $postUriIds, Entity\Report $assertion)
{
$factory = new Factory\Report(new NullLogger());
- $this->assertReport($factory->createFromReportsRequest($uid, $cid, $comment, $forward, $postUriIds), $assertion);
+ $this->assertReport($factory->createFromReportsRequest($uid, $reporter, $cid, $comment, $forward, $postUriIds), $assertion);
}
}