2007-02-28 04:07:12 +01:00
< ? php
// +-----------------------------------------------------------------------+
2011-01-18 01:02:52 +01:00
// | Piwigo - a PHP based photo gallery |
2008-04-05 00:57:23 +02:00
// +-----------------------------------------------------------------------+
2011-01-18 01:02:52 +01:00
// | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
2008-04-05 00:57:23 +02:00
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
// +-----------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation |
// | |
// | 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 |
2007-02-28 04:07:12 +01:00
// | General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
2007-06-28 04:16:03 +02:00
/** returns a category id that corresponds to the given permalink ( or null )
* @ param string permalink
*/
function get_cat_id_from_permalink ( $permalink )
{
$query = '
SELECT id FROM '.CATEGORIES_TABLE.'
2010-06-17 20:10:11 +02:00
WHERE permalink = \ '' . $permalink . '\'' ;
2007-06-28 04:16:03 +02:00
$ids = array_from_query ( $query , 'id' );
if ( ! empty ( $ids ))
{
return $ids [ 0 ];
}
return null ;
}
/** returns a category id that has used before this permalink ( or null )
* @ param string permalink
* @ param boolean is_hit if true update the usage counters on the old permalinks
*/
function get_cat_id_from_old_permalink ( $permalink )
{
$query = '
SELECT c . id
FROM '.OLD_PERMALINKS_TABLE.' op INNER JOIN '.CATEGORIES_TABLE.' c
ON op . cat_id = c . id
2010-07-05 23:18:14 +02:00
WHERE op . permalink = \ '' . $permalink . ' \ '
2007-06-28 04:16:03 +02:00
LIMIT 1 ' ;
$result = pwg_query ( $query );
$cat_id = null ;
2009-11-20 15:17:04 +01:00
if ( pwg_db_num_rows ( $result ) )
list ( $cat_id ) = pwg_db_fetch_row ( $result );
2007-06-28 04:16:03 +02:00
return $cat_id ;
}
2007-02-28 04:07:12 +01:00
/** deletes the permalink associated with a category
* returns true on success
* @ param int cat_id the target category id
* @ param boolean save if true , the current category - permalink association
* is saved in the old permalinks table in case external links hit it
*/
function delete_cat_permalink ( $cat_id , $save )
{
global $page , $cache ;
$query = '
SELECT permalink
FROM '.CATEGORIES_TABLE.'
2010-06-17 20:10:11 +02:00
WHERE id = \ '' . $cat_id . ' \ '
2007-02-28 04:07:12 +01:00
; ' ;
$result = pwg_query ( $query );
2009-11-20 15:17:04 +01:00
if ( pwg_db_num_rows ( $result ) )
2007-02-28 04:07:12 +01:00
{
2009-11-20 15:17:04 +01:00
list ( $permalink ) = pwg_db_fetch_row ( $result );
2007-02-28 04:07:12 +01:00
}
if ( ! isset ( $permalink ) )
{ // no permalink; nothing to do
return true ;
}
if ( $save )
{
2007-06-28 04:16:03 +02:00
$old_cat_id = get_cat_id_from_old_permalink ( $permalink );
2007-02-28 04:07:12 +01:00
if ( isset ( $old_cat_id ) and $old_cat_id != $cat_id )
{
$page [ 'errors' ][] =
sprintf (
2010-09-21 23:14:54 +02:00
l10n ( 'Permalink %s has been previously used by album %s. Delete from the permalink history first' ),
2007-02-28 04:07:12 +01:00
$permalink , $old_cat_id
);
return false ;
}
}
$query = '
UPDATE '.CATEGORIES_TABLE.'
SET permalink = NULL
WHERE id = '.$cat_id.'
LIMIT 1 ' ;
pwg_query ( $query );
unset ( $cache [ 'cat_names' ] ); //force regeneration
if ( $save )
{
if ( isset ( $old_cat_id ) )
{
$query = '
UPDATE '.OLD_PERMALINKS_TABLE.'
SET date_deleted = NOW ()
2010-06-17 20:10:11 +02:00
WHERE cat_id = '.$cat_id.' AND permalink = \ '' . $permalink . '\'' ;
2007-02-28 04:07:12 +01:00
}
else
{
$query = '
INSERT INTO '.OLD_PERMALINKS_TABLE.'
( permalink , cat_id , date_deleted )
VALUES
2010-06-17 20:10:11 +02:00
( \ '' . $permalink . '\',' . $cat_id . ',NOW() )' ;
2007-02-28 04:07:12 +01:00
}
pwg_query ( $query );
}
return true ;
}
/** sets a new permalink for a category
* returns true on success
* @ param int cat_id the target category id
* @ param string permalink the new permalink
* @ param boolean save if true , the current category - permalink association
* is saved in the old permalinks table in case external links hit it
*/
function set_cat_permalink ( $cat_id , $permalink , $save )
{
global $page , $cache ;
2007-06-28 04:16:03 +02:00
$sanitized_permalink = preg_replace ( '#[^a-zA-Z0-9_/-]#' , '' , $permalink );
$sanitized_permalink = trim ( $sanitized_permalink , '/' );
$sanitized_permalink = str_replace ( '//' , '/' , $sanitized_permalink );
2007-02-28 04:07:12 +01:00
if ( $sanitized_permalink != $permalink
2007-03-06 03:07:15 +01:00
or preg_match ( '#^(\d)+(-.*)?$#' , $permalink ) )
2007-02-28 04:07:12 +01:00
{
2010-03-20 23:35:39 +01:00
$page [ 'errors' ][] = l10n ( 'The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"' );
2007-02-28 04:07:12 +01:00
return false ;
}
2007-03-06 03:07:15 +01:00
// check if the new permalink is actively used
2007-02-28 04:07:12 +01:00
$existing_cat_id = get_cat_id_from_permalink ( $permalink );
if ( isset ( $existing_cat_id ) )
{
if ( $existing_cat_id == $cat_id )
{ // no change required
return true ;
}
else
{
$page [ 'errors' ][] =
sprintf (
2010-09-21 23:14:54 +02:00
l10n ( 'Permalink %s is already used by album %s' ),
2007-02-28 04:07:12 +01:00
$permalink , $existing_cat_id
);
return false ;
}
}
2007-03-06 03:07:15 +01:00
// check if the new permalink was historically used
2007-06-28 04:16:03 +02:00
$old_cat_id = get_cat_id_from_old_permalink ( $permalink );
2007-03-06 03:07:15 +01:00
if ( isset ( $old_cat_id ) and $old_cat_id != $cat_id )
2007-02-28 04:07:12 +01:00
{
2007-03-06 03:07:15 +01:00
$page [ 'errors' ][] =
sprintf (
2010-09-21 23:14:54 +02:00
l10n ( 'Permalink %s has been previously used by album %s. Delete from the permalink history first' ),
2007-03-06 03:07:15 +01:00
$permalink , $old_cat_id
);
return false ;
2007-02-28 04:07:12 +01:00
}
2007-03-06 03:07:15 +01:00
2007-02-28 04:07:12 +01:00
if ( ! delete_cat_permalink ( $cat_id , $save ) )
{
return false ;
}
2007-03-06 03:07:15 +01:00
if ( isset ( $old_cat_id ) )
{ // the new permalink must not be active and old at the same time
assert ( $old_cat_id == $cat_id );
$query = '
DELETE FROM '.OLD_PERMALINKS_TABLE.'
2010-06-17 20:10:11 +02:00
WHERE cat_id = '.$old_cat_id.' AND permalink = \ '' . $permalink . '\'' ;
2007-03-06 03:07:15 +01:00
pwg_query ( $query );
}
2007-02-28 04:07:12 +01:00
$query = '
UPDATE '.CATEGORIES_TABLE.'
2010-06-17 20:10:11 +02:00
SET permalink = \ '' . $permalink . ' \ '
2010-02-03 10:26:32 +01:00
WHERE id = ' . $cat_id ;
// LIMIT 1';
2007-02-28 04:07:12 +01:00
pwg_query ( $query );
unset ( $cache [ 'cat_names' ] ); //force regeneration
return true ;
}
?>