2021-04-02 17:20:02 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2021 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Libraries;
|
|
|
|
|
2021-05-12 14:00:25 +00:00
|
|
|
use ActivityPub\Objects\NoteObject as ActivityPubNoteObject;
|
|
|
|
use App\Entities\Note;
|
|
|
|
|
|
|
|
class NoteObject extends ActivityPubNoteObject
|
2021-04-02 17:20:02 +00:00
|
|
|
{
|
2021-06-08 09:52:11 +00:00
|
|
|
/**
|
|
|
|
* @param Note $note
|
|
|
|
*/
|
|
|
|
public function __construct($note)
|
2021-04-02 17:20:02 +00:00
|
|
|
{
|
|
|
|
parent::__construct($note);
|
|
|
|
|
|
|
|
if ($note->episode_id) {
|
|
|
|
$this->content =
|
|
|
|
'<a href="' .
|
|
|
|
$note->episode->link .
|
|
|
|
'" target="_blank" rel="noopener noreferrer">' .
|
|
|
|
$note->episode->title .
|
|
|
|
'</a><br/>' .
|
|
|
|
$note->message_html;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|