2011-05-20 10:15:02 +02:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function notes_init(App $a) {
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2011-05-20 10:15:02 +02:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
|
|
|
$profile = 0;
|
|
|
|
|
|
|
|
$which = $a->user['nickname'];
|
|
|
|
|
2015-09-30 18:50:44 +02:00
|
|
|
nav_set_selected('home');
|
|
|
|
|
2011-05-20 10:15:02 +02:00
|
|
|
// profile_load($a,$which,$profile);
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function notes_content(App $a, $update = false) {
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2011-05-20 10:15:02 +02:00
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once("include/bbcode.php");
|
|
|
|
require_once('include/security.php');
|
|
|
|
require_once('include/conversation.php');
|
|
|
|
require_once('include/acl_selectors.php');
|
|
|
|
$groups = array();
|
|
|
|
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
$remote_contact = false;
|
|
|
|
|
|
|
|
$contact_id = $_SESSION['cid'];
|
|
|
|
$contact = $a->contact;
|
|
|
|
|
|
|
|
$is_owner = true;
|
2011-06-23 11:30:17 +02:00
|
|
|
|
|
|
|
$o ="";
|
2011-10-10 15:28:34 +02:00
|
|
|
$o .= profile_tabs($a,True);
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! $update) {
|
2011-09-12 00:09:57 +02:00
|
|
|
$o .= '<h3>' . t('Personal Notes') . '</h3>';
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2011-09-12 00:09:57 +02:00
|
|
|
$commpage = false;
|
|
|
|
$commvisitor = false;
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2011-09-12 00:09:57 +02:00
|
|
|
$x = array(
|
|
|
|
'is_owner' => $is_owner,
|
2015-06-26 15:13:52 +02:00
|
|
|
'allow_location' => (($a->user['allow_location']) ? true : false),
|
|
|
|
'default_location' => $a->user['default-location'],
|
|
|
|
'nickname' => $a->user['nickname'],
|
|
|
|
'lockstate' => 'lock',
|
|
|
|
'acl' => '',
|
|
|
|
'bang' => '',
|
|
|
|
'visitor' => 'block',
|
|
|
|
'profile_uid' => local_user(),
|
2013-01-26 20:52:21 +01:00
|
|
|
'button' => t('Save'),
|
|
|
|
'acl_data' => '',
|
2015-06-26 15:13:52 +02:00
|
|
|
);
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2015-06-26 15:13:52 +02:00
|
|
|
$o .= status_editor($a,$x,$a->contact['id']);
|
2011-05-20 10:15:02 +02:00
|
|
|
|
2011-09-12 00:09:57 +02:00
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
|
|
|
// Construct permissions
|
|
|
|
|
|
|
|
// default permissions - anonymous user
|
2016-06-12 21:04:55 +02:00
|
|
|
|
2017-10-18 06:55:03 +02:00
|
|
|
$sql_extra = " AND `item`.`allow_cid` = '<" . $a->contact['id'] . ">' ";
|
2011-05-20 10:15:02 +02:00
|
|
|
|
|
|
|
$r = q("SELECT COUNT(*) AS `total`
|
2016-06-19 08:32:38 +02:00
|
|
|
FROM `item` %s
|
2016-06-12 21:04:55 +02:00
|
|
|
WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
|
|
|
|
AND `contact`.`self` AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
|
2011-05-20 10:15:02 +02:00
|
|
|
$sql_extra ",
|
2016-06-19 08:32:38 +02:00
|
|
|
item_joins(), item_condition(),
|
2011-05-20 10:15:02 +02:00
|
|
|
intval(local_user())
|
|
|
|
|
|
|
|
);
|
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2011-05-20 10:15:02 +02:00
|
|
|
$a->set_pager_total($r[0]['total']);
|
|
|
|
$a->set_pager_itemspage(40);
|
|
|
|
}
|
|
|
|
|
2016-06-19 08:32:38 +02:00
|
|
|
$r = q("SELECT `item`.`id` AS `item_id` FROM `item` %s
|
2016-06-12 21:04:55 +02:00
|
|
|
WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
|
|
|
|
AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
|
2011-05-20 10:15:02 +02:00
|
|
|
$sql_extra
|
|
|
|
ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
|
2016-06-19 08:32:38 +02:00
|
|
|
item_joins(), item_condition(),
|
2011-05-20 10:15:02 +02:00
|
|
|
intval(local_user()),
|
|
|
|
intval($a->pager['start']),
|
|
|
|
intval($a->pager['itemspage'])
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
$parents_arr = array();
|
|
|
|
$parents_str = '';
|
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2017-03-21 17:02:59 +01:00
|
|
|
foreach($r as $rr)
|
2011-05-20 10:15:02 +02:00
|
|
|
$parents_arr[] = $rr['item_id'];
|
|
|
|
$parents_str = implode(', ', $parents_arr);
|
2016-06-12 21:04:55 +02:00
|
|
|
|
2016-06-19 08:32:38 +02:00
|
|
|
$r = q("SELECT %s FROM `item` %s
|
2016-06-12 21:04:55 +02:00
|
|
|
WHERE %s AND `item`.`uid` = %d AND `item`.`parent` IN (%s)
|
2011-05-20 10:15:02 +02:00
|
|
|
$sql_extra
|
|
|
|
ORDER BY `parent` DESC, `gravity` ASC, `item`.`id` ASC ",
|
2016-06-19 08:32:38 +02:00
|
|
|
item_fieldlists(), item_joins(), item_condition(),
|
2011-05-20 10:15:02 +02:00
|
|
|
intval(local_user()),
|
|
|
|
dbesc($parents_str)
|
|
|
|
);
|
|
|
|
|
2017-11-08 04:57:46 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2012-08-03 21:41:26 +02:00
|
|
|
$items = conv_sort($r,"`commented`");
|
|
|
|
|
2012-08-03 21:55:17 +02:00
|
|
|
$o .= conversation($a,$items,'notes',$update);
|
2012-08-03 21:41:26 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-20 10:15:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
$o .= paginate($a);
|
|
|
|
return $o;
|
|
|
|
}
|