CHips L MINI SHELL

CHips L pro

Current Path : /opt/cpanel/ea-php54/root/usr/share/pear/RVSeagullMod/modules/user/classes/
Upload File :
Current File : //opt/cpanel/ea-php54/root/usr/share/pear/RVSeagullMod/modules/user/classes/AccountMgr.php

<?php
/* Reminder: always indent with 4 spaces (no tabs). */
// +---------------------------------------------------------------------------+
// | Copyright (c) 2008, Demian Turner                                         |
// | All rights reserved.                                                      |
// |                                                                           |
// | Redistribution and use in source and binary forms, with or without        |
// | modification, are permitted provided that the following conditions        |
// | are met:                                                                  |
// |                                                                           |
// | o Redistributions of source code must retain the above copyright          |
// |   notice, this list of conditions and the following disclaimer.           |
// | o Redistributions in binary form must reproduce the above copyright       |
// |   notice, this list of conditions and the following disclaimer in the     |
// |   documentation and/or other materials provided with the distribution.    |
// | o The names of the authors may not be used to endorse or promote          |
// |   products derived from this software without specific prior written      |
// |   permission.                                                             |
// |                                                                           |
// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS       |
// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT         |
// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR     |
// | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT      |
// | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,     |
// | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT          |
// | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,     |
// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY     |
// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT       |
// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE     |
// | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.      |
// |                                                                           |
// +---------------------------------------------------------------------------+
// | Seagull 0.6                                                               |
// +---------------------------------------------------------------------------+
// | AccountMgr.php                                                            |
// +---------------------------------------------------------------------------+
// | Author: Demian Turner <demian@phpkitchen.com>                             |
// +---------------------------------------------------------------------------+
// $Id: AccountMgr.php,v 1.25 2005/05/17 23:54:52 demian Exp $

require_once SGL_MOD_DIR . '/user/classes/RegisterMgr.php';
require_once SGL_MOD_DIR . '/user/classes/UserMgr.php';
require_once SGL_MOD_DIR . '/user/classes/UserDAO.php';
require_once 'DB/DataObject.php';

/**
 * Manages User's account.
 *
 * @package User
 * @author  Demian Turner <demian@phpkitchen.com>
 */
require_once SGL_MOD_DIR  . '/main/classes/Main.php';
class AccountMgr extends RegisterMgr
{
    function AccountMgr()
    {
        SGL::logMessage(null, PEAR_LOG_DEBUG);
        parent::RegisterMgr();

        $this->pageTitle = 'My Account';
        $this->da = UserDAO::singleton();

        $this->_aActionsMapping =  array(
            'edit'          => array('edit'),
            'update'        => array('update', 'redirectToDefault'),
            'viewProfile'   => array('viewProfile'),
            'summary'       => array('summary'),
        );
    }

    function validate($req, &$input)
    {
        SGL::logMessage(null, PEAR_LOG_DEBUG);

        parent::validate($req, $input);
        $input->action = ($req->get('action')) ? $req->get('action') : 'summary';
        $input->user->is_email_public = (isset($input->user->is_email_public)) ? 1 : 0;
        $input->baseUrl = SGL_config::get('site.baseUrl');


        $oMain = new Main;
        $input->forumsInstall = $oMain->verifyModules('forums');
        $input->newsletterInstall = $oMain->verifyModules('newsletter');
        $input->blogwebInstall  = $oMain->verifyModules('blogweb');
        $input->prefixTemplate = '';
        if (class_exists('RVSGLWrapper')) {
        	$input->isResTemplate = RVSGLWrapper::isResTemplate();
        	if (RVSGLWrapper::isUikitTemplate() && @$_SESSION['rid'] != SGL_ADMIN) {
        		$input->prefixTemplate = 'uikit_';
        	}
        } else {
        	$input->isResTemplate = false;
        }

    }

    function display(&$output)
    {
        SGL::logMessage(null, PEAR_LOG_DEBUG);
        parent::display($output);

        //  set user's country
        if (isset($output->user) && $output->action == 'viewProfile') {
            $output->user->country = $GLOBALS['_SGL']['COUNTRIES'][$output->user->country];
            $output->user->region = $GLOBALS['_SGL']['STATES'][$output->user->region];
        }
        if ($this->conf['OrgMgr']['enabled']) {
            $output->aOrgs = $this->da->getOrgs();
        }
        $output->aRoles = $this->da->getRoles();
        $output->isAcctActive = (@$output->user->is_acct_active) ? ' checked' : '';
    }

