source: trunk/include/picture_comment.inc.php @ 2227

Last change on this file since 2227 was 2227, checked in by rvelices, 16 years ago

picture, footer and picture modify template migration

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
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-2008 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: picture_comment.inc.php 2227 2008-02-29 01:25:13Z rvelices $
8// | last update   : $Date: 2008-02-29 01:25:13 +0000 (Fri, 29 Feb 2008) $
9// | last modifier : $Author: rvelices $
10// | revision      : $Revision: 2227 $
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;
35foreach ($related_categories as $category)
36{
37  if ($category['commentable'] == 'true')
38  {
39    $page['show_comments'] = true;
40    break;
41  }
42}
43
44if ( $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  $template->assign(
77      ($comment_action=='reject') ? 'errors' : 'infos',
78      $infos
79    );
80
81  // allow plugins to notify what's going on
82  trigger_action( 'user_comment_insertion',
83      array_merge($comm, array('action'=>$comment_action) )
84    );
85}
86elseif ( isset($_POST['content']) )
87{
88  set_status_header(403);
89  die('ugly spammer');
90}
91
92if ($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  $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(
116    array(
117      'COMMENT_COUNT' => $row['nb_comments'],
118      'COMMENT_NAV_BAR' => $navigation_bar,
119      )
120    );
121
122  if ($row['nb_comments'] > 0)
123  {
124    $query = '
125SELECT id,author,date,image_id,content
126  FROM '.COMMENTS_TABLE.'
127  WHERE image_id = '.$page['image_id'].'
128    AND validated = \'true\'
129  ORDER BY date ASC
130  LIMIT '.$page['start'].', '.$conf['nb_comment_page'].'
131;';
132    $result = pwg_query( $query );
133
134    while ($row = mysql_fetch_array($result))
135    {
136      $tpl_comment = 
137        array(
138          'AUTHOR' => trigger_event('render_comment_author',
139            empty($row['author'])
140            ? l10n('guest')
141            : $row['author']),
142
143          'DATE' => format_date(
144            $row['date'],
145            'mysql_datetime',
146            true),
147
148          'CONTENT' => trigger_event('render_comment_content',$row['content']),
149        );
150
151      if (is_admin())
152      {
153        $tpl_comment['U_DELETE'] =
154            add_url_params(
155                  $url_self,
156                  array(
157                    'action'=>'delete_comment',
158                    'comment_to_delete'=>$row['id']
159                  )
160              );
161      }
162      $template->append('comments', $tpl_comment);
163    }
164  }
165
166  if (!is_a_guest()
167      or (is_a_guest() and $conf['comments_forall']))
168  {
169    include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php');
170    $key = get_comment_post_key($page['image_id']);
171    $content = '';
172    if ('reject'===@$comment_action)
173    {
174      $content = htmlspecialchars($comm['content']);
175    }
176    $template->assign('comment_add',
177        array(
178          'F_ACTION' => $url_self,
179          'KEY' => $key,
180          'CONTENT' => $content,
181          'SHOW_AUTHOR' => !is_classic_user()
182        ));
183  }
184}
185
186?>
Note: See TracBrowser for help on using the repository browser.