]> git.wh0rd.org - tt-rss.git/blobdiff - register.php
add Public_Handler
[tt-rss.git] / register.php
index 2b464dc8fdaea03732c249a7f894edc787332cb5..33a6628f41cf1a78141234bf7ced39d5f8f592fc 100644 (file)
@@ -4,6 +4,10 @@
        // 1) templates/register_notice.txt - displayed above the registration form
        // 2) register_expire_do.php - contains user expiration queries when necessary
 
+       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
+
+       require_once 'lib/phpmailer/class.phpmailer.php';
+
        $action = $_REQUEST["action"];
 
        require_once "functions.php";
 
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       init_connection($link);
+       if (!init_connection($link)) return;
+
+       if ($_REQUEST["format"] == "feed") {
+               header("Content-Type: text/xml");
+
+               print '<?xml version="1.0" encoding="utf-8"?>';
+               print "<feed xmlns=\"http://www.w3.org/2005/Atom\">
+                       <id>".htmlspecialchars(SELF_URL_PATH . "/register.php")."</id>
+                       <title>Tiny Tiny RSS registration slots</title>
+                       <link rel=\"self\" href=\"".htmlspecialchars(SELF_URL_PATH . "/register.php?format=feed")."\"/>
+                       <link rel=\"alternate\" href=\"".htmlspecialchars(SELF_URL_PATH)."\"/>";
+
+               if (ENABLE_REGISTRATION) {
+                       $result = db_query($link, "SELECT COUNT(*) AS cu FROM ttrss_users");
+                       $num_users = db_fetch_result($result, 0, "cu");
+
+                       $num_users = REG_MAX_USERS - $num_users;
+                       if ($num_users < 0) $num_users = 0;
+                       $reg_suffix = "enabled";
+               } else {
+                       $num_users = 0;
+                       $reg_suffix = "disabled";
+               }
+
+               print "<entry>
+                       <id>".htmlspecialchars(SELF_URL_PATH)."/register.php?$num_users"."</id>
+                       <link rel=\"alternate\" href=\"".htmlspecialchars(SELF_URL_PATH . "/register.php")."\"/>";
+
+               print "<title>$num_users slots are currently available, registration $reg_suffix</title>";
+               print "<summary>$num_users slots are currently available, registration $reg_suffix</summary>";
+
+               print "</entry>";
+
+               print "</feed>";
+
+               return;
+       }
 
        /* Remove users which didn't login after receiving their registration information */
 
@@ -55,7 +95,7 @@
 <title>Create new account</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <link rel="stylesheet" type="text/css" href="utility.css">
-<script type="text/javascript" src="functions.js"></script>
+<script type="text/javascript" src="js/functions.js"></script>
 <script type="text/javascript" src="lib/prototype.js"></script>
 <script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
 </head>
 
 <body>
 
-<div class="floatingLogo"><img src="images/logo.png"></div>
+<div class="floatingLogo"><img src="images/logo_wide.png"></div>
 
 <h1><?php echo __("Create new account") ?></h1>
 
                if (!ENABLE_REGISTRATION) {
                        print_error(__("New user registrations are administratively disabled."));
 
-                       print "<p><form method=\"GET\" action=\"backend.php?op=logout\">
+                       print "<p><form method=\"GET\" action=\"backend.php\">
+                               <input type=\"hidden\" name=\"op\" value=\"logout\">
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>";
                        return;
        </td><td>
                <input type="submit" value="<?php echo __('Check availability') ?>" onclick='return checkUsername()'>
        </td></tr>
-       <td><?php echo __('Email:') ?></td><td>
+       <tr><td><?php echo __('Email:') ?></td><td>
                <input name="email">
        </td></tr>
-       <td><?php echo __('How much is two plus two:') ?></td><td>
+       <tr><td><?php echo __('How much is two plus two:') ?></td><td>
                <input name="turing_test"></td></tr>
        <tr><td colspan="2" align="right">
        <input type="submit" name="sub_btn" value="<?php echo __('Submit registration') ?>"
-                       disabled="true" onclick='return validateRegForm()'>
+                       disabled="disabled" onclick='return validateRegForm()'>
        </td></tr>
        </table>
        </form>
 
-       <?php print "<p><form method=\"GET\" action=\"tt-rss.php\">
+       <?php print "<p><form method=\"GET\" action=\"index.php\">
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>"; ?>
 
 
                if (!$login || !$email || !$test) {
                        print_error(__("Your registration information is incomplete."));
-                       print "<p><form method=\"GET\" action=\"tt-rss.php\">
+                       print "<p><form method=\"GET\" action=\"index.php\">
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>";
                        return;
 
                        if ($is_registered) {
                                print_error(__('Sorry, this username is already taken.'));
-                               print "<p><form method=\"GET\" action=\"tt-rss.php\">
+                               print "<p><form method=\"GET\" action=\"index.php\">
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>";
                        } else {
 
                                if (db_num_rows($result) != 1) {
                                        print_error(__('Registration failed.'));
-                                       print "<p><form method=\"GET\" action=\"tt-rss.php\">
+                                       print "<p><form method=\"GET\" action=\"index.php\">
                                        <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                        </form>";
                                } else {
 
                                        print_notice(__("Account created successfully."));
 
-                                       print "<p><form method=\"GET\" action=\"tt-rss.php\">
+                                       print "<p><form method=\"GET\" action=\"index.php\">
                                        <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                        </form>";
 
 
                        } else {
                                print_error('Plese check the form again, you have failed the robot test.');
-                               print "<p><form method=\"GET\" action=\"tt-rss.php\">
+                               print "<p><form method=\"GET\" action=\"index.php\">
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>";
 
 
        <?php print_notice(__('New user registrations are currently closed.')) ?>
 
-       <?php print "<p><form method=\"GET\" action=\"tt-rss.php\">
+       <?php print "<p><form method=\"GET\" action=\"index.php\">
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>"; ?>