summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAndreas Habel <mail@exceptionfault.de>2009-10-20 19:03:02 +0200
committerAndreas Habel <mail@exceptionfault.de>2009-10-20 19:03:02 +0200
commit6e1d4a6d8b9288356e64674f41209be4f4c2acfe (patch)
tree48bd44c04c0d3880d28652637bb0e925aac8b3d1 /includes
parent5fdd082f7b4631d75b920e4ea5736dc67ab056dc (diff)
downloadwebsite-6e1d4a6d8b9288356e64674f41209be4f4c2acfe.tar.gz
website-6e1d4a6d8b9288356e64674f41209be4f4c2acfe.tar.bz2
website-6e1d4a6d8b9288356e64674f41209be4f4c2acfe.tar.xz
website-6e1d4a6d8b9288356e64674f41209be4f4c2acfe.zip
New accounts will be written to a mysql database
Diffstat (limited to 'includes')
-rw-r--r--includes/conf/mysql.conf.php8
-rw-r--r--includes/libs/libmysql.php89
-rw-r--r--includes/libs/libstrutils.php10
-rw-r--r--includes/models/account.php102
4 files changed, 209 insertions, 0 deletions
diff --git a/includes/conf/mysql.conf.php b/includes/conf/mysql.conf.php
new file mode 100644
index 0000000..05122cd
--- /dev/null
+++ b/includes/conf/mysql.conf.php
@@ -0,0 +1,8 @@
+<?php
+
+ $conf['mysql_hostname'] = "localhost";
+ $conf['mysql_database'] = "test";
+ $conf['mysql_username'] = "test";
+ $conf['mysql_password'] = "test123";
+
+?> \ No newline at end of file
diff --git a/includes/libs/libmysql.php b/includes/libs/libmysql.php
new file mode 100644
index 0000000..5a3a06c
--- /dev/null
+++ b/includes/libs/libmysql.php
@@ -0,0 +1,89 @@
+<?php
+
+require_once "includes/conf/mysql.conf.php";
+
+class Database
+{
+ // implement singleton pattern
+ static private $instance = null;
+
+ private $conn;
+
+ static public function getInstance()
+ {
+ if (null === self::$instance)
+ {
+ self::$instance = new self;
+ }
+ return self::$instance;
+ }
+
+ // ctor
+ private function __construct()
+ {
+ global $conf;
+ $this->conn = mysql_connect( $conf['mysql_hostname'],
+ $conf['mysql_username'],
+ $conf['mysql_password'] )
+ or die ("Connection to database failed!" . mysql_error());
+
+ mysql_select_db( $conf['mysql_database'], $this->conn )
+ or die ("Selection of database failed! " . mysql_error());
+ }
+
+ private function checkConnect()
+ {
+ if (!isset($this->conn))
+ {
+ die("Not connected to database");
+ }
+ }
+
+ // returns the value in the first row and column
+ public function getValue( $sql )
+ {
+ $this->checkConnect();
+
+ $res = mysql_query( $sql, $this->conn );
+ if (!$res)
+ {
+ die('Error while calling database: ' . mysql_error());
+ }
+ $vals = mysql_fetch_row( $res );
+ mysql_free_result( $res );
+ return $vals[0];
+ }
+
+ // executes some sql and returns affected rows
+ public function exec( $sql )
+ {
+ $this->checkConnect();
+
+ $res = mysql_query( $sql, $this->conn );
+ if (!$res)
+ {
+ die('Error while calling database: ' . mysql_error());
+ }
+ $numrows = mysql_affected_rows( $this->conn );
+ return $numrows;
+ }
+
+ public function escape( $string )
+ {
+ $this->checkConnect();
+
+ return mysql_real_escape_string( $string, $this->conn );
+ }
+
+ public function disconnect()
+ {
+ if ( mysql_ping( $this->conn ) )
+ {
+ mysql_close( $this->conn );
+ }
+ }
+
+}
+
+
+?> \ No newline at end of file
diff --git a/includes/libs/libstrutils.php b/includes/libs/libstrutils.php
new file mode 100644
index 0000000..9c097af
--- /dev/null
+++ b/includes/libs/libstrutils.php
@@ -0,0 +1,10 @@
+<?php
+
+ define("BAD_STRING_DESC", "Only printable characters (except spaces and \") are allowed.");
+
+ function check_chars($string)
+ {
+ return ctype_graph($string) && (strpos($string, '"') === FALSE);
+ }
+
+?> \ No newline at end of file
diff --git a/includes/models/account.php b/includes/models/account.php
new file mode 100644
index 0000000..ea091f5
--- /dev/null
+++ b/includes/models/account.php
@@ -0,0 +1,102 @@
+<?php
+
+require_once "includes/libs/libstrutils.php";
+
+class TMWAccount
+{
+ const ACCOUNT_TBL = "tmw_accounts";
+
+ const GENDER_MALE = 1;
+ const GENDER_FEMALE = 2;
+
+ const STATE_PENDING = 0;
+ const STATE_CREATED = 0;
+ const STATE_FAILED = 0;
+
+ private $id;
+ private $username;
+ private $password;
+ private $email;
+ private $gender;
+ private $state;
+ private $registration;
+
+ public static function getAccountCount()
+ {
+ $db = Database::getInstance();
+ $sql = "SELECT COUNT(*) FROM " . TMWAccount::ACCOUNT_TBL;
+ return $db->getValue( $sql );
+ }
+
+ public static function existsUsername($str)
+ {
+ $db = Database::getInstance();
+ $sql = sprintf("SELECT COUNT(*) FROM " . TMWAccount::ACCOUNT_TBL .
+ " WHERE USERNAME = '%s'", $db->escape($str));
+ return ($db->getValue($sql) == 1);
+ }
+
+ public function setUsername($name){ $this->username = $name; }
+ public function setPassword($pwd){ $this->password = $pwd; }
+ public function setEMail($email){ $this->email = $email; }
+ public function setGender($gender){ $this->gender = $gender; }
+
+ public function validate()
+ {
+ $errors = array();
+
+ // check here for correct values..
+ if (strlen($this->username) < 4)
+ $errors[] = "Username is too short";
+
+ if (strlen($this->password) < 4)
+ $errors[] = "Password is too short";
+
+ if (!check_chars($this->username))
+ $errors[] = 'Username contains invalid characters. ' . BAD_STRING_DESC;
+
+ if (!check_chars($this->password))
+ $errors[] = 'Password contains invalid characters. ' . BAD_STRING_DESC;
+
+ if ($this->gender != TMWAccount::GENDER_MALE &&
+ $this->gender != TMWAccount::GENDER_FEMALE )
+ {
+ $errors[] = 'Gender has to be Male or Female!';
+ }
+
+ if (!filter_var($this->email, FILTER_VALIDATE_EMAIL))
+ {
+ $errors[] = 'EMail has wrong format.';
+ }
+
+
+ // returns true if everything is fine ( test with === true)
+ if (count($errors) == 0)
+ {
+ return true;
+ }
+ else
+ {
+ return $errors;
+ }
+ }
+
+
+
+ public function storeAccount()
+ {
+ $db = Database::getInstance();
+ $sql = sprintf( "INSERT INTO " . TMWAccount::ACCOUNT_TBL .
+ " (USERNAME, PASSWORD, EMAIL, GENDER) " .
+ "VALUES ('%s', '%s', '%s', %d) ",
+ $db->escape($this->username),
+ $db->escape($this->password),
+ $db->escape($this->email),
+ $this->gender);
+
+ $rows = $db->exec( $sql );
+ return ( $rows == 1 );
+ }
+}
+
+?> \ No newline at end of file