######################################################################
#
#  Remove the login ticket
#
######################################################################
#
#
# Copyright 2000-2008 University of Southampton. All Rights Reserved.
# 
#  This file is part of GNU EPrints 3.
#  
#  Copyright (c) 2000-2008 University of Southampton, UK. SO17 1BJ.
#  
#  EPrints 3 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; either version 2 of the License, or
#  (at your option) any later version.
#  
#  EPrints 3 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 General Public License for more details.
#  
#  You should have received a copy of the GNU General Public License
#  along with EPrints 3; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
######################################################################

use EPrints;

use strict;
my $session = new EPrints::Session;
exit( 0 ) unless( defined $session );

my $page=$session->make_doc_fragment();



if( $session->get_repository->can_call( 'on_logout' ) )
{
	$session->get_repository->call( 'on_logout', $session );
}



my $ticketid = EPrints::Apache::AnApache::cookie( $session->get_request, "eprints_session" );

my $dataset = $session->get_repository->get_dataset( "loginticket" );

$session->get_database->delete_from(
	$dataset->get_sql_table_name(),
	["code"],
	[$ticketid],
);
$session->logout;



$page->appendChild( $session->render_message( 
	"message",
	$session->make_text( "Logout OK!" ) ) );

$page->appendChild( $session->html_phrase( "general:frontpage_link" ) );
	
my $title = $session->make_text( "Logout" );
$session->build_page( $title, $page, "login" );
$session->send_page();

$session->terminate;
exit;



