aboutsummaryrefslogtreecommitdiffstats
path: root/comments.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-10-23 17:56:46 +0000
committerz0rglub <z0rglub@piwigo.org>2004-10-23 17:56:46 +0000
commit98b65edb831e95695cc840692ab8ad294478f80d (patch)
tree2b1ffe5ba3c8bc1fcdb209e8f8d793bd18e9dd1d /comments.php
parent60ac6f180e9500c6fea0c872277f107f05d7d26d (diff)
- refactoring of comments.php
- creation of function get_thumbnail_src used everywhere a thumbnail must be displayed - creation of function parse_comment_content (used in comments.php and picture.php) - concerning undefined index on arrays retrieved in database, instead of testing possibly unset values, use of @ operator (smarter...) - add pre tag in default.css stylesheet for debugging purpose (need to have left aligned text) git-svn-id: http://piwigo.org/svn/trunk@579 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'comments.php')
-rw-r--r--comments.php316
1 files changed, 155 insertions, 161 deletions
diff --git a/comments.php b/comments.php
index 564e93af2..e39bb0693 100644
--- a/comments.php
+++ b/comments.php
@@ -25,213 +25,207 @@
// | USA. |
// +-----------------------------------------------------------------------+
-//----------------------------------------------------------- include
+// +-----------------------------------------------------------------------+
+// | initialization |
+// +-----------------------------------------------------------------------+
if (!defined('IN_ADMIN'))
{
define('PHPWG_ROOT_PATH','./');
- include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
+ include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
}
-//--------------------------------------------------- number of days to display
-if ( isset( $_GET['last_days'] ) ) define( 'MAX_DAYS', $_GET['last_days'] );
-else define( 'MAX_DAYS', 0 );
-//----------------------------------------- non specific section initialization
-$array_cat_directories = array();
-$array_cat_names = array();
-$array_cat_site_id = array();
-
-// comment deletion
-if ( isset( $_POST['delete'] ) )
+if (isset($_GET['last_days']))
{
- $mod_sql='';
- while( list($id, $row_id) = @each($_POST['comment_id']) )
- {
- $mod_sql .= ( ( $mod_sql != '' ) ? ', ' : '' ) . $row_id;
- }
- $query = 'DELETE FROM '.COMMENTS_TABLE.' WHERE id IN ('.$mod_sql.');';
- mysql_query( $query );
+ define('MAX_DAYS', $_GET['last_days']);
}
-
-//--------------------------------------------------------- comments validation
-if ( isset( $_POST['validate'] ) )
+else
{
- $mod_sql='';
- while( list($id, $row_id) = @each($_POST['comment_id']) )
- {
- $mod_sql .= ( ( $mod_sql != '' ) ? ', ' : '' ) . $row_id;
- }
- $query = 'UPDATE '.COMMENTS_TABLE;
- $query.= " SET validated = 'true'";
- $query.=' WHERE id IN ('.$mod_sql.');';
- mysql_query( $query );
+ define('MAX_DAYS', 0);
}
-//------------------------------------------------------- last comments display
-
-//
-// Start output of page
-//
+$array_cat_names = array();
+// +-----------------------------------------------------------------------+
+// | comments management |
+// +-----------------------------------------------------------------------+
+// comments deletion
+if (isset($_POST['delete']) and count($_POST['comment_id']) > 0)
+{
+ $query = '
+DELETE FROM '.COMMENTS_TABLE.'
+ WHERE id IN ('.implode(',', $_POST['comment_id']).')
+;';
+ mysql_query($query);
+}
+// comments validation
+if (isset($_POST['validate']) and count($_POST['comment_id']) > 0)
+{
+ $query = '
+UPDATE '.COMMENTS_TABLE.'
+ SET validated = \'true\'
+ WHERE id IN ('.implode(',', $_POST['comment_id']).')
+;';
+ mysql_query($query);
+}
+// +-----------------------------------------------------------------------+
+// | page header and options |
+// +-----------------------------------------------------------------------+
if (!defined('IN_ADMIN'))
{
$title= $lang['title_comments'];
include(PHPWG_ROOT_PATH.'include/page_header.php');
}
-$template->set_filenames( array('comments'=>'comments.tpl') );
-$template->assign_vars(array(
- 'L_COMMENT_TITLE' => $title,
- 'L_COMMENT_STATS' => $lang['stats_last_days'],
- 'L_COMMENT_RETURN' => $lang['return_main_page'],
- 'L_DELETE' =>$lang['delete'],
- 'L_VALIDATE'=>$lang['submit'],
-
- 'T_DEL_IMG' =>PHPWG_ROOT_PATH.'template/'.$user['template'].'/theme/delete.gif',
-
- 'U_HOME' => add_session_id( PHPWG_ROOT_PATH.'category.php' )
- )
-);
+$template->set_filenames(array('comments'=>'comments.tpl'));
+$template->assign_vars(
+ array(
+ 'L_COMMENT_TITLE' => $title,
+ 'L_COMMENT_STATS' => $lang['stats_last_days'],
+ 'L_COMMENT_RETURN' => $lang['return_main_page'],
+ 'L_DELETE' =>$lang['delete'],
+ 'L_VALIDATE'=>$lang['submit'],
+
+ 'U_HOME' => add_session_id(PHPWG_ROOT_PATH.'category.php')
+ )
+ );
-foreach ( $conf['last_days'] as $option ) {
+foreach ($conf['last_days'] as $option)
+{
$url = $_SERVER['PHP_SELF'].'?last_days='.($option - 1);
- if (defined('IN_ADMIN')) $url.= '&amp;page=comments';
+ if (defined('IN_ADMIN'))
+ {
+ $url.= '&amp;page=comments';
+ }
$template->assign_block_vars(
'last_day_option',
array(
'OPTION'=>$option,
- 'T_STYLE'=>(( $option == MAX_DAYS + 1 )?'text-decoration:underline;':''),
- 'U_OPTION'=>add_session_id( $url )
+ 'T_STYLE'=>(($option == MAX_DAYS + 1)?'text-decoration:underline;':''),
+ 'U_OPTION'=>add_session_id($url)
)
);
}
-
+// +-----------------------------------------------------------------------+
+// | last comments display |
+// +-----------------------------------------------------------------------+
// 1. retrieving picture ids which have comments recently added
-$date = date( 'Y-m-d', time() - ( MAX_DAYS*24*60*60 ) );
-list($year,$month,$day) = explode( '-', $date);
-$maxtime = mktime( 0,0,0,$month,$day,$year );
-$query = 'SELECT DISTINCT(ic.image_id) as image_id,';
-$query.= '(ic.category_id) as category_id';
-$query.= ' FROM '.COMMENTS_TABLE.' AS c';
-$query.= ', '.IMAGE_CATEGORY_TABLE.' AS ic';
-$query.= ' WHERE c.image_id = ic.image_id';
-$query.= ' AND date > FROM_UNIXTIME('.$maxtime.')';
-if ( $user['status'] != 'admin' )
+$maxdate = date('Y-m-d', strtotime('-'.MAX_DAYS.' day'));
+
+$query = '
+SELECT DISTINCT(ic.image_id) AS image_id,(ic.category_id) AS category_id
+ FROM '.COMMENTS_TABLE.' AS c, '.IMAGE_CATEGORY_TABLE.' AS ic
+ WHERE c.image_id = ic.image_id
+ AND date >= \''.$maxdate.'\'';
+if ($user['status'] != 'admin')
{
- $query.= " AND validated = 'true'";
+ $query.= "
+ AND validated = 'true'";
// we must not show pictures of a forbidden category
- if ( $user['forbidden_categories'] != '' )
+ if ($user['forbidden_categories'] != '')
{
- $query.= ' AND category_id NOT IN ';
- $query.= '('.$user['forbidden_categories'].')';
+ $query.= '
+ AND category_id NOT IN ('.$user['forbidden_categories'].')';
}
}
-$query.= ' ORDER BY ic.image_id DESC';
-$query.= ';';
-$result = mysql_query( $query );
-if ( $user['status'] == 'admin' )
+$query.= '
+ ORDER BY ic.image_id DESC
+;';
+$result = mysql_query($query);
+if ($user['status'] == 'admin')
{
$template->assign_block_vars('validation', array());
}
-while ( $row = mysql_fetch_array( $result ) )
- {
- $category_id=$row['category_id'];
-
- // for each picture, getting informations for displaying thumbnail and
- // link to the full size picture
- $query = 'SELECT name,file,storage_category_id as cat_id,tn_ext';
- $query.= ' FROM '.IMAGES_TABLE;
- $query.= ' WHERE id = '.$row['image_id'];
- $query.= ';';
- $subresult = mysql_query( $query );
- $subrow = mysql_fetch_array( $subresult );
+while ($row = mysql_fetch_array($result))
+{
+ $category_id = $row['category_id'];
+
+ // for each picture, getting informations for displaying thumbnail and
+ // link to the full size picture
+ $query = '
+SELECT name,file,storage_category_id as cat_id,tn_ext
+ FROM '.IMAGES_TABLE.'
+ WHERE id = '.$row['image_id'].'
+;';
+ $subresult = mysql_query($query);
+ $subrow = mysql_fetch_array($subresult);
- if ( !isset($array_cat_directories[$subrow['cat_id']]) )
+ if (!isset($array_cat_names[$subrow['cat_id']]))
+ {
+ $cat_result = get_cat_info($subrow['cat_id']);
+ $array_cat_names[$subrow['cat_id']] =
+ get_cat_display_name($cat_result['name'], ' &gt; ', '');
+ }
+
+ // name of the picture
+ $name = $array_cat_names[$category_id].' &gt; ';
+ if (!empty($subrow['name']))
+ {
+ $name.= $subrow['name'];
+ }
+ else
+ {
+ $name.= str_replace('_',' ',get_filename_wo_extension($subrow['file']));
+ }
+ $name.= ' [ '.$subrow['file'].' ]';
+ // source of the thumbnail picture
+ $thumbnail_src = get_thumbnail_src($subrow['file'],
+ $subrow['cat_id'],
+ @$subrow['tn_ext']);
+ // link to the full size picture
+ $url = PHPWG_ROOT_PATH.'picture.php?cat='.$category_id;
+ $url.= '&amp;image_id='.$row['image_id'];
+
+ $template->assign_block_vars(
+ 'picture',
+ array(
+ 'TITLE_IMG'=>$name,
+ 'I_THUMB'=>$thumbnail_src,
+ 'U_THUMB'=>add_session_id($url)
+ ));
+
+ // for each picture, retrieving all comments
+ $query = '
+SELECT *
+ FROM '.COMMENTS_TABLE.'
+ WHERE image_id = '.$row['image_id'].'
+ AND date >= \''.$maxdate.'\'';
+ if ($user['status'] != 'admin')
+ {
+ $query.= '
+ AND validated = \'true\'';
+ }
+ $query.= '
+ ORDER BY date DESC
+;';
+ $handleresult = mysql_query($query);
+ while ($subrow = mysql_fetch_array($handleresult))
+ {
+ $author = $subrow['author'];
+ if (empty($subrow['author']))
{
- $array_cat_directories[$subrow['cat_id']] =
- get_complete_dir( $subrow['cat_id'] );
- $cat_result = get_cat_info( $subrow['cat_id'] );
- $array_cat_site_id[$subrow['cat_id']] = $cat_result['site_id'];
- $array_cat_names[$subrow['cat_id']] =
- get_cat_display_name( $cat_result['name'], ' &gt; ', '' );
+ $author = $lang['guest'];
}
- $file = get_filename_wo_extension( $subrow['file'] );
- // name of the picture
- $name = $array_cat_names[$category_id].' &gt; ';
- if (!empty($subrow['name'])) $name.= $subrow['name'];
- else $name.= str_replace( '_', ' ', $file );
- $name.= ' [ '.$subrow['file'].' ]';
- // source of the thumbnail picture
- if (isset($subrow['tn_ext']) and $subrow['tn_ext'] != '')
- {
- $src = $array_cat_directories[$subrow['cat_id']];
- $src.= 'thumbnail/'.$conf['prefix_thumbnail'];
- $src.= $file.'.'.$subrow['tn_ext'];
- }
- else
- {
- $src = './template/'.$user['template'].'/mimetypes/';
- $src.= strtolower(get_extension($subrow['file'])).'.png';
- }
-
- // link to the full size picture
- $url = PHPWG_ROOT_PATH.'picture.php?cat='.$category_id;
- $url.= '&amp;image_id='.$row['image_id'];
-
$template->assign_block_vars(
- 'picture',
+ 'picture.comment',
array(
- 'TITLE_IMG'=>$name,
- 'I_THUMB'=>$src,
- 'U_THUMB'=>add_session_id( $url )
+ 'COMMENT_AUTHOR'=>$author,
+ 'COMMENT_DATE'=>format_date($subrow['date'],'mysql_datetime',true),
+ 'COMMENT'=>parse_comment_content($subrow['content']),
));
- // for each picture, retrieving all comments
- $query = 'SELECT * FROM '.COMMENTS_TABLE;
- $query.= ' WHERE image_id = '.$row['image_id'];
- $query.= ' AND date > FROM_UNIXTIME('.$maxtime.')';
- if ( $user['status'] != 'admin' )
- {
- $query.= " AND validated = 'true'";
- }
- $query.= ' ORDER BY date DESC';
- $query.= ';';
- $handleresult = mysql_query( $query );
- while ( $subrow = mysql_fetch_array( $handleresult ) )
+ if ($user['status'] == 'admin')
{
- $author = $subrow['author'];
- if ( empty($subrow['author'] )) $author = $lang['guest'];
- $content = nl2br( $subrow['content'] );
-
- // replace _word_ by an underlined word
- $pattern = '/_([^\s]*)_/';
- $replacement = '<span style="text-decoration:underline;">\1</span>';
- $content = preg_replace( $pattern, $replacement, $content );
-
- // replace *word* by a bolded word
- $pattern = '/\*([^\s]*)\*/';
- $replacement = '<span style="font-weight:bold;">\1</span>';
- $content = preg_replace( $pattern, $replacement, $content );
-
- // replace /word/ by an italic word
- $pattern = '/\/([^\s]*)\//';
- $replacement = '<span style="font-style:italic;">\1</span>';
- $content = preg_replace( $pattern, $replacement, $content );
$template->assign_block_vars(
- 'picture.comment',array(
- 'COMMENT_AUTHOR'=>$author,
- 'COMMENT_DATE'=>format_date( $subrow['date'],'mysql_datetime',true ),
- 'COMMENT'=>$content,
+ 'picture.comment.validation',
+ array(
+ 'ID'=> $subrow['id'],
+ 'CHECKED'=>($subrow['validated']=='false')?'checked="checked"': ''
));
- if ( $user['status'] == 'admin' )
- {
- $template->assign_block_vars(
- 'picture.comment.validation', array(
- 'ID'=> $subrow['id'],
- 'CHECKED'=>($subrow['validated']=='false')?'checked="checked"': ''
- ));
- }
}
}
-//----------------------------------------------------------- html code display
+}
+// +-----------------------------------------------------------------------+
+// | html code display |
+// +-----------------------------------------------------------------------+
if (defined('IN_ADMIN'))
{
$template->assign_var_from_handle('ADMIN_CONTENT', 'comments');