2007-10-02 21:06:33 +00:00
|
|
|
<?php
|
2009-08-20 22:37:17 +00:00
|
|
|
/*
|
2007-10-21 22:20:31 +00:00
|
|
|
* Name: Image Scores (Numeric)
|
2007-10-02 21:06:33 +00:00
|
|
|
* Author: Shish <webmaster@shishnet.org>
|
|
|
|
* License: GPLv2
|
|
|
|
* Description: Allow users to score images
|
2009-01-16 08:18:41 +00:00
|
|
|
* Documentation:
|
|
|
|
* Each registered user may vote an image +1 or -1, the
|
|
|
|
* image's score is the sum of all votes.
|
2007-10-02 21:06:33 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-21 22:20:31 +00:00
|
|
|
class NumericScoreSetEvent extends Event {
|
2007-10-18 02:29:39 +00:00
|
|
|
var $image_id, $user, $score;
|
|
|
|
|
2007-10-21 22:20:31 +00:00
|
|
|
public function NumericScoreSetEvent($image_id, $user, $score) {
|
2007-10-18 02:29:39 +00:00
|
|
|
$this->image_id = $image_id;
|
|
|
|
$this->user = $user;
|
|
|
|
$this->score = $score;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-23 12:08:19 +00:00
|
|
|
class NumericScore implements Extension {
|
2007-10-18 01:21:55 +00:00
|
|
|
var $theme;
|
|
|
|
|
2008-08-23 12:08:19 +00:00
|
|
|
public function receive_event(Event $event) {
|
2009-05-11 14:04:33 +00:00
|
|
|
global $config, $database, $page, $user;
|
2008-09-06 16:59:02 +00:00
|
|
|
if(is_null($this->theme)) $this->theme = get_theme_object($this);
|
2007-10-18 01:21:55 +00:00
|
|
|
|
2008-08-22 09:41:30 +00:00
|
|
|
if($event instanceof InitExtEvent) {
|
2007-10-21 22:20:31 +00:00
|
|
|
if($config->get_int("ext_numeric_score_version", 0) < 1) {
|
2007-10-02 21:06:33 +00:00
|
|
|
$this->install();
|
|
|
|
}
|
|
|
|
}
|
2009-01-04 19:18:37 +00:00
|
|
|
|
2008-08-22 09:41:30 +00:00
|
|
|
if($event instanceof DisplayingImageEvent) {
|
2008-04-08 16:53:48 +00:00
|
|
|
if(!$user->is_anonymous()) {
|
2008-07-21 15:16:48 +00:00
|
|
|
$html = $this->theme->get_voter_html($event->image);
|
2009-05-11 14:04:33 +00:00
|
|
|
$page->add_block(new Block("Image Score", $html, "left", 20));
|
2008-07-21 15:16:48 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-04 19:18:37 +00:00
|
|
|
|
2011-03-28 21:31:45 +00:00
|
|
|
if($event instanceof UserPageBuildingEvent) {
|
|
|
|
$html = $this->theme->get_nuller_html($event->display_user);
|
|
|
|
$page->add_block(new Block("Votes", $html, "main", 60));
|
|
|
|
}
|
|
|
|
|
2011-03-23 10:44:52 +00:00
|
|
|
if($event instanceof PageRequestEvent) {
|
|
|
|
if($event->page_matches("numeric_score_votes")) {
|
|
|
|
$image_id = int_escape($event->get_arg(0));
|
|
|
|
$x = $database->get_all(
|
|
|
|
"SELECT users.name as username, user_id, score
|
|
|
|
FROM numeric_score_votes
|
|
|
|
JOIN users ON numeric_score_votes.user_id=users.id
|
|
|
|
WHERE image_id=?",
|
|
|
|
array($image_id));
|
|
|
|
$html = "<table>";
|
|
|
|
foreach($x as $vote) {
|
|
|
|
$html .= "<tr><td>";
|
|
|
|
$html .= "<a href='/user/{$vote['username']}'>{$vote['username']}</a>";
|
|
|
|
$html .= "</td><td>";
|
|
|
|
$html .= $vote['score'];
|
|
|
|
$html .= "</td></tr>";
|
|
|
|
}
|
|
|
|
die($html);
|
|
|
|
}
|
|
|
|
if($event->page_matches("numeric_score_vote") && $user->check_auth_token()) {
|
|
|
|
if(!$user->is_anonymous()) {
|
|
|
|
$image_id = int_escape($_POST['image_id']);
|
|
|
|
$char = $_POST['vote'];
|
|
|
|
$score = null;
|
|
|
|
if($char == "up") $score = 1;
|
|
|
|
else if($char == "null") $score = 0;
|
|
|
|
else if($char == "down") $score = -1;
|
|
|
|
if(!is_null($score) && $image_id>0) send_event(new NumericScoreSetEvent($image_id, $user, $score));
|
|
|
|
$page->set_mode("redirect");
|
|
|
|
$page->set_redirect(make_link("post/view/$image_id"));
|
|
|
|
}
|
2007-10-21 22:43:35 +00:00
|
|
|
}
|
2011-03-23 11:04:22 +00:00
|
|
|
if($event->page_matches("numeric_score/remove_votes_on") && $user->check_auth_token()) {
|
|
|
|
if($user->is_admin()) {
|
|
|
|
$image_id = int_escape($_POST['image_id']);
|
|
|
|
$database->execute(
|
|
|
|
"DELETE FROM numeric_score_votes WHERE image_id=?",
|
|
|
|
array($image_id));
|
|
|
|
$database->execute(
|
|
|
|
"UPDATE images SET numeric_score=0 WHERE id=?",
|
|
|
|
array($image_id));
|
|
|
|
$page->set_mode("redirect");
|
|
|
|
$page->set_redirect(make_link("post/view/$image_id"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($event->page_matches("numeric_score/remove_votes_by") && $user->check_auth_token()) {
|
|
|
|
if($user->is_admin()) {
|
|
|
|
$user_id = int_escape($_POST['user_id']);
|
|
|
|
$image_ids = $database->get_col("SELECT image_id FROM numeric_score_votes WHERE user_id=?", array($user_id));
|
|
|
|
|
|
|
|
$database->execute(
|
|
|
|
"DELETE FROM numeric_score_votes WHERE user_id=? AND image_id IN ?",
|
|
|
|
array($user_id, $image_ids));
|
|
|
|
$database->execute(
|
|
|
|
"UPDATE images SET numeric_score=(SELECT SUM(score) FROM numeric_score_votes WHERE image_id=images.id) WHERE images.id IN ?",
|
|
|
|
array($image_ids));
|
|
|
|
$page->set_mode("redirect");
|
2011-03-28 21:31:45 +00:00
|
|
|
$page->set_redirect(make_link());
|
2011-03-23 11:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-24 20:11:16 +00:00
|
|
|
if($event->page_matches("popular_by_day") || $event->page_matches("popular_by_month") || $event->page_matches("popular_by_year")) {
|
|
|
|
$t_images = $config->get_int("index_height") * $config->get_int("index_width");
|
|
|
|
|
|
|
|
//TODO: Somehow make popular_by_#/2012/12/31 > popular_by_#?day=31&month=12&year=2012 (So no problems with date formats)
|
|
|
|
//TODO: Add Popular_by_week.
|
|
|
|
|
2012-01-26 16:20:26 +00:00
|
|
|
$sql = "SELECT * FROM images ";
|
|
|
|
$args = array();
|
2012-01-26 05:39:04 +00:00
|
|
|
|
|
|
|
//year
|
|
|
|
if(int_escape($event->get_arg(0)) == 0){
|
|
|
|
$year = date("Y");
|
|
|
|
}else{
|
|
|
|
$year = $event->get_arg(0);
|
|
|
|
}
|
|
|
|
//month
|
2012-01-26 06:42:37 +00:00
|
|
|
if(int_escape($event->get_arg(1)) == 0 || int_escape($event->get_arg(1)) > 12){
|
2012-01-26 05:39:04 +00:00
|
|
|
$month = date("m");
|
|
|
|
}else{
|
|
|
|
$month = $event->get_arg(1);
|
|
|
|
}
|
|
|
|
//day
|
2012-01-26 06:42:37 +00:00
|
|
|
if(int_escape($event->get_arg(2)) == 0 || int_escape($event->get_arg(2)) > 31){
|
2012-01-26 05:39:04 +00:00
|
|
|
$day = date("d");
|
|
|
|
}else{
|
|
|
|
$day = $event->get_arg(2);
|
|
|
|
}
|
|
|
|
$totaldate = $year."/".$month."/".$day;
|
|
|
|
|
2012-01-24 20:11:16 +00:00
|
|
|
if($event->page_matches("popular_by_day")){
|
|
|
|
$sql .=
|
2012-01-26 16:20:26 +00:00
|
|
|
"WHERE EXTRACT(YEAR FROM posted) = :year
|
|
|
|
AND EXTRACT(MONTH FROM posted) = :month
|
|
|
|
AND EXTRACT(DAY FROM posted) = :day
|
2012-01-24 20:11:16 +00:00
|
|
|
AND NOT numeric_score=0
|
|
|
|
";
|
2012-01-26 05:39:04 +00:00
|
|
|
$dte = array($totaldate, date("F jS, Y", (strtotime($totaldate))), "Y/m/d", "day");
|
2012-01-24 20:11:16 +00:00
|
|
|
}
|
|
|
|
if($event->page_matches("popular_by_month")){
|
|
|
|
$sql .=
|
2012-01-26 16:20:26 +00:00
|
|
|
"WHERE EXTRACT(YEAR FROM posted) = :year
|
|
|
|
AND EXTRACT(MONTH FROM posted) = :month
|
2012-01-24 20:11:16 +00:00
|
|
|
AND NOT numeric_score=0
|
|
|
|
";
|
2012-01-26 05:39:04 +00:00
|
|
|
$title = date("F Y", (strtotime($totaldate)));
|
|
|
|
$dte = array($totaldate, $title, "Y/m", "month");
|
2012-01-24 20:11:16 +00:00
|
|
|
}
|
|
|
|
if($event->page_matches("popular_by_year")){
|
|
|
|
$sql .=
|
2012-01-26 16:20:26 +00:00
|
|
|
"WHERE EXTRACT(YEAR FROM posted) = :year
|
2012-01-24 20:11:16 +00:00
|
|
|
AND NOT numeric_score=0
|
|
|
|
";
|
2012-01-26 05:39:04 +00:00
|
|
|
$dte = array($totaldate, $year, "Y", "year");
|
2012-01-24 20:11:16 +00:00
|
|
|
}
|
2012-01-26 16:20:26 +00:00
|
|
|
$sql .= " ORDER BY numeric_score DESC LIMIT :limit OFFSET 0";
|
2012-01-24 20:11:16 +00:00
|
|
|
|
|
|
|
//filter images by year/score != 0 > limit to max images on one page > order from highest to lowest score
|
2012-01-26 16:20:26 +00:00
|
|
|
$args = array(
|
|
|
|
"year" => $year,
|
|
|
|
"month" => $month,
|
|
|
|
"day" => $day,
|
|
|
|
"limit" => $t_images
|
|
|
|
);
|
|
|
|
$result = $database->get_all($sql, $args);
|
2012-01-24 20:11:16 +00:00
|
|
|
|
|
|
|
$images = array();
|
|
|
|
foreach($result as $singleResult) {
|
|
|
|
$images[] = Image::by_id($singleResult["id"]);
|
|
|
|
}
|
|
|
|
$this->theme->view_popular($images, $dte);
|
|
|
|
}
|
2007-10-02 21:06:33 +00:00
|
|
|
}
|
2009-01-04 19:18:37 +00:00
|
|
|
|
2008-08-22 09:41:30 +00:00
|
|
|
if($event instanceof NumericScoreSetEvent) {
|
2011-02-28 11:28:42 +00:00
|
|
|
log_info("numeric_score", "Rated Image #{$event->image_id} as {$event->score}");
|
2009-05-11 14:04:33 +00:00
|
|
|
$this->add_vote($event->image_id, $user->id, $event->score);
|
2008-04-08 16:53:48 +00:00
|
|
|
}
|
|
|
|
|
2008-08-22 09:41:30 +00:00
|
|
|
if($event instanceof ImageDeletionEvent) {
|
2007-10-21 23:12:49 +00:00
|
|
|
$database->execute("DELETE FROM numeric_score_votes WHERE image_id=?", array($event->image->id));
|
|
|
|
}
|
2007-11-04 08:16:41 +00:00
|
|
|
|
2008-08-22 09:41:30 +00:00
|
|
|
if($event instanceof ParseLinkTemplateEvent) {
|
2007-11-04 08:16:41 +00:00
|
|
|
$event->replace('$score', $event->image->numeric_score);
|
|
|
|
}
|
2008-04-08 17:16:29 +00:00
|
|
|
|
2008-08-22 09:41:30 +00:00
|
|
|
if($event instanceof SearchTermParseEvent) {
|
2008-04-08 17:16:29 +00:00
|
|
|
$matches = array();
|
2009-01-22 07:04:29 +00:00
|
|
|
if(preg_match("/^score(<|<=|=|>=|>)(\d+)$/", $event->term, $matches)) {
|
2008-04-08 17:16:29 +00:00
|
|
|
$cmp = $matches[1];
|
|
|
|
$score = $matches[2];
|
2009-08-13 18:26:23 +00:00
|
|
|
$event->add_querylet(new Querylet("numeric_score $cmp $score"));
|
2008-04-08 17:16:29 +00:00
|
|
|
}
|
2009-08-13 18:26:23 +00:00
|
|
|
if(preg_match("/^upvoted_by=(.*)$/", $event->term, $matches)) {
|
|
|
|
$duser = User::by_name($matches[1]);
|
|
|
|
if(is_null($duser)) {
|
|
|
|
throw new SearchTermParseException(
|
|
|
|
"Can't find the user named ".html_escape($matches[1]));
|
|
|
|
}
|
|
|
|
$event->add_querylet(new Querylet(
|
|
|
|
"images.id in (SELECT image_id FROM numeric_score_votes WHERE user_id=? AND score=1)",
|
|
|
|
array($duser->id)));
|
|
|
|
}
|
|
|
|
if(preg_match("/^downvoted_by=(.*)$/", $event->term, $matches)) {
|
|
|
|
$duser = User::by_name($matches[1]);
|
|
|
|
if(is_null($duser)) {
|
|
|
|
throw new SearchTermParseException(
|
|
|
|
"Can't find the user named ".html_escape($matches[1]));
|
|
|
|
}
|
|
|
|
$event->add_querylet(new Querylet(
|
|
|
|
"images.id in (SELECT image_id FROM numeric_score_votes WHERE user_id=? AND score=-1)",
|
|
|
|
array($duser->id)));
|
2009-04-22 03:29:14 +00:00
|
|
|
}
|
2010-03-01 00:14:32 +00:00
|
|
|
if(preg_match("/^upvoted_by_id=(\d+)$/", $event->term, $matches)) {
|
|
|
|
$iid = int_escape($matches[1]);
|
|
|
|
$event->add_querylet(new Querylet(
|
|
|
|
"images.id in (SELECT image_id FROM numeric_score_votes WHERE user_id=? AND score=1)",
|
|
|
|
array($iid)));
|
|
|
|
}
|
|
|
|
if(preg_match("/^downvoted_by_id=(\d+)$/", $event->term, $matches)) {
|
|
|
|
$iid = int_escape($matches[1]);
|
|
|
|
$event->add_querylet(new Querylet(
|
|
|
|
"images.id in (SELECT image_id FROM numeric_score_votes WHERE user_id=? AND score=-1)",
|
|
|
|
array($iid)));
|
|
|
|
}
|
2008-04-08 17:16:29 +00:00
|
|
|
}
|
2007-10-02 21:06:33 +00:00
|
|
|
}
|
2007-10-18 01:21:55 +00:00
|
|
|
|
|
|
|
private function install() {
|
2007-10-02 21:06:33 +00:00
|
|
|
global $database;
|
|
|
|
global $config;
|
|
|
|
|
2007-10-21 22:20:31 +00:00
|
|
|
if($config->get_int("ext_numeric_score_version") < 1) {
|
|
|
|
$database->Execute("ALTER TABLE images ADD COLUMN numeric_score INTEGER NOT NULL DEFAULT 0");
|
|
|
|
$database->Execute("CREATE INDEX images__numeric_score ON images(numeric_score)");
|
2009-01-22 12:05:55 +00:00
|
|
|
$database->create_table("numeric_score_votes", "
|
2009-01-22 13:03:51 +00:00
|
|
|
image_id INTEGER NOT NULL,
|
|
|
|
user_id INTEGER NOT NULL,
|
2009-01-22 12:05:55 +00:00
|
|
|
score INTEGER NOT NULL,
|
|
|
|
UNIQUE(image_id, user_id),
|
2009-01-22 13:03:51 +00:00
|
|
|
INDEX(image_id),
|
|
|
|
FOREIGN KEY (image_id) REFERENCES images(id) ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
|
2007-10-18 01:21:55 +00:00
|
|
|
");
|
2007-10-21 22:20:31 +00:00
|
|
|
$config->set_int("ext_numeric_score_version", 1);
|
2007-10-21 17:18:31 +00:00
|
|
|
}
|
2009-04-22 03:29:14 +00:00
|
|
|
if($config->get_int("ext_numeric_score_version") < 2) {
|
2009-05-11 14:13:49 +00:00
|
|
|
$database->Execute("CREATE INDEX numeric_score_votes__user_votes ON numeric_score_votes(user_id, score)");
|
2009-04-22 03:29:14 +00:00
|
|
|
$config->set_int("ext_numeric_score_version", 2);
|
|
|
|
}
|
2007-10-02 21:06:33 +00:00
|
|
|
}
|
|
|
|
|
2007-10-18 01:21:55 +00:00
|
|
|
private function add_vote($image_id, $user_id, $score) {
|
2007-10-02 21:06:33 +00:00
|
|
|
global $database;
|
2007-10-18 01:21:55 +00:00
|
|
|
$database->Execute(
|
2008-07-24 15:07:39 +00:00
|
|
|
"DELETE FROM numeric_score_votes WHERE image_id=? AND user_id=?",
|
|
|
|
array($image_id, $user_id));
|
2010-05-28 10:58:26 +00:00
|
|
|
if($score != 0) {
|
|
|
|
$database->Execute(
|
|
|
|
"INSERT INTO numeric_score_votes(image_id, user_id, score) VALUES(?, ?, ?)",
|
|
|
|
array($image_id, $user_id, $score));
|
|
|
|
}
|
2007-10-18 01:21:55 +00:00
|
|
|
$database->Execute(
|
2007-10-21 22:20:31 +00:00
|
|
|
"UPDATE images SET numeric_score=(SELECT SUM(score) FROM numeric_score_votes WHERE image_id=?) WHERE id=?",
|
2007-10-18 01:21:55 +00:00
|
|
|
array($image_id, $image_id));
|
2007-10-02 21:06:33 +00:00
|
|
|
}
|
|
|
|
}
|
2007-10-21 22:29:54 +00:00
|
|
|
add_event_listener(new NumericScore());
|
2007-10-02 21:06:33 +00:00
|
|
|
?>
|