| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | PhpWebGallery - a PHP based picture gallery | |
|---|
| 4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
|---|
| 5 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
|---|
| 6 | // +-----------------------------------------------------------------------+ |
|---|
| 7 | // | file : $Id$ |
|---|
| 8 | // | last update : $Date$ |
|---|
| 9 | // | last modifier : $Author$ |
|---|
| 10 | // | revision : $Revision$ |
|---|
| 11 | // +-----------------------------------------------------------------------+ |
|---|
| 12 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 13 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 14 | // | the Free Software Foundation | |
|---|
| 15 | // | | |
|---|
| 16 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 19 | // | General Public License for more details. | |
|---|
| 20 | // | | |
|---|
| 21 | // | You should have received a copy of the GNU General Public License | |
|---|
| 22 | // | along with this program; if not, write to the Free Software | |
|---|
| 23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 24 | // | USA. | |
|---|
| 25 | // +-----------------------------------------------------------------------+ |
|---|
| 26 | |
|---|
| 27 | /** |
|---|
| 28 | * This file is included by the picture page to manage user comments |
|---|
| 29 | * |
|---|
| 30 | */ |
|---|
| 31 | |
|---|
| 32 | // the picture is commentable if it belongs at least to one category which |
|---|
| 33 | // is commentable |
|---|
| 34 | $page['show_comments'] = false; |
|---|
| 35 | foreach ($related_categories as $category) |
|---|
| 36 | { |
|---|
| 37 | if ($category['commentable'] == 'true') |
|---|
| 38 | { |
|---|
| 39 | $page['show_comments'] = true; |
|---|
| 40 | break; |
|---|
| 41 | } |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | if ( $page['show_comments'] and isset( $_POST['content'] ) ) |
|---|
| 45 | { |
|---|
| 46 | if ( is_a_guest() and !$conf['comments_forall'] ) |
|---|
| 47 | { |
|---|
| 48 | die ('Session expired'); |
|---|
| 49 | } |
|---|
| 50 | |
|---|
| 51 | $comm = array( |
|---|
| 52 | 'author' => trim( stripslashes(@$_POST['author']) ), |
|---|
| 53 | 'content' => trim( stripslashes($_POST['content']) ), |
|---|
| 54 | 'image_id' => $page['image_id'], |
|---|
| 55 | ); |
|---|
| 56 | |
|---|
| 57 | include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php'); |
|---|
| 58 | |
|---|
| 59 | $comment_action = insert_user_comment($comm, @$_POST['key'], $infos ); |
|---|
| 60 | |
|---|
| 61 | switch ($comment_action) |
|---|
| 62 | { |
|---|
| 63 | case 'moderate': |
|---|
| 64 | array_push( $infos, l10n('comment_to_validate') ); |
|---|
| 65 | case 'validate': |
|---|
| 66 | array_push( $infos, l10n('comment_added')); |
|---|
| 67 | break; |
|---|
| 68 | case 'reject': |
|---|
| 69 | set_status_header(403); |
|---|
| 70 | array_push($infos, l10n('comment_not_added') ); |
|---|
| 71 | break; |
|---|
| 72 | default: |
|---|
| 73 | trigger_error('Invalid comment action '.$comment_action, E_USER_WARNING); |
|---|
| 74 | } |
|---|
| 75 | |
|---|
| 76 | $block_var = ($comment_action=='reject') ? 'errors.error' : 'infos.info'; |
|---|
| 77 | foreach ($infos as $info) |
|---|
| 78 | { |
|---|
| 79 | $template->assign_block_vars( |
|---|
| 80 | $block_var, |
|---|
| 81 | array( 'TEXT'=>$info ) |
|---|
| 82 | ); |
|---|
| 83 | } |
|---|
| 84 | |
|---|
| 85 | // allow plugins to notify what's going on |
|---|
| 86 | trigger_action( 'user_comment_insertion', |
|---|
| 87 | array_merge($comm, array('action'=>$comment_action) ) |
|---|
| 88 | ); |
|---|
| 89 | } |
|---|
| 90 | |
|---|
| 91 | |
|---|
| 92 | if ($page['show_comments']) |
|---|
| 93 | { |
|---|
| 94 | // number of comment for this picture |
|---|
| 95 | $query = 'SELECT COUNT(*) AS nb_comments'; |
|---|
| 96 | $query.= ' FROM '.COMMENTS_TABLE.' WHERE image_id = '.$page['image_id']; |
|---|
| 97 | $query.= " AND validated = 'true'"; |
|---|
| 98 | $query.= ';'; |
|---|
| 99 | $row = mysql_fetch_array( pwg_query( $query ) ); |
|---|
| 100 | |
|---|
| 101 | // navigation bar creation |
|---|
| 102 | if (!isset($page['start'])) |
|---|
| 103 | { |
|---|
| 104 | $page['start'] = 0; |
|---|
| 105 | } |
|---|
| 106 | |
|---|
| 107 | $page['navigation_bar'] = create_navigation_bar( |
|---|
| 108 | duplicate_picture_url(array(), array('start')), |
|---|
| 109 | $row['nb_comments'], |
|---|
| 110 | $page['start'], |
|---|
| 111 | $conf['nb_comment_page'], |
|---|
| 112 | true // We want a clean URL |
|---|
| 113 | ); |
|---|
| 114 | |
|---|
| 115 | $template->assign_block_vars( |
|---|
| 116 | 'comments', |
|---|
| 117 | array( |
|---|
| 118 | 'NB_COMMENT' => $row['nb_comments'], |
|---|
| 119 | 'NAV_BAR' => $page['navigation_bar'], |
|---|
| 120 | ) |
|---|
| 121 | ); |
|---|
| 122 | |
|---|
| 123 | if ($row['nb_comments'] > 0) |
|---|
| 124 | { |
|---|
| 125 | $query = ' |
|---|
| 126 | SELECT id,author,date,image_id,content |
|---|
| 127 | FROM '.COMMENTS_TABLE.' |
|---|
| 128 | WHERE image_id = '.$page['image_id'].' |
|---|
| 129 | AND validated = \'true\' |
|---|
| 130 | ORDER BY date ASC |
|---|
| 131 | LIMIT '.$page['start'].', '.$conf['nb_comment_page'].' |
|---|
| 132 | ;'; |
|---|
| 133 | $result = pwg_query( $query ); |
|---|
| 134 | |
|---|
| 135 | while ($row = mysql_fetch_array($result)) |
|---|
| 136 | { |
|---|
| 137 | $template->assign_block_vars( |
|---|
| 138 | 'comments.comment', |
|---|
| 139 | array( |
|---|
| 140 | 'COMMENT_AUTHOR' => trigger_event('render_comment_author', |
|---|
| 141 | empty($row['author']) |
|---|
| 142 | ? l10n('guest') |
|---|
| 143 | : $row['author']), |
|---|
| 144 | |
|---|
| 145 | 'COMMENT_DATE' => format_date( |
|---|
| 146 | $row['date'], |
|---|
| 147 | 'mysql_datetime', |
|---|
| 148 | true), |
|---|
| 149 | |
|---|
| 150 | 'COMMENT' => trigger_event('render_comment_content',$row['content']), |
|---|
| 151 | ) |
|---|
| 152 | ); |
|---|
| 153 | |
|---|
| 154 | if (is_admin()) |
|---|
| 155 | { |
|---|
| 156 | $template->assign_block_vars( |
|---|
| 157 | 'comments.comment.delete', |
|---|
| 158 | array( |
|---|
| 159 | 'U_COMMENT_DELETE' => |
|---|
| 160 | add_url_params( |
|---|
| 161 | $url_self, |
|---|
| 162 | array( |
|---|
| 163 | 'action'=>'delete_comment', |
|---|
| 164 | 'comment_to_delete'=>$row['id'] |
|---|
| 165 | ) |
|---|
| 166 | ) |
|---|
| 167 | ) |
|---|
| 168 | ); |
|---|
| 169 | } |
|---|
| 170 | } |
|---|
| 171 | } |
|---|
| 172 | |
|---|
| 173 | if (!is_a_guest() |
|---|
| 174 | or (is_a_guest() and $conf['comments_forall'])) |
|---|
| 175 | { |
|---|
| 176 | include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php'); |
|---|
| 177 | $key = get_comment_post_key($page['image_id']); |
|---|
| 178 | $content = ''; |
|---|
| 179 | if ('reject'===@$comment_action) |
|---|
| 180 | { |
|---|
| 181 | $content = htmlspecialchars($comm['content']); |
|---|
| 182 | } |
|---|
| 183 | $template->assign_block_vars('comments.add_comment', |
|---|
| 184 | array( |
|---|
| 185 | 'KEY' => $key, |
|---|
| 186 | 'CONTENT' => $content |
|---|
| 187 | )); |
|---|
| 188 | |
|---|
| 189 | // display author field if the user status is guest or generic |
|---|
| 190 | if (!is_classic_user()) |
|---|
| 191 | { |
|---|
| 192 | $template->assign_block_vars( |
|---|
| 193 | 'comments.add_comment.author_field', array() |
|---|
| 194 | ); |
|---|
| 195 | } |
|---|
| 196 | } |
|---|
| 197 | } |
|---|
| 198 | |
|---|
| 199 | ?> |
|---|