    function _cmd_edit(&$input, &$output)
    {
        SGL::logMessage(null, PEAR_LOG_DEBUG);
        /// start call cmd_edit
        parent::_cmd_edit($input, $output);
        /// end
        $output->pageTitle = 'My Profile :: Edit';
        /// RVS START set template userAdd for compoDB
        if (defined('RVS_AUTO_SETUP')) {
            $output->template = $input->prefixTemplate.'userAddUseCompoDB.html';
        } else {
            $output->template = 'userAdd.html';
        }
        /// RVS END set template userAdd for compoDB
        $oUser = DB_DataObject::factory($this->conf['table']['user']);
        $oUser->get(SGL_Session::getUid());
        $output->user = $oUser;
        $output->user->username_orig = $oUser->username;
        $output->user->email_orig = $oUser->email;
        $output->user->path_image = SGL_BASE_URL .'/themes/rvtheme/images/' . $output->user->image_upload;
        //$output->radioImageurl = $oUser->typeImage;
        if ($oUser->typeImage == 1) {
        	$output->user->imageType = 1;
        	$output->radioImageurl = 'checked';
        	$output->radioImageUpload = '';

        }else{
        	$output->user->imageType = 0;
        	$output->radioImageurl = '';
        	$output->radioImageUpload = 'checked';
        }


        if($output->user->birthdate) {
        	$birth = explode("-", $output->user->birthdate);
        	$output->user->Bday = $birth[0];
        	$output->user->Bmonth = $birth[1];
        	$output->user->Byear = $birth[2];

        } else {
        	$output->user->Byear = '0000';
        	$output->user->Bmonth = '00';
        	$output->user->Bday = '00';
        }
        //print '<pre>';
        //print_r($output);
    }

    function _cmd_update(&$input, &$output)
    {
    	SGL::logMessage(null, PEAR_LOG_DEBUG);
    	/// start update images upload
        parent::_cmd_update($input, $output);
        ///end
        $oUser = DB_DataObject::factory($this->conf['table']['user']);
        $oUser->get(SGL_Session::getUid());
        $original = clone($oUser);
        $oUser->setFrom($input->user);
        $oUser->last_updated = SGL_Date::getTime();
        $success = $oUser->update($original);

        if ($success !== false) {
            SGL::raiseMsg('profile successfully updated', true, SGL_MESSAGE_INFO);
        } else {
            SGL::raiseError('There was a problem inserting the record',
                SGL_ERROR_NOAFFECTEDROWS);
        }
        $doObserve = new User_DoObserve($input, $output);
        $aObservers = explode(',', $this->conf['AccountMgr']['observers']);
        foreach ($aObservers as $observer) {
            $path = SGL_MOD_DIR . "/user/classes/observers/$observer.php";
            if (is_file($path)) {
                require_once $path;
                $doObserve->attach(new $observer());
            }
        }
        $doObserve->run();
    }

    function _cmd_viewProfile(&$input, &$output)
    {
        SGL::logMessage(null, PEAR_LOG_DEBUG);

        $output->template = $input->prefixTemplate.'account.html';
        $output->pageTitle = 'My Profile';
        $oUser = DB_DataObject::factory($this->conf['table']['user']);
        $oUser->get(SGL_Session::getUid());
        $output->user = $oUser;
    }

    function _cmd_summary(&$input, &$output)
    {
        SGL::logMessage(null, PEAR_LOG_DEBUG);

        $output->template = $input->prefixTemplate.'accountSummary.html';
        $currentUid = SGL_Session::getUid();
        $oUser = DB_DataObject::factory($this->conf['table']['user']);
        $oUser->get($currentUid);

        //  get current remote IP
        $output->remote_ip = $_SERVER['REMOTE_ADDR'];
        $output->login = $this->da->getLastLogin();
        $output->user = $oUser;
        $output->user->role_name = $this->da->getRoleNameById(SGL_Session::getRoleId());
    }
}
?>

Copyright 2K16 - 2K18 Indonesian Hacker Rulez