<?php // $Id: confirm.php,v 1.20 2005/05/16 22:00:43 stronk7 Exp $

    require_once("../config.php");
    require_once("../auth/$CFG->auth/lib.php");

    if (isset($_GET['p']) and isset($_GET['s']) ) {     #  p = user.secret   s = user.username

        $user = get_complete_user_data('username', $_GET['s']);

        if (!empty($user)) {

            if ($user->confirmed) {
                print_header(get_string("alreadyconfirmed"), get_string("alreadyconfirmed"), "", "");
		if (current_language() == 'ja') { // t-kita2005-07-17
                echo "<center><h3>".get_string("thanks").", ". fullname($user) . " さん。</h3>\n";
		}else{
                echo "<center><h3>".get_string("thanks").", ". fullname($user) . "</h3>\n";
		}
                echo "<h4>".get_string("alreadyconfirmed")."</h4>\n";
                echo "<h3> -> <a href=\"$CFG->wwwroot/course/\">".get_string("courses")."</a></h3></center>\n";
                print_footer();
                exit;
            }

            if ($user->secret == $_GET['p']) {   // They have provided the secret key to get in

                if (!set_field("user", "confirmed", 1, "id", $user->id)) {
                    error("Could not confirm this user!");
                }
                if (!set_field("user", "firstaccess", time(), "id", $user->id)) {
                    error("Could not set this user's first access date!");
                }
                if (isset($CFG->auth_user_create) and $CFG->auth_user_create==1 and function_exists('auth_user_activate') ) {
                    if (!auth_user_activate($user->username)) {
                         error("Could not activate this user!");
                    }
                }

                // The user has confirmed successfully, let's log them in
                
                if (!$USER = get_complete_user_data('username', $user->username)) {
                    error("Something serious is wrong with the database");
                }

                set_moodle_cookie($USER->username);

                if ( ! empty($SESSION->wantsurl) ) {   // Send them where they were going
                    $goto = $SESSION->wantsurl;
                    unset($SESSION->wantsurl);
                    redirect("$goto");
                }
 
                print_header(get_string("confirmed"), get_string("confirmed"), "", "");
		if (current_language() == 'ja') { // t-kita2005-07-17
                echo "<center><h3>".get_string("thanks").", ". fullname($USER) . " さん。</h3>\n";
		}else{	
                echo "<center><h3>".get_string("thanks").", ". fullname($USER) . "</h3>\n";
		}
                echo "<h4>".get_string("confirmed")."</h4>\n";
                echo "<h3> -> <a href=\"$CFG->wwwroot/course/\">".get_string("courses")."</a></h3></center>\n";
                print_footer();
                exit;

            } else {
                error("Invalid confirmation data");
            }
        }
    } else {
        error(get_string("errorwhenconfirming"));
    }

    redirect("$CFG->wwwroot/");

?>
