HOME


Mini Shell 1.0
DIR: /tmp/
Upload File :
Current File : //tmp/phpThUE3e
home/islapiiu/sites/pramudi/class/Customer.php000064400000024640151061026020015521 0ustar00<?php

/**
 * Description of Product
 *
 * @author sublime holdings
 * @web www.sublime.lk
 */
class Customer
{

    //put your code here
    public $id;
    public $name;
    public $email;
    public $password;
    public $phone_number;
    public $district;
    public $city;
    public $address;
    public $resetcode;
    public $authToken;
    public $image_name;

    public function __construct($id)
    {
        if ($id) {

            $query = "SELECT  * FROM `customer` WHERE `id`=" . $id;

            $db = new Database();

            $result = mysql_fetch_array($db->readQuery($query));

            $this->id = $result['id'];
            $this->name = $result['name'];
            $this->email = $result['email'];
            $this->password = $result['password'];
            $this->phone_number = $result['phone_number'];
            $this->district = $result['district'];
            $this->address = $result['address'];
            $this->resetcode = $result['resetcode'];
            $this->authToken = $result['authToken'];
            $this->image_name = $result['image_name'];

            return $this;
        }
    }

    public function create()
    {

        $query = "INSERT INTO `customer` (`name`, `email`, `password`,`phone_number`,`district`,`address`,`image_name`) VALUES  ('"
            . $this->name . "','"
            . $this->email . "', '"
            . $this->password . "', '"
            . $this->phone_number . "', '"
            . $this->district . "', '"
            . $this->address . "', '"
            . $this->image_name . "')";

        $db = new Database();

        $result = $db->readQuery($query);

        if ($result) {
            $last_id = mysql_insert_id();

            return $this->__construct($last_id);
        } else {
            return FALSE;
        }
    }

    public function all()
    {

        $query = "SELECT * FROM `customer` ";
        $db = new Database();
        $result = $db->readQuery($query);
        $array_res = array();

        while ($row = mysql_fetch_array($result)) {
            array_push($array_res, $row);
        }

        return $array_res;
    }

    public function login($email, $password)
    {


        $query = "SELECT  * FROM `customer` WHERE `email`= '" . $email . "' AND `password`= '" . $password . "'";

        $db = new Database();

        $result = mysql_fetch_array($db->readQuery($query));

        if (!$result) {

            return FALSE;
        } else {

            $this->id = $result['id'];
            $this->setAuthToken($result['id']);
            $this->setUserSession($this->id);
            $customer = $this->__construct($this->id);
            return $customer;
        }
    }

    public function logOut()
    {

        if (!isset($_SESSION)) {
            session_start();
        }

        unset($_SESSION["id"]);
        unset($_SESSION["name"]);
        unset($_SESSION["email"]);

        return TRUE;
    }

    private function setUserSession($customer)
    {

        if (!isset($_SESSION)) {
            session_start();
        }
        $customer = $this->__construct($customer);

        $_SESSION["id"] = $customer->id;
        $_SESSION["name"] = $customer->name;
        $_SESSION["email"] = $customer->email;
        $_SESSION["phone_number"] = $customer->phone_number;
        $_SESSION["authToken"] = $customer->authToken;
        $_SESSION["image_name"] = $customer->image_name;
    }

    private function setAuthToken($id)
    {

        $authToken = md5(uniqid(rand(), true));

        $query = "UPDATE `customer` SET `authToken` ='" . $authToken . "' WHERE `id`='" . $id . "'";

        $db = new Database();

        if ($db->readQuery($query)) {
            return $authToken;
        } else {

            return FALSE;
        }
    }

    public function authenticate()
    {

        if (!isset($_SESSION)) {

            session_start();
        }

        $id = NULL;
        $authToken = NULL;

        if (isset($_SESSION["id"])) {
            $id = $_SESSION["id"];
        }

        if (isset($_SESSION["authToken"])) {
            $authToken = $_SESSION["authToken"];
        }

        $query = "SELECT `id` FROM `customer` WHERE `id`= '" . $id . "' AND `authToken`= '" . $authToken . "'";

        $db = new Database();
        $result = mysql_fetch_array($db->readQuery($query));

        if (!$result) {

            return FALSE;
        } else {
            return TRUE;
        }
    }

    public function checkEmail($email)
    {

        $query = "SELECT `id`,`email`,`name` FROM `customer` WHERE `email`= '" . $email . "'";

        $db = new Database();

        $result = mysql_fetch_array($db->readQuery($query));

        if (!$result) {

            return FALSE;
        } else {

            return $result;
        }
    }

    public function GenarateCode($email)
    {

        $rand = rand(10000, 99999);

        $query = "UPDATE  `customer` SET "
            . "`resetcode` ='" . $rand . "' "
            . "WHERE `email` = '" . $email . "'";

        $db = new Database();

        $result = $db->readQuery($query);

        if ($result) {
            return TRUE;
        } else {
            return FALSE;
        }
    }

