2012-08-10 11:46:39 -04:00
|
|
|
<?php
|
2017-11-16 13:05:41 -05:00
|
|
|
/**
|
2017-12-07 09:05:23 -05:00
|
|
|
* @file src/Object/Thread.php
|
2017-11-16 13:05:41 -05:00
|
|
|
*/
|
2017-11-19 16:50:49 -05:00
|
|
|
namespace Friendica\Object;
|
2017-11-16 13:24:59 -05:00
|
|
|
|
2017-11-19 16:50:49 -05:00
|
|
|
use Friendica\BaseObject;
|
2017-12-07 23:33:36 -05:00
|
|
|
use Friendica\Object\Post;
|
2012-08-10 11:46:39 -04:00
|
|
|
|
2017-11-16 13:05:41 -05:00
|
|
|
require_once 'boot.php';
|
|
|
|
require_once 'include/text.php';
|
2012-08-10 11:46:39 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of threads
|
|
|
|
*
|
|
|
|
* We should think about making this a SPL Iterator
|
|
|
|
*/
|
2017-12-07 09:05:23 -05:00
|
|
|
class Thread extends BaseObject
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2017-12-07 09:05:23 -05:00
|
|
|
private $parents = array();
|
2012-08-10 13:57:39 -04:00
|
|
|
private $mode = null;
|
2012-08-17 10:40:41 -04:00
|
|
|
private $writable = false;
|
2012-08-11 12:12:35 -04:00
|
|
|
private $profile_owner = 0;
|
2012-09-10 03:50:30 -04:00
|
|
|
private $preview = false;
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param string $mode The mode
|
|
|
|
* @param boolean $preview boolean value
|
|
|
|
*/
|
2017-11-16 13:24:59 -05:00
|
|
|
public function __construct($mode, $preview)
|
|
|
|
{
|
2017-11-19 14:15:25 -05:00
|
|
|
$this->setMode($mode);
|
2012-09-10 03:50:30 -04:00
|
|
|
$this->preview = $preview;
|
2012-08-11 12:12:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the mode we'll be displayed on
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @param string $mode The mode to set
|
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
private function setMode($mode)
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2017-11-19 14:15:25 -05:00
|
|
|
if ($this->getMode() == $mode) {
|
2012-08-11 12:12:35 -04:00
|
|
|
return;
|
2017-11-16 13:24:59 -05:00
|
|
|
}
|
2012-08-11 12:12:35 -04:00
|
|
|
|
2017-11-19 16:50:49 -05:00
|
|
|
$a = self::getApp();
|
2012-08-11 12:12:35 -04:00
|
|
|
|
2017-11-16 13:24:59 -05:00
|
|
|
switch ($mode) {
|
2012-08-11 12:12:35 -04:00
|
|
|
case 'network':
|
|
|
|
case 'notes':
|
|
|
|
$this->profile_owner = local_user();
|
2012-08-17 10:40:41 -04:00
|
|
|
$this->writable = true;
|
2012-08-11 12:12:35 -04:00
|
|
|
break;
|
|
|
|
case 'profile':
|
|
|
|
$this->profile_owner = $a->profile['profile_uid'];
|
2017-11-16 13:24:59 -05:00
|
|
|
$this->writable = can_write_wall($a, $this->profile_owner);
|
2012-08-11 12:12:35 -04:00
|
|
|
break;
|
|
|
|
case 'display':
|
|
|
|
$this->profile_owner = $a->profile['uid'];
|
2017-11-16 13:24:59 -05:00
|
|
|
$this->writable = can_write_wall($a, $this->profile_owner);
|
2012-08-11 12:12:35 -04:00
|
|
|
break;
|
|
|
|
default:
|
2017-11-19 14:15:25 -05:00
|
|
|
logger('[ERROR] Conversation::setMode : Unhandled mode ('. $mode .').', LOGGER_DEBUG);
|
2012-08-11 12:12:35 -04:00
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2012-08-12 09:39:21 -04:00
|
|
|
$this->mode = $mode;
|
2012-08-11 12:12:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get mode
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return string
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public function getMode()
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2012-08-11 12:12:35 -04:00
|
|
|
return $this->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-08-17 10:40:41 -04:00
|
|
|
* Check if page is writable
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return boolean
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public function isWritable()
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2012-08-17 10:40:41 -04:00
|
|
|
return $this->writable;
|
2012-08-11 12:12:35 -04:00
|
|
|
}
|
|
|
|
|
2012-09-10 03:50:30 -04:00
|
|
|
/**
|
|
|
|
* Check if page is a preview
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return boolean
|
2012-09-10 03:50:30 -04:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public function isPreview()
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2012-09-10 03:50:30 -04:00
|
|
|
return $this->preview;
|
|
|
|
}
|
|
|
|
|
2012-08-11 12:12:35 -04:00
|
|
|
/**
|
|
|
|
* Get profile owner
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return integer
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public function getProfileOwner()
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2012-08-11 12:12:35 -04:00
|
|
|
return $this->profile_owner;
|
2012-08-10 13:57:39 -04:00
|
|
|
}
|
2012-08-10 11:46:39 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a thread to the conversation
|
|
|
|
*
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param object $item The item to insert
|
|
|
|
*
|
|
|
|
* @return mixed The inserted item on success
|
|
|
|
* false on failure
|
2012-08-10 11:46:39 -04:00
|
|
|
*/
|
2017-12-07 23:33:36 -05:00
|
|
|
public function addParent(Post $item)
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2017-11-16 15:54:03 -05:00
|
|
|
$item_id = $item->getId();
|
2017-11-16 13:24:59 -05:00
|
|
|
|
|
|
|
if (!$item_id) {
|
2017-11-19 14:15:25 -05:00
|
|
|
logger('[ERROR] Conversation::addThread : Item has no ID!!', LOGGER_DEBUG);
|
2012-08-10 11:46:39 -04:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-16 13:24:59 -05:00
|
|
|
|
2017-12-07 09:05:23 -05:00
|
|
|
if ($this->getParent($item->getId())) {
|
2017-11-19 14:15:25 -05:00
|
|
|
logger('[WARN] Conversation::addThread : Thread already exists ('. $item->getId() .').', LOGGER_DEBUG);
|
2012-08-10 11:46:39 -04:00
|
|
|
return false;
|
|
|
|
}
|
2012-08-12 11:46:02 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only add will be displayed
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($item->getDataValue('network') === NETWORK_MAIL && local_user() != $item->getDataValue('uid')) {
|
2017-11-19 14:15:25 -05:00
|
|
|
logger('[WARN] Conversation::addThread : Thread is a mail ('. $item->getId() .').', LOGGER_DEBUG);
|
2012-08-12 11:46:02 -04:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-16 13:24:59 -05:00
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($item->getDataValue('verb') === ACTIVITY_LIKE || $item->getDataValue('verb') === ACTIVITY_DISLIKE) {
|
2017-11-19 14:15:25 -05:00
|
|
|
logger('[WARN] Conversation::addThread : Thread is a (dis)like ('. $item->getId() .').', LOGGER_DEBUG);
|
2012-08-12 11:46:02 -04:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-16 13:24:59 -05:00
|
|
|
|
2017-12-07 09:05:23 -05:00
|
|
|
$item->setThread($this);
|
|
|
|
$this->parents[] = $item;
|
2017-11-16 13:24:59 -05:00
|
|
|
|
2017-12-07 09:05:23 -05:00
|
|
|
return end($this->parents);
|
2012-08-10 11:46:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
*
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param object $conv_responses data
|
|
|
|
*
|
|
|
|
* @return mixed The data requested on success
|
|
|
|
* false on failure
|
2012-08-10 11:46:39 -04:00
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public function getTemplateData($conv_responses)
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2017-11-19 16:50:49 -05:00
|
|
|
$a = self::getApp();
|
2012-08-10 11:46:39 -04:00
|
|
|
$result = array();
|
2013-09-15 04:40:58 -04:00
|
|
|
$i = 0;
|
|
|
|
|
2017-12-07 09:05:23 -05:00
|
|
|
foreach ($this->parents as $item) {
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($item->getDataValue('network') === NETWORK_MAIL && local_user() != $item->getDataValue('uid')) {
|
2012-08-10 13:57:39 -04:00
|
|
|
continue;
|
2017-11-16 15:54:03 -05:00
|
|
|
}
|
2013-09-15 04:40:58 -04:00
|
|
|
|
2017-11-16 15:58:50 -05:00
|
|
|
$item_data = $item->getTemplateData($conv_responses);
|
2013-09-15 04:40:58 -04:00
|
|
|
|
2017-11-16 13:24:59 -05:00
|
|
|
if (!$item_data) {
|
2017-11-19 14:15:25 -05:00
|
|
|
logger('[ERROR] Conversation::getTemplateData : Failed to get item template data ('. $item->getId() .').', LOGGER_DEBUG);
|
2012-08-10 11:46:39 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$result[] = $item_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a thread based on its item id
|
|
|
|
*
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param integer $id Item id
|
|
|
|
*
|
|
|
|
* @return mixed The found item on success
|
|
|
|
* false on failure
|
2012-08-10 11:46:39 -04:00
|
|
|
*/
|
2017-12-07 09:05:23 -05:00
|
|
|
private function getParent($id)
|
2017-11-16 13:24:59 -05:00
|
|
|
{
|
2017-12-07 09:05:23 -05:00
|
|
|
foreach ($this->parents as $item) {
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($item->getId() == $id) {
|
2012-08-10 13:57:39 -04:00
|
|
|
return $item;
|
2017-11-16 13:24:59 -05:00
|
|
|
}
|
2012-08-10 11:46:39 -04:00
|
|
|
}
|
|
|
|
|
2012-08-10 13:57:39 -04:00
|
|
|
return false;
|
2012-08-10 11:46:39 -04:00
|
|
|
}
|
|
|
|
}
|