summaryrefslogtreecommitdiff
path: root/extensions/tmwa/backend/models
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/tmwa/backend/models')
-rw-r--r--extensions/tmwa/backend/models/account.php127
-rw-r--r--extensions/tmwa/backend/models/email.php87
-rw-r--r--extensions/tmwa/backend/models/packets.php22
3 files changed, 236 insertions, 0 deletions
diff --git a/extensions/tmwa/backend/models/account.php b/extensions/tmwa/backend/models/account.php
new file mode 100644
index 0000000..7f5b0fe
--- /dev/null
+++ b/extensions/tmwa/backend/models/account.php
@@ -0,0 +1,127 @@
+<?php
+class TMWAccount
+{
+ const GENDER_MALE = 'M';
+ const GENDER_FEMALE = 'F';
+ const BAD_STRING_DESC = 'Only alphanumeric characters are allowed.';
+
+ private $errors;
+ private $ladmin;
+ private $ladmin_result;
+
+ private static function existsUsername($str)
+ {
+ global $wgTMWAccountLib;
+ $ladmin = New $wgTMWAccountLib;
+ $ladmin_result = $ladmin->account_exists($str);
+ $ladmin->close();
+ return $ladmin_result;
+ }
+
+ public function setUsername($name){ $this->username = $name; }
+ public function setPassword1($pwd){ $this->password1 = $pwd; }
+ public function setPassword2($pwd){ $this->password2 = $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->username) >= 24) {
+ $errors[] = "Username is too long";
+ }
+
+ if (strlen($this->password1) < 4) {
+ $errors[] = "Password is too short";
+ }
+
+ if (strlen($this->password1) >= 24) {
+ $errors[] = "Password is too long";
+ }
+
+ if (strlen($this->email) < 4) {
+ $errors[] = "EMail is too short";
+ }
+
+ if (strlen($this->email) >= 40) {
+ $errors[] = "EMail is too long";
+ }
+
+ if (!filter_var($this->email, FILTER_VALIDATE_EMAIL)) {
+ $errors[] = "EMail is not valid";
+ }
+
+ if (!self::check_chars($this->username)) {
+ $errors[] = 'Username contains invalid characters.<br/> '.self::BAD_STRING_DESC;
+ }
+
+ if (!self::check_chars($this->password1)) {
+ $errors[] = 'Password contains invalid characters.<br/> '.self::BAD_STRING_DESC;
+ }
+
+ if ($this->password1 != $this->password2)
+ {
+ $errors[] = "The given passwords don't match!";
+ }
+
+ if ($this->gender != self::GENDER_MALE &&
+ $this->gender != self::GENDER_FEMALE )
+ {
+ $errors[] = 'Gender has to be Male or Female!';
+ }
+
+ if (!filter_var($this->email, FILTER_VALIDATE_EMAIL))
+ {
+ $errors[] = 'EMail has wrong format.';
+ }
+
+ if (self::existsUsername($this->username))
+ {
+ $errors[] = "The username is in use!";
+ }
+
+ if (count($errors) > 0)
+ {
+ return $errors;
+ }
+ return null;
+ }
+
+ public function check_chars($string) {
+ return ctype_alnum($string) && (strpos($string, '"') === FALSE);
+ }
+
+ private function sendEMail() {
+ $email = New TMWMail();
+ $email->mail_to = $this->email;
+ $email->subject = "The Mana World Registration";
+ $data = "== Account Created ==\n";
+ $data .= " Welcome ".$this->username." to The Mana World! Your account should now be enabled. If you have any problems with your login contact The Mana World via the Support (live) or Forums (maybe a delay) for help. Game tips & walkthroughs are available on the Wiki. Our Forums are a great place to ask for advice and discuss possible changes. News is available in the client or on the Home Site.
+ Godspeed Adventurer,
+ The Mana World\n";
+ $email->getEmailTemplate($data);
+
+ return $email->sendEMail();
+ }
+
+ public function createAccount()
+ {
+ global $wgTMWAccountLib;
+ $ladmin = New $wgTMWAccountLib;
+ $ladmin_result = $ladmin->create_account($this->username, $this->password1, $this->gender, $this->email);
+ $ladmin->close();
+ if($ladmin_result) {
+ $this->sendEMail();
+ return true;
+ } else {
+ return false;
+ }
+ }
+}
+?>
diff --git a/extensions/tmwa/backend/models/email.php b/extensions/tmwa/backend/models/email.php
new file mode 100644
index 0000000..29f1a1c
--- /dev/null
+++ b/extensions/tmwa/backend/models/email.php
@@ -0,0 +1,87 @@
+<?php
+// Email Template Header
+// Image Mapped for Html Email
+// Base/Default Links
+
+class TMWMail {
+
+ public function __construct() {
+ global $wgTMWAccountEmail;
+ $this->mail_to = '';
+ $this->boundary = uniqid('np');
+ $this->subject = '';
+ $this->headers = "From: Accounts <".$wgTMWAccountEmail.">\r\nReply-To: Accounts <".$wgTMWAccountEmail.">\r\n";
+ $this->message = "";
+ }
+
+ public function sendEMail() {
+ return mail($this->mail_to,$this->subject,$this->message,$this->headers);
+ }
+
+ public function appendheaders($headers) {
+ $this->headers .= $headers;
+ }
+
+ public function appendmessage($message) {
+ $this->message .= $message;
+ }
+
+ public function getEmailTemplate($emailText) {
+ self::appendheaders("MIME-Version: 1.0\r\nContent-type: multipart/alternative;boundary=".$this->boundary."\r\n");
+ $data = "This is a MIME encoded message.";
+
+ $data .= "\r\n\r\n--" . $this->boundary . "\r\n";
+ $data .= "Content-type: text/plain;charset=utf-8\r\n\r\n";
+ $data .= "###############################################################\n";
+ $data .= "# ___________.__ _____ #\n";
+ $data .= "# \__ ___/| |__ ____ / \ ____ ____ ____ #\n";
+ $data .= "# | | | | \_/ __ \ / \ / \ \__ \ / __ \ \__ \ #\n";
+ $data .= "# | | | Y \ ___/ / Y \/ __ \| | \ \/ __ \_ #\n";
+ $data .= "# |____| |___|__/\____> \____|____(______/__| \(______/ #\n";
+ $data .= "# __ __ .__ .___ #\n";
+ $data .= "# / \ / \___________| | __| _/ #\n";
+ $data .= "# \ \/\/ / _ \_ __ \ | / __ | #\n";
+ $data .= "# \ ( <_> ) | \/ |__/ /_/ | #\n";
+ $data .= "# \__/\ / \____/|__| |____/\____ | #\n";
+ $data .= "# \/ \/ #\n";
+ $data .= "# #\n";
+ $data .= "###############################################################\n";
+ $data .= $emailText;
+
+ $data .= "\r\n\r\n--" . $this->boundary . "\r\n";
+ $data .= "Content-type: text/html;charset=utf-8\r\n\r\n";
+
+ $data .= '<html><body>
+ <img id="Image-Maps-Com-image-maps-2014-05-22-121954" src="https://www.themanaworld.org/images/TMW-email-temaplate-mailer.png" border="0" width="640" height="272" orgWidth="640" orgHeight="272" usemap="#image-maps-2014-05-22-121954" alt="" />
+ <map name="image-maps-2014-05-22-121954" id="ImageMapsCom-image-maps-2014-05-22-121954">
+ <area alt="Home Page" title="The Mana World" href="https://www.themanaworld.org/" shape="rect" coords="0,0,197,201" style="outline:none;" target="_self" />
+ <area alt="Home Page" title="The Mana World" href="https://www.themanaworld.org/" shape="rect" coords="197,0,465,168" style="outline:none;" target="_self" />
+ <area alt="Official Client Mana Plus" title="Official Client Mana Plus" href="http://manaplus.org" shape="rect" coords="465,0,640,168" style="outline:none;" target="_self" />
+ <area alt="The Mana World News" title="The Mana World News" href="https://www.themanaworld.org/index.php" shape="rect" coords="196,168,275,201" style="outline:none;" target="_self" />
+ <area alt="The Mana World Wiki" title="The Mana World Wiki" href="https://wiki.themanaworld.org/index.php/Main_Page" shape="rect" coords="274,168,375,201" style="outline:none;" target="_self" />
+ <area alt="The Mana World Forums" title="The Mana World Forums" href="https://forums.themanaworld.org/" shape="rect" coords="372,168,490,201" style="outline:none;" target="_self" />
+ <area alt="The Mana World Support (IRC)" title="The Mana World Support (IRC)" href="https://webchat.freenode.net/?channels=#themanaworld" shape="rect" coords="488,168,640,201" style="outline:none;" target="_self" />
+ <area alt="About The Mana World" title="About The Mana World" href="https://www.themanaworld.org/about.php" shape="rect" coords="0,201,84,272" style="outline:none;" target="_self" />
+ <area alt="Creative Commons" title="Creative Commons" href="http://creativecommons.org/" shape="rect" coords="84,201,121,272" style="outline:none;" target="_self" />
+ <area alt="GNU General Public License" title="GNU General Public License " href="http://www.gnu.org/copyleft/gpl.html" shape="rect" coords="121,201,155,272" style="outline:none;" target="_self" />
+ <area alt="Open Source Initiative" title="Open Source Initiative" href="http://opensource.org/" shape="rect" coords="155,202,189,272" style="outline:none;" target="_self" />
+ <area alt="The Mana World on Facebook" title="The Mana World on Facebook" href="https://www.facebook.com/themanaworld" shape="rect" coords="191,204,308,272" style="outline:none;" target="_self" />
+ <area alt="The Mana World on G+" title="The Mana World on G+" href="https://plus.google.com/+TheManaWorldOrg" shape="rect" coords="310,204,344,272" style="outline:none;" target="_self" />
+ <area alt="The Mana World on Youtube" title="The Mana World on Youtube" href="https://www.youtube.com/user/TheManaWorldOfficial" shape="rect" coords="345,203,379,271" style="outline:none;" target="_self" />
+ <area alt="Official Client Mana Plus" title="Official Client Mana Plus" href="http://manaplus.org" shape="rect" coords="382,203,501,272" style="outline:none;" target="_self" />
+ <area alt="Mac OS Downloads" title="Mac OS Downloads" href="http://download.evolonline.org/manaplus/macosx/" shape="rect" coords="502,203,537,272" style="outline:none;" target="_self" />
+ <area alt="Windows Installer" title="Windows Installer" href="http://manaplus.org/windowsinstaller" shape="rect" coords="537.8000001907349,202.8000030517578,572.8000001907349,271.8000030517578" style="outline:none;" target="_self" />
+ <area alt="Linux Versions" title="Linux Versions" href="http://manaplus.org/" shape="rect" coords="575,203,640,272" style="outline:none;" target="_self" />
+ <area shape="rect" coords="638,270,640,272" alt="Image Map" style="outline:none;" title="Image Map" href="http://www.image-maps.com/index.php?aff=mapped_users_0" />
+ </map><br/>
+ '.nl2br($emailText).'
+ <div style="font-size:10px;">
+ &copy; 2004-2014 The Mana World
+ </div>
+ </body>
+ </html>';
+ $data .= "\r\n\r\n--" . $this->boundary . "--";
+ self::appendmessage($data);
+ }
+}
+?>
diff --git a/extensions/tmwa/backend/models/packets.php b/extensions/tmwa/backend/models/packets.php
new file mode 100644
index 0000000..ae80c1a
--- /dev/null
+++ b/extensions/tmwa/backend/models/packets.php
@@ -0,0 +1,22 @@
+<?php
+// To be dynamically generated eventually from TMWA protocols.py
+class TMWA {
+
+ public function __construct() {
+ $this->packets = array(
+ 0x7918 => array('packet' => array('packet' => 'v','encryption_zero' => 'v','account_pass' => 'a24'), 'len' => '28'),
+ 0x7530 => array('packet' => array('packet' => 'v'), 'len' => '2'),
+ 0x7934 => array('packet' => array('packet' => 'v','account_name' => 'a24','account_password' => 'a24'), 'len' => '50'),
+ 0x7930 => array('packet' => array('packet' => 'v','account_name' => 'a24','account_password' => 'a24', 'sex' => 'a1','email' => 'a40'), 'len' => '91'),
+ 0x793a => array('packet' => array('packet' => 'v','account_name' => 'a24','account_password' => 'a24'), 'len' => '50'),
+ 0x7952 => array('packet' => array('packet' => 'v','account_name' => 'a24'), 'len' => '26'),
+ 0x7919 => array('packet' => array('packet' => 'v','error' => 'C'), 'len' => 3),
+ 0x7531 => array('packet' => array('packet' => 'v','version' => 'C*'), 'len' => 10),
+ 0x7935 => array('packet' => array('packet' => 'v','account_id' => 'V','account_name' => 'a24'), 'len' => 30),
+ 0x7931 => array('packet' => array('packet' => 'v','account_id' => 'V','account_name' => 'a24'), 'len' => 30),
+ 0x793b => array('packet' => array('packet' => 'v','account_id' => 'V','account_name' => 'a24'), 'len' => 30),
+ 0x7953 => array('packet' => array('packet' => 'v','account_id' => 'V','gm_level' => 'C','account_name' => 'a24','sex' => 'C','login_count' => 'V','state' => 'V','error_message' => 'a20','last_login_string' => 'a24','ip_string' => 'a16','email' => 'a40','connect_until' => 'V','ban_until' => 'V','packet' => 'v'), 'len' => 151)
+ );
+ }
+}
+?>