    public function SelectForgetCustomer($email)
    {

        if ($email) {

            $query = "SELECT `email`,`name`,`resetcode` FROM `customer` WHERE `email`= '" . $email . "'";

            $db = new Database();

            $result = mysql_fetch_array($db->readQuery($query));

            $this->name = $result['name'];
            $this->email = $result['email'];
            $this->restCode = $result['resetcode'];

            return $result;
        }
    }

    public function SelectResetCode($code)
    {

        $query = "SELECT `id` FROM `customer` WHERE `resetcode`= '" . $code . "'";

        $db = new Database();

        $result = mysql_fetch_array($db->readQuery($query));
        if (!$result) {

            return FALSE;
        } else {
            return TRUE;
        }
    }

    public function updatePassword($password, $code)
    {
        $enPass = md5($password);

        $query = "UPDATE  `customer` SET "
            . "`password` ='" . $enPass . "' "
            . "WHERE `resetcode` = '" . $code . "'";

        $db = new Database();
        $result = $db->readQuery($query);

        if ($result) {

            return TRUE;
        } else {

            return FALSE;
        }
    }

    public function update()
    {

        $query = "UPDATE  `customer` SET "
            . "`name` ='" . $this->name . "', "
            . "`email` ='" . $this->email . "', "
            . "`password` ='" . $this->password . "', "
            . "`phone_number` ='" . $this->phone_number . "', "
            . "`district` ='" . $this->district . "', "
            . "`address` ='" . $this->address . "' "
            . "WHERE `id` = '" . $this->id . "'";



        $db = new Database();
        $result = $db->readQuery($query);

        if ($result) {
            return $this->__construct($this->id);
        } else {
            return FALSE;
        }
    }

    public function delete()
    {

        $query = 'DELETE FROM `customer` WHERE id="' . $this->id . '"';

        $db = new Database();

        return $db->readQuery($query);
    }

    public function GetCitiesByDistrict($district)
    {

        $query = "SELECT * FROM `customer` WHERE `district` = '" . $district . "'";

        $db = new Database();

        $result = $db->readQuery($query);
        $array_res = array();

        while ($row = mysql_fetch_array($result)) {
            array_push($array_res, $row);
        }

        return $array_res;
    }

    public function getDistrictByCityId($customer)
    {

        $query = "SELECT * FROM `customer` WHERE `id` = '" . $customer . "'";

        $db = new Database();

        $result = $db->readQuery($query);
        $array_res = array();

        while ($row = mysql_fetch_array($result)) {
            array_push($array_res, $row);
        }

        return $array_res;
    }

    public function deleteCitiesByDistrict($district)
    {

        $query = "DELETE FROM `customer` WHERE `district`= '" . $district . "'";

        $db = new Database();
        $result = $db->readQuery($query);

        return $result;
    }

    public function arrange($key, $img)
    {
        $query = "UPDATE `customer` SET `sort` = '" . $key . "'  WHERE id = '" . $img . "'";
        $db = new Database();
        $result = $db->readQuery($query);
        return $result;
    }

    public function sendRegistrationEmail()
    {


        date_default_timezone_set('Asia/Colombo');
        $todayis = date("l, F j, Y, g:i a");
        $site_link = "https://" . $_SERVER['HTTP_HOST'];

        $comany_name = "Pramudi Gem & Jewelry";
        $website_name = "www.pramudigems.com";
        $comConNumber = "(+94) 71 635 1651";
        $comEmail = "[email protected]";
        $comOwner = "Team Pramudi Gem & Jewelry";
        $reply_email_name = "PRAMUDI GEMS & JEWELRY";

        $visitor_email = $this->email;
        $visitor_name = $this->name;
        $webmail = "[email protected]";
        $visitorSubject = "Your Registration is Successful!. -" . $comany_name;



        // Compose a simple HTML email message
        $message = '<html>';
        $message .= '<body>';
        $message .= '<div  style="padding: 10px; max-width: 650px; background-color: #f2f1ff; border: 1px solid #d4d4d4;">';
        $message .= '<h4>Welcome to the ' . $comany_name . '!.</h4>';
        $message .= '<p>Dear sir/madam, Thank you for registering on ' . $website_name . '. Please use your email when you log in to the website with the password, which you gave when creating your account...</p>';
        $message .= '<hr/>';
        $message .= '<h3>Your Email :' . $this->email . '</h3>';
        $message .= '<hr/>';
        $message .= '<p>Thanks & Best Regards!.. <br/> ' . $website_name . '<p/>';
        $message .= '<small>*Please do not reply to this email. This is an automated email & you will not receive a response.</small><br/>';
        $message .= '<span>Hotline: ' . $comConNumber . ' </span><br/>';
        $message .= '<span>' . $comEmail . '</span>';
        $message .= '</div>';
        $message .= '</body>';
        $message .= '</html>';
     
        $HELPER = new Helper();
        $visitorMail = $HELPER->PHPMailer($webmail, $comany_name, $comEmail, $reply_email_name, $visitor_email, $visitor_name, $visitorSubject, $message);

        if ($visitorMail) {
            return TRUE;
        } else {
            return FALSE;
        }
    }
}