2012-08-10 17:46:39 +02:00
|
|
|
<?php
|
|
|
|
if(class_exists('Conversation'))
|
|
|
|
return;
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
require_once('boot.php');
|
|
|
|
require_once('object/BaseObject.php');
|
2012-08-10 17:46:39 +02:00
|
|
|
require_once('object/Item.php');
|
|
|
|
require_once('include/text.php');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of threads
|
|
|
|
*
|
|
|
|
* We should think about making this a SPL Iterator
|
|
|
|
*/
|
2012-08-10 19:57:39 +02:00
|
|
|
class Conversation extends BaseObject {
|
2012-08-10 17:46:39 +02:00
|
|
|
private $threads = array();
|
2012-08-10 19:57:39 +02:00
|
|
|
private $mode = null;
|
2012-08-17 16:40:41 +02:00
|
|
|
private $writable = false;
|
2012-08-11 18:12:35 +02:00
|
|
|
private $profile_owner = 0;
|
2012-09-10 09:50:30 +02:00
|
|
|
private $preview = false;
|
2012-08-10 19:57:39 +02:00
|
|
|
|
2012-09-10 09:50:30 +02:00
|
|
|
public function __construct($mode, $preview) {
|
2012-08-11 18:12:35 +02:00
|
|
|
$this->set_mode($mode);
|
2012-09-10 09:50:30 +02:00
|
|
|
$this->preview = $preview;
|
2012-08-11 18:12:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the mode we'll be displayed on
|
|
|
|
*/
|
|
|
|
private function set_mode($mode) {
|
|
|
|
if($this->get_mode() == $mode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$a = $this->get_app();
|
|
|
|
|
|
|
|
switch($mode) {
|
|
|
|
case 'network':
|
|
|
|
case 'notes':
|
|
|
|
$this->profile_owner = local_user();
|
2012-08-17 16:40:41 +02:00
|
|
|
$this->writable = true;
|
2012-08-11 18:12:35 +02:00
|
|
|
break;
|
|
|
|
case 'profile':
|
|
|
|
$this->profile_owner = $a->profile['profile_uid'];
|
2012-08-17 16:40:41 +02:00
|
|
|
$this->writable = can_write_wall($a,$this->profile_owner);
|
2012-08-11 18:12:35 +02:00
|
|
|
break;
|
|
|
|
case 'display':
|
|
|
|
$this->profile_owner = $a->profile['uid'];
|
2012-08-17 16:40:41 +02:00
|
|
|
$this->writable = can_write_wall($a,$this->profile_owner);
|
2012-08-11 18:12:35 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
logger('[ERROR] Conversation::set_mode : Unhandled mode ('. $mode .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2012-08-12 15:39:21 +02:00
|
|
|
$this->mode = $mode;
|
2012-08-11 18:12:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get mode
|
|
|
|
*/
|
|
|
|
public function get_mode() {
|
|
|
|
return $this->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-08-17 16:40:41 +02:00
|
|
|
* Check if page is writable
|
2012-08-11 18:12:35 +02:00
|
|
|
*/
|
2012-08-17 16:40:41 +02:00
|
|
|
public function is_writable() {
|
|
|
|
return $this->writable;
|
2012-08-11 18:12:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-10 09:50:30 +02:00
|
|
|
/**
|
|
|
|
* Check if page is a preview
|
|
|
|
*/
|
|
|
|
public function is_preview() {
|
|
|
|
return $this->preview;
|
|
|
|
}
|
|
|
|
|
2012-08-11 18:12:35 +02:00
|
|
|
/**
|
|
|
|
* Get profile owner
|
|
|
|
*/
|
|
|
|
public function get_profile_owner() {
|
|
|
|
return $this->profile_owner;
|
2012-08-10 19:57:39 +02:00
|
|
|
}
|
2012-08-10 17:46:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a thread to the conversation
|
|
|
|
*
|
|
|
|
* Returns:
|
2012-09-10 10:36:30 +02:00
|
|
|
* _ The inserted item on success
|
|
|
|
* _ false on failure
|
2012-08-10 17:46:39 +02:00
|
|
|
*/
|
|
|
|
public function add_thread($item) {
|
|
|
|
$item_id = $item->get_id();
|
|
|
|
if(!$item_id) {
|
|
|
|
logger('[ERROR] Conversation::add_thread : Item has no ID!!', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if($this->get_thread($item->get_id())) {
|
|
|
|
logger('[WARN] Conversation::add_thread : Thread already exists ('. $item->get_id() .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-12 17:46:02 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only add will be displayed
|
|
|
|
*/
|
|
|
|
if($item->get_data_value('network') === NETWORK_MAIL && local_user() != $item->get_data_value('uid')) {
|
|
|
|
logger('[WARN] Conversation::add_thread : Thread is a mail ('. $item->get_id() .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if($item->get_data_value('verb') === ACTIVITY_LIKE || $item->get_data_value('verb') === ACTIVITY_DISLIKE) {
|
|
|
|
logger('[WARN] Conversation::add_thread : Thread is a (dis)like ('. $item->get_id() .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-11 18:12:35 +02:00
|
|
|
$item->set_conversation($this);
|
2012-08-10 17:46:39 +02:00
|
|
|
$this->threads[] = $item;
|
|
|
|
return end($this->threads);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
*
|
|
|
|
* Returns:
|
2012-09-10 10:36:30 +02:00
|
|
|
* _ The data requested on success
|
|
|
|
* _ false on failure
|
2012-08-10 17:46:39 +02:00
|
|
|
*/
|
2012-08-12 16:02:47 +02:00
|
|
|
public function get_template_data($alike, $dlike) {
|
2013-01-27 13:57:44 +01:00
|
|
|
global $a;
|
2012-08-10 17:46:39 +02:00
|
|
|
$result = array();
|
|
|
|
|
2013-09-15 10:40:58 +02:00
|
|
|
$i = 0;
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
foreach($this->threads as $item) {
|
2012-08-11 17:51:25 +02:00
|
|
|
if($item->get_data_value('network') === NETWORK_MAIL && local_user() != $item->get_data_value('uid'))
|
2012-08-10 19:57:39 +02:00
|
|
|
continue;
|
2013-09-15 10:40:58 +02:00
|
|
|
|
2012-08-12 16:02:47 +02:00
|
|
|
$item_data = $item->get_template_data($alike, $dlike);
|
2013-09-15 10:40:58 +02:00
|
|
|
|
2012-08-10 17:46:39 +02:00
|
|
|
if(!$item_data) {
|
|
|
|
logger('[ERROR] Conversation::get_template_data : Failed to get item template data ('. $item->get_id() .').', LOGGER_DEBUG);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$result[] = $item_data;
|
|
|
|
}
|
|
|
|
|
2013-01-27 13:57:44 +01:00
|
|
|
//$a->mark_timestamp();
|
2012-08-10 17:46:39 +02:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a thread based on its item id
|
|
|
|
*
|
|
|
|
* Returns:
|
2012-09-10 10:36:30 +02:00
|
|
|
* _ The found item on success
|
|
|
|
* _ false on failure
|
2012-08-10 17:46:39 +02:00
|
|
|
*/
|
|
|
|
private function get_thread($id) {
|
2012-08-10 19:57:39 +02:00
|
|
|
foreach($this->threads as $item) {
|
|
|
|
if($item->get_id() == $id)
|
|
|
|
return $item;
|
2012-08-10 17:46:39 +02:00
|
|
|
}
|
|
|
|
|
2012-08-10 19:57:39 +02:00
|
|
|
return false;
|
2012-08-10 17:46:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|