237 lines
5.3 KiB
PHP
237 lines
5.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
*
|
|
* @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\Object;
|
|
|
|
use Friendica\Core\Logger;
|
|
use Friendica\Core\Protocol;
|
|
use Friendica\DI;
|
|
use Friendica\Protocol\Activity;
|
|
use Friendica\Util\Security;
|
|
|
|
/**
|
|
* A list of threads
|
|
*
|
|
* We should think about making this a SPL Iterator
|
|
*/
|
|
class Thread
|
|
{
|
|
private $parents = [];
|
|
private $mode = null;
|
|
private $writable = false;
|
|
private $profile_owner = 0;
|
|
private $preview = false;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param string $mode The mode
|
|
* @param boolean $preview Are we in the preview mode?
|
|
* @param boolean $writable Override the writable check
|
|
* @throws \Exception
|
|
*/
|
|
public function __construct($mode, $preview, $writable = false)
|
|
{
|
|
$this->setMode($mode, $writable);
|
|
$this->preview = $preview;
|
|
}
|
|
|
|
/**
|
|
* Set the mode we'll be displayed on
|
|
*
|
|
* @param string $mode The mode to set
|
|
* @param boolean $writable Override the writable check
|
|
*
|
|
* @return void
|
|
* @throws \Exception
|
|
*/
|
|
private function setMode($mode, $writable)
|
|
{
|
|
if ($this->getMode() == $mode) {
|
|
return;
|
|
}
|
|
|
|
$a = DI::app();
|
|
|
|
switch ($mode) {
|
|
case 'network':
|
|
case 'notes':
|
|
$this->profile_owner = local_user();
|
|
$this->writable = true;
|
|
break;
|
|
case 'profile':
|
|
$this->profile_owner = $a->profile['uid'];
|
|
$this->writable = Security::canWriteToUserWall($this->profile_owner);
|
|
break;
|
|
case 'display':
|
|
$this->profile_owner = $a->profile['uid'];
|
|
$this->writable = Security::canWriteToUserWall($this->profile_owner) || $writable;
|
|
break;
|
|
case 'community':
|
|
$this->profile_owner = 0;
|
|
$this->writable = $writable;
|
|
break;
|
|
case 'contacts':
|
|
$this->profile_owner = 0;
|
|
$this->writable = $writable;
|
|
break;
|
|
default:
|
|
Logger::log('[ERROR] Conversation::setMode : Unhandled mode ('. $mode .').', Logger::DEBUG);
|
|
return false;
|
|
break;
|
|
}
|
|
$this->mode = $mode;
|
|
}
|
|
|
|
/**
|
|
* Get mode
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getMode()
|
|
{
|
|
return $this->mode;
|
|
}
|
|
|
|
/**
|
|
* Check if page is writable
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function isWritable()
|
|
{
|
|
return $this->writable;
|
|
}
|
|
|
|
/**
|
|
* Check if page is a preview
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function isPreview()
|
|
{
|
|
return $this->preview;
|
|
}
|
|
|
|
/**
|
|
* Get profile owner
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getProfileOwner()
|
|
{
|
|
return $this->profile_owner;
|
|
}
|
|
|
|
/**
|
|
* Add a thread to the conversation
|
|
*
|
|
* @param Post $item The item to insert
|
|
*
|
|
* @return mixed The inserted item on success
|
|
* false on failure
|
|
* @throws \Exception
|
|
*/
|
|
public function addParent(Post $item)
|
|
{
|
|
$item_id = $item->getId();
|
|
|
|
if (!$item_id) {
|
|
Logger::log('[ERROR] Conversation::addThread : Item has no ID!!', Logger::DEBUG);
|
|
return false;
|
|
}
|
|
|
|
if ($this->getParent($item->getId())) {
|
|
Logger::log('[WARN] Conversation::addThread : Thread already exists ('. $item->getId() .').', Logger::DEBUG);
|
|
return false;
|
|
}
|
|
|
|
/*
|
|
* Only add will be displayed
|
|
*/
|
|
if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
|
|
Logger::log('[WARN] Conversation::addThread : Thread is a mail ('. $item->getId() .').', Logger::DEBUG);
|
|
return false;
|
|
}
|
|
|
|
if ($item->getDataValue('verb') === Activity::LIKE || $item->getDataValue('verb') === Activity::DISLIKE) {
|
|
Logger::log('[WARN] Conversation::addThread : Thread is a (dis)like ('. $item->getId() .').', Logger::DEBUG);
|
|
return false;
|
|
}
|
|
|
|
$item->setThread($this);
|
|
$this->parents[] = $item;
|
|
|
|
return end($this->parents);
|
|
}
|
|
|
|
/**
|
|
* Get data in a form usable by a conversation template
|
|
*
|
|
* We should find a way to avoid using those arguments (at least most of them)
|
|
*
|
|
* @param array $conv_responses data
|
|
*
|
|
* @return mixed The data requested on success
|
|
* false on failure
|
|
* @throws \Exception
|
|
*/
|
|
public function getTemplateData($conv_responses)
|
|
{
|
|
$result = [];
|
|
|
|
foreach ($this->parents as $item) {
|
|
if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
|
|
continue;
|
|
}
|
|
|
|
$item_data = $item->getTemplateData($conv_responses);
|
|
|
|
if (!$item_data) {
|
|
Logger::log('[ERROR] Conversation::getTemplateData : Failed to get item template data ('. $item->getId() .').', Logger::DEBUG);
|
|
return false;
|
|
}
|
|
$result[] = $item_data;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Get a thread based on its item id
|
|
*
|
|
* @param integer $id Item id
|
|
*
|
|
* @return mixed The found item on success
|
|
* false on failure
|
|
*/
|
|
private function getParent($id)
|
|
{
|
|
foreach ($this->parents as $item) {
|
|
if ($item->getId() == $id) {
|
|
return $item;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|