mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 01:39:28 +02:00

Fix coding guidelines incoherences. Code should match PSR1/2 now, and php-cs is set to check it on each commit. Also fixed the Git hook to take into account only added, modified, copied and renamed files (preventing errors when trying to check deleted files). Closes #1260.
349 lines
12 KiB
PHP
349 lines
12 KiB
PHP
<?php
|
|
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU Affero General Public License, version 3 (AGPLv3)
|
|
* Copyright 2001 - 2015 Ampache.org
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
class Shoutbox
|
|
{
|
|
public $id;
|
|
public $object_type;
|
|
public $object_id;
|
|
public $user;
|
|
public $sticky;
|
|
public $text;
|
|
public $data;
|
|
public $date;
|
|
|
|
public $f_link;
|
|
public $f_date;
|
|
public $f_text;
|
|
|
|
/**
|
|
* Constructor
|
|
* This pulls the shoutbox information from the database and returns
|
|
* a constructed object, uses user_shout table
|
|
*/
|
|
public function __construct($shout_id)
|
|
{
|
|
// Load the data from the database
|
|
$this->_get_info($shout_id);
|
|
|
|
return true;
|
|
} // Constructor
|
|
|
|
/**
|
|
* _get_info
|
|
* does the db call, reads from the user_shout table
|
|
*/
|
|
private function _get_info($shout_id)
|
|
{
|
|
$sql = "SELECT * FROM `user_shout` WHERE `id` = ?";
|
|
$db_results = Dba::read($sql, array($shout_id));
|
|
|
|
$data = Dba::fetch_assoc($db_results);
|
|
|
|
foreach ($data as $key=>$value) {
|
|
$this->$key = $value;
|
|
}
|
|
|
|
return true;
|
|
} // _get_info
|
|
|
|
/**
|
|
* gc
|
|
*
|
|
* Cleans out orphaned shoutbox items
|
|
*/
|
|
public static function gc($object_type = null, $object_id = null)
|
|
{
|
|
$types = array('song', 'album', 'artist', 'label');
|
|
|
|
if ($object_type != null) {
|
|
if (in_array($object_type, $types)) {
|
|
$sql = "DELETE FROM `user_shout` WHERE `object_type` = ? AND `object_id` = ?";
|
|
Dba::write($sql, array($object_type, $object_id));
|
|
} else {
|
|
debug_event('shoutbox', 'Garbage collect on type `' . $object_type . '` is not supported.', 1);
|
|
}
|
|
} else {
|
|
foreach ($types as $type) {
|
|
Dba::write("DELETE FROM `user_shout` USING `user_shout` LEFT JOIN `$type` ON `$type`.`id` = `user_shout`.`object_id` WHERE `$type`.`id` IS NULL AND `user_shout`.`object_type` = '$type'");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* get_top
|
|
* This returns the top user_shouts, shoutbox objects are always shown regardless and count against the total
|
|
* number of objects shown
|
|
*/
|
|
public static function get_top($limit, $username = null)
|
|
{
|
|
$shouts = self::get_sticky();
|
|
|
|
// If we've already got too many stop here
|
|
if (count($shouts) > $limit) {
|
|
$shouts = array_slice($shouts, 0, $limit);
|
|
return $shouts;
|
|
}
|
|
|
|
// Only get as many as we need
|
|
$limit = intval($limit) - count($shouts);
|
|
$params = array();
|
|
$sql = "SELECT `user_shout`.`id` AS `id` FROM `user_shout` LEFT JOIN `user` ON `user`.`id` = `user_shout`.`user` WHERE `user_shout`.`sticky`='0' ";
|
|
if ($username !== null) {
|
|
$sql .= "AND `user`.`username` = ? ";
|
|
$params[] = $username;
|
|
}
|
|
$sql .= "ORDER BY `user_shout`.`date` DESC LIMIT " . $limit;
|
|
$db_results = Dba::read($sql, $params);
|
|
|
|
while ($row = Dba::fetch_assoc($db_results)) {
|
|
$shouts[] = $row['id'];
|
|
}
|
|
|
|
return $shouts;
|
|
} // get_top
|
|
|
|
public static function get_shouts_since($time)
|
|
{
|
|
$sql = "SELECT * FROM `user_shout` WHERE `date` > ? ORDER BY `date` DESC";
|
|
$db_results = Dba::read($sql, array($time));
|
|
|
|
$shouts = array();
|
|
while ($row = Dba::fetch_assoc($db_results)) {
|
|
$shouts[] = $row['id'];
|
|
}
|
|
|
|
return $shouts;
|
|
}
|
|
|
|
/**
|
|
* get_sticky
|
|
* This returns all current sticky shoutbox items
|
|
*/
|
|
public static function get_sticky()
|
|
{
|
|
$sql = "SELECT * FROM `user_shout` WHERE `sticky`='1' ORDER BY `date` DESC";
|
|
$db_results = Dba::read($sql);
|
|
|
|
$results = array();
|
|
|
|
while ($row = Dba::fetch_assoc($db_results)) {
|
|
$results[] = $row['id'];
|
|
}
|
|
|
|
return $results;
|
|
} // get_sticky
|
|
|
|
/**
|
|
* get_object
|
|
* This takes a type and an ID and returns a created object
|
|
*/
|
|
public static function get_object($type, $object_id)
|
|
{
|
|
if (!Core::is_library_item($type)) {
|
|
return false;
|
|
}
|
|
|
|
$object = new $type($object_id);
|
|
|
|
if ($object->id > 0) {
|
|
if (strtolower($type) === 'song') {
|
|
if (!$object->enabled) {
|
|
$object = null;
|
|
}
|
|
}
|
|
} else {
|
|
$object = null;
|
|
}
|
|
|
|
return $object;
|
|
} // get_object
|
|
|
|
/**
|
|
* get_image
|
|
* This returns an image tag if the type of object we're currently rolling with
|
|
* has an image associated with it
|
|
*/
|
|
public function get_image()
|
|
{
|
|
$image_string = '';
|
|
if (Art::has_db($this->object_id, $this->object_type)) {
|
|
$image_string = "<img class=\"shoutboximage\" height=\"75\" width=\"75\" src=\"" . AmpConfig::get('web_path') . "/image.php?object_id=" . $this->object_id . "&object_type=" . $this->object_type . "&thumb=1\" />";
|
|
}
|
|
|
|
return $image_string;
|
|
} // get_image
|
|
|
|
/**
|
|
* create
|
|
* This takes a key'd array of data as input and inserts a new shoutbox entry, it returns the auto_inc id
|
|
*/
|
|
public static function create(array $data)
|
|
{
|
|
if (!Core::is_library_item($data['object_type'])) {
|
|
return false;
|
|
}
|
|
|
|
$sticky = isset($data['sticky']) ? 1 : 0;
|
|
$user = intval($data['user'] ?: $GLOBALS['user']->id);
|
|
$date = intval($data['date'] ?: time());
|
|
$comment = strip_tags($data['comment']);
|
|
|
|
$sql = "INSERT INTO `user_shout` (`user`,`date`,`text`,`sticky`,`object_id`,`object_type`, `data`) " .
|
|
"VALUES (? , ?, ?, ?, ?, ?, ?)";
|
|
Dba::write($sql, array($user, $date, $comment, $sticky, $data['object_id'], $data['object_type'], $data['data']));
|
|
|
|
Useractivity::post_activity($user, 'shout', $data['object_type'], $data['object_id']);
|
|
|
|
$insert_id = Dba::insert_id();
|
|
|
|
// Never send email in case of user impersonation
|
|
if (!isset($data['user']) && $insert_id) {
|
|
$libitem = new $data['object_type']($data['object_id']);
|
|
$item_owner_id = $libitem->get_user_owner();
|
|
if ($item_owner_id) {
|
|
if (Preference::get_by_user($item_owner_id, 'notify_email')) {
|
|
$item_owner = new User($item_owner_id);
|
|
if (!empty($item_owner->email)) {
|
|
$libitem->format();
|
|
$mailer = new Mailer();
|
|
$mailer->set_default_sender();
|
|
$mailer->recipient = $item_owner->email;
|
|
$mailer->recipient_name = $item_owner->fullname;
|
|
$mailer->subject = T_('New shout on your content');
|
|
$mailer->message = sprintf(T_("You just received a new shout from %s on your content `%s`.\n\n
|
|
----------------------
|
|
%s
|
|
----------------------
|
|
|
|
%s
|
|
"), $GLOBALS['user']->fullname, $libitem->get_fullname(), $comment, AmpConfig::get('web_path') . "/shout.php?action=show_add_shout&type=" . $data['object_type'] . "&id=" . $data['object_id'] . "#shout" . $insert_id);
|
|
$mailer->send();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $insert_id;
|
|
} // create
|
|
|
|
/**
|
|
* update
|
|
* This takes a key'd array of data as input and updates a shoutbox entry
|
|
*/
|
|
public function update(array $data)
|
|
{
|
|
$sql = "UPDATE `user_shout` SET `text` = ?, `sticky` = ? WHERE `id` = ?";
|
|
Dba::write($sql, array($data['comment'], make_bool($data['sticky']), $this->id));
|
|
|
|
return $this->id;
|
|
} // create
|
|
|
|
/**
|
|
* format
|
|
* this function takes the object and reformats some values
|
|
*/
|
|
|
|
public function format()
|
|
{
|
|
$this->sticky = ($this->sticky == "0") ? 'No' : 'Yes';
|
|
$this->f_date = date("m\/d\/Y - H:i", $this->date);
|
|
$this->f_text = preg_replace('/(\r\n|\n|\r)/', '<br />', $this->text);
|
|
return true;
|
|
} //format
|
|
|
|
/**
|
|
* delete
|
|
* this function deletes a specific shoutbox entry
|
|
*/
|
|
|
|
public function delete($shout_id)
|
|
{
|
|
// Delete the shoutbox post
|
|
$shout_id = Dba::escape($shout_id);
|
|
$sql = "DELETE FROM `user_shout` WHERE `id`='$shout_id'";
|
|
Dba::write($sql);
|
|
} // delete
|
|
|
|
public function get_display($details = true, $jsbuttons = false)
|
|
{
|
|
$object = Shoutbox::get_object($this->object_type, $this->object_id);
|
|
$object->format();
|
|
$img = $this->get_image();
|
|
$html = "<div class='shoutbox-item'>";
|
|
$html .= "<div class='shoutbox-data'>";
|
|
if ($details && $img) {
|
|
$html .= "<div class='shoutbox-img'>" . $img . "</div>";
|
|
}
|
|
$html .= "<div class='shoutbox-info'>";
|
|
if ($details) {
|
|
$html .= "<div class='shoutbox-object'>" . $object->f_link . "</div>";
|
|
$html .= "<div class='shoutbox-date'>" . date("Y/m/d H:i:s", $this->date) . "</div>";
|
|
}
|
|
$html .= "<div class='shoutbox-text'>" . $this->f_text . "</div>";
|
|
$html .= "</div>";
|
|
$html .= "</div>";
|
|
$html .= "<div class='shoutbox-footer'>";
|
|
if ($details) {
|
|
$html .= "<div class='shoutbox-actions'>";
|
|
if ($jsbuttons) {
|
|
$html .= Ajax::button('?page=stream&action=directplay&playtype=' . $this->object_type . '&' . $this->object_type . '_id=' . $this->object_id, 'play', T_('Play'), 'play_' . $this->object_type . '_' . $this->object_id);
|
|
$html .= Ajax::button('?action=basket&type=' . $this->object_type . '&id=' . $this->object_id, 'add', T_('Add'), 'add_' . $this->object_type . '_' . $this->object_id);
|
|
}
|
|
if (Access::check('interface', '25')) {
|
|
$html .= "<a href=\"" . AmpConfig::get('web_path') . "/shout.php?action=show_add_shout&type=" . $this->object_type . "&id=" . $this->object_id . "\">" . UI::get_icon('comment', T_('Post Shout')) . "</a>";
|
|
}
|
|
$html .= "</div>";
|
|
}
|
|
$html .= "<div class='shoutbox-user'>" . T_('by') . " ";
|
|
|
|
if ($this->user > 0) {
|
|
$user = new User($this->user);
|
|
$user->format();
|
|
if ($details) {
|
|
$html .= $user->f_link;
|
|
} else {
|
|
$html .= $user->username;
|
|
}
|
|
} else {
|
|
$html .= T_('Guest');
|
|
}
|
|
$html .= "</div>";
|
|
$html .= "</div>";
|
|
$html .= "</div>";
|
|
|
|
return $html;
|
|
}
|
|
|
|
public static function get_shouts($object_type, $object_id)
|
|
{
|
|
$sql = "SELECT `id` FROM `user_shout` WHERE `object_type` = ? AND `object_id` = ? ORDER BY `sticky`, `date` DESC";
|
|
$db_results = Dba::read($sql, array($object_type, $object_id));
|
|
$results = array();
|
|
|
|
while ($row = Dba::fetch_assoc($db_results)) {
|
|
$results[] = $row['id'];
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
} // Shoutbox class
|