mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
getting deeper into notifications
This commit is contained in:
parent
4b4d680dc4
commit
e98aaa3cbd
3 changed files with 61 additions and 12 deletions
18
database.sql
18
database.sql
|
@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `challenge` (
|
|||
`dfrn-id` char(255) NOT NULL,
|
||||
`expire` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -61,7 +61,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
|||
`reason` text NOT NULL COMMENT 'why a rating was given - will help friends decide to make friends or not',
|
||||
`profile-id` int(11) NOT NULL DEFAULT '0' COMMENT 'which profile to display - 0 is public default',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=109 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -107,7 +107,7 @@ CREATE TABLE IF NOT EXISTS `intro` (
|
|||
`blocked` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`ignore` tinyint(1) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=64 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -140,7 +140,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
KEY `commented` (`commented`),
|
||||
FULLTEXT KEY `body` (`body`),
|
||||
FULLTEXT KEY `title` (`title`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -166,7 +166,7 @@ CREATE TABLE IF NOT EXISTS `photo` (
|
|||
`deny_uid` mediumtext NOT NULL,
|
||||
`deny_gid` mediumtext NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=95 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -195,7 +195,7 @@ CREATE TABLE IF NOT EXISTS `profile` (
|
|||
`thumb` char(255) NOT NULL,
|
||||
`publish` tinyint(1) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -209,7 +209,7 @@ CREATE TABLE IF NOT EXISTS `profile_check` (
|
|||
`dfrn_id` char(255) NOT NULL,
|
||||
`expire` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -225,7 +225,7 @@ CREATE TABLE IF NOT EXISTS `session` (
|
|||
PRIMARY KEY (`id`),
|
||||
KEY `sid` (`sid`),
|
||||
KEY `expire` (`expire`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=31 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@ -245,4 +245,4 @@ CREATE TABLE IF NOT EXISTS `user` (
|
|||
`verified` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`blocked` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`uid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||
|
|
|
@ -16,12 +16,61 @@ require_once("datetime.php");
|
|||
if(($argc != 2) || (! intval($argv[1])))
|
||||
exit;
|
||||
|
||||
$is_parent = false;
|
||||
$item_id = $argv[1];
|
||||
|
||||
$r = q("SELECT `item`.*, `contact`.*,`item`.`id` AS `item_id` FROM `item` LEFT JOIN `contact` ON `item`.`contact-id` = `contact`.`id`
|
||||
WHERE `item`.`id` = %d LIMIT 1",
|
||||
intval($item_id)
|
||||
);
|
||||
if(! count($r))
|
||||
killme();
|
||||
|
||||
// fetch item
|
||||
$item = $r[0];
|
||||
|
||||
// if not parent, fetch it too
|
||||
if($item['parent'] == $item['id']) {
|
||||
$is_parent = true;
|
||||
}
|
||||
else {
|
||||
$r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
|
||||
intval($item['parent'])
|
||||
);
|
||||
if(count($r))
|
||||
$parent = $r[0];
|
||||
}
|
||||
|
||||
$commenters = array();
|
||||
|
||||
$r = q("SELECT `contact-id` FROM `item` WHERE `hash` = '%s' AND `id` != %d AND `id` != %d",
|
||||
dbesc($item['hash']),
|
||||
intval($item['id']),
|
||||
intval($item['parent'])
|
||||
);
|
||||
if(count($r)) {
|
||||
foreach($r as $rr) {
|
||||
if($rr['contact-id'] != $item['contact-id'])
|
||||
$commenters[] = $rr['contact-id'];
|
||||
}
|
||||
}
|
||||
|
||||
$tpl = file_get_contents('view/atomic.tpl');
|
||||
|
||||
$atom = replace_macros($tpl, array(
|
||||
'$feed_id' => $a->get_baseurl(),
|
||||
'$feed_title' => 'Wall Item',
|
||||
'$feed_updated' => datetime_convert('UTC','UTC',$item['edited'] . '+00:00' ,'Y-m-d\Th:i:s\Z') ,
|
||||
'$name' => $item['name'],
|
||||
'$profile_page' => $item['url'],
|
||||
'$thumb' => $item['thumb'],
|
||||
'$item_id' => $item['hash'] . '-' . $item['id'],
|
||||
'$title' => '',
|
||||
'$link' => $a->get_baseurl() . '/item/' . $item['id'],
|
||||
'$updated' => datetime_convert('UTC','UTC',$item['edited'] . '+00:00' ,'Y-m-d\Th:i:s\Z'),
|
||||
'$summary' => '',
|
||||
'$content' => $item['body']
|
||||
));
|
||||
|
||||
print_r($atom);
|
||||
// atomify
|
||||
|
||||
// expand list of recipients
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
<link href="$link" />
|
||||
<updated>$updated</updated>
|
||||
<summary>$summary</summary>
|
||||
<content type="text/plain" ></content>
|
||||
<content type="text/plain" >$content</content>
|
||||
</entry>
|
||||
</feed>
|
Loading…
Reference in a new issue