smartinmedia/cunity

View on GitHub
lib/modules/Core/Models/Db/Table/Users.php

Summary

Maintainability
F
4 days
Test Coverage
<?php

/**
 * ########################################################################################
 * ## CUNITY(R) V2.0 - An open source social network / "your private social network"     ##
 * ########################################################################################
 * ##  Copyright (C) 2011 - 2015 Smart In Media GmbH & Co. KG                            ##
 * ## CUNITY(R) is a registered trademark of Dr. Martin R. Weihrauch                     ##
 * ##  http://www.cunity.net                                                             ##
 * ##                                                                                    ##
 * ########################################################################################.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or any later version.
 *
 * 1. YOU MUST NOT CHANGE THE LICENSE FOR THE SOFTWARE OR ANY PARTS HEREOF! IT MUST REMAIN AGPL.
 * 2. YOU MUST NOT REMOVE THIS COPYRIGHT NOTES FROM ANY PARTS OF THIS SOFTWARE!
 * 3. NOTE THAT THIS SOFTWARE CONTAINS THIRD-PARTY-SOLUTIONS THAT MAY EVENTUALLY NOT FALL UNDER (A)GPL!
 * 4. PLEASE READ THE LICENSE OF THE CUNITY SOFTWARE CAREFULLY!
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program (under the folder LICENSE).
 * If not, see <http://www.gnu.org/licenses/>.
 *
 * If your software can interact with users remotely through a computer network,
 * you have to make sure that it provides a way for users to get its source.
 * For example, if your program is a web application, its interface could display
 * a "Source" link that leads users to an archive of the code. There are many ways
 * you could offer source, and different solutions will be better for different programs;
 * see section 13 of the GNU Affero General Public License for the specific requirements.
 *
 * #####################################################################################
 */

namespace Cunity\Core\Models\Db\Table;

use Cunity\Core\Cunity;
use Cunity\Core\Models\Db\Abstractables\Table;
use Cunity\Core\Models\Db\Row\User;
use Cunity\Core\Models\Generator\Privacy;
use Cunity\Core\Models\Generator\Unique;
use Cunity\Core\Request\Post;
use Cunity\Core\Request\Session;
use Cunity\Core\Traits\Singleton;
use Cunity\Profile\Models\Db\Table\ProfileFieldsUsers;
use Cunity\Register\View\VerifyMail;

/**
 * Class Users.
 */
class Users extends Table
{
    use Singleton;

    /**
     * @var string
     */
    protected $_name = 'users';
    /**
     * @var string
     */
    protected $_primary = 'userid';
    /**
     * @var string
     */
    protected $_rowClass = "\Cunity\Core\Models\Db\Row\User";

    /**
     * @param array $config
     */
    public function __construct($config = array())
    {
        parent::__construct($config);
    }

    /**
     * @param array $data
     * @param int   $groupId
     * @param bool  $sendVerfificationMail
     *
     * @return bool
     *
     * @throws \Cunity\Core\Exceptions\Exception
     */
    public function registerNewUser(array $data, $groupId = 0, $sendVerfificationMail = true)
    {
        $salt = Unique::createSalt(25);

        if (Cunity::get('settings')->getSetting('core.fullname')) {
            $name = ($data['firstname'].' '.$data['lastname']);
        } else {
            $name = ($data['username']);
        }

        $result = $this->insert([
            'email' => trim($data['email']),
            'userhash' => $this->createUniqueHash(),
            'username' => $data['username'],
            'groupid' => $groupId,
            'password' => sha1(trim($data['password']).$salt),
            'salt' => $salt,
            'name' => $name,
            'firstname' => $data['firstname'],
            'lastname' => $data['lastname'],
        ]);

        if (Post::get('field') !== null) {
            $profileFieldsUser = new ProfileFieldsUsers([], $this->search('userid', $result));
            $profileFieldsUser->update($_REQUEST['field'], '');
        }

        if ($result && $sendVerfificationMail) {
            new VerifyMail(['name' => $name, 'email' => $data['email']], $salt);

            return true;
        }

        return false;
    }

    /**
     * @return string
     */
    private function createUniqueHash()
    {
        $str = Unique::createSalt(32);
        if ($this->search('userhash', $str) !== null) {
            return $this->createUniqueHash();
        } else {
            return $str;
        }
    }

    /**
     * @param $key
     * @param $value
     *
     * @return User
     */
    public function search($key, $value)
    {
        return $this->fetchRow($this->select()->where($this->getAdapter()->quoteIdentifier($key).' = ?', $value));
    }

    /**
     * @param array  $values
     * @param string $key
     * @param bool   $includeOwn
     *
     * @return \Zend_Db_Table_Rowset_Abstract
     */
    public function getSet(array $values, $key = 'u.userid', $includeOwn = false)
    {
        $query = $this->getGallery();
        if (!$includeOwn) {
            $query->where('u.userid != ?', Session::get('user')->userid);
        }
        if (!empty($values)) {
            $query->where($key.' IN(?)', $values);
        }
        $res = $this->fetchAll($query);
        $resCount = count($res);
        for ($i = 0; $i < $resCount; $i++) {
            $res[$i]->privacy = Privacy::parse($res[$i]->privacy);
        }

        return $res;
    }

    /**
     * @return \Zend_Db_Table_Rowset_Abstract
     */
    public function getSetIn()
    {
        $query = $this->getGallery();
        $res = $this->fetchAll($query);
        $resCount = count($res);
        for ($i = 0; $i < $resCount; $i++) {
            $res[$i]->privacy = Privacy::parse($res[$i]->privacy);
        }

        return $res;
    }

    /**
     * @param $userid
     *
     * @return bool
     */
    public function exists($userid)
    {
        return ($this->get($userid) !== null);
    }

    /**
     * @param $userid
     * @param string $key
     *
     * @return null|\Zend_Db_Table_Row_Abstract
     */
    public function get($userid, $key = 'userid')
    {
        $settings = Cunity::get('settings');

        if ($settings->getSetting('register.allfriends')) {
            $res = $this->fetchRow(
                $this->select()
                    ->setIntegrityCheck(false)
                    ->from(['u' => $this->getTableName()])
                    ->joinLeft(['fr' => $this->_dbprefix.'relations'], '(fr.sender = u.userid OR fr.receiver = u.userid) AND status = 2', new \Zend_Db_Expr('COUNT(DISTINCT fr.relation_id) AS friendscount'))
                    ->joinLeft(['a' => $this->_dbprefix.'gallery_albums'], 'u.userid=a.owner_id AND a.owner_type IS NULL AND (((a.privacy = 2 OR (a.privacy = 1 AND a.owner_id IN ('.new \Zend_Db_Expr($this->getAdapter()->select()->from($this->_dbprefix.'relations', new \Zend_Db_Expr('(CASE WHEN sender = '.Session::get('user')->userid.' THEN receiver WHEN receiver = '.Session::get('user')->userid.' THEN sender END)'))->where('status > 0')->where('sender=?', Session::get('user')->userid)->orWhere('receiver=?', Session::get('user')->userid)).')))) OR (a.owner_type IS NULL AND a.owner_id = '.Session::get('user')->userid.' ))', new \Zend_Db_Expr('COUNT(DISTINCT a.id) AS albumscount'))
                    ->joinLeft(['p' => $this->_dbprefix.'privacy'], 'p.userid=u.userid', new \Zend_Db_Expr("GROUP_CONCAT(CONCAT(p.type,':',p.value)) AS privacy"))
                    ->joinLeft(['r' => $this->_dbprefix.'relations'], '(r.receiver = '.$this->getAdapter()->quote(Session::get('user')->userid).' AND r.sender = u.userid) OR (r.sender = '.$this->getAdapter()->quote(Session::get('user')->userid).' AND r.receiver = u.userid)')
                    ->joinLeft(['pi' => $this->_dbprefix.'gallery_images'], 'pi.id = u.profileImage', ['filename AS pimg', 'albumid AS palbumid'])
                    ->joinLeft(['ti' => $this->_dbprefix.'gallery_images'], 'ti.id = u.titleImage', ['filename AS timg', 'albumid AS talbumid'])
                    ->where('u.'.$key.' = ?', $userid)
            );
            $res->friendscount = $this->getAll()->count();
        } else {
            $res = $this->fetchRow(
                $this->select()
                    ->setIntegrityCheck(false)
                    ->from(['u' => $this->getTableName()])
                    ->joinLeft(['fr' => $this->_dbprefix.'relations'], '(fr.sender = u.userid OR fr.receiver = u.userid) AND status = 2', new \Zend_Db_Expr('COUNT(DISTINCT fr.relation_id) AS friendscount'))
                    ->joinLeft(['a' => $this->_dbprefix.'gallery_albums'], 'u.userid=a.owner_id AND a.owner_type IS NULL AND (((a.privacy = 2 OR (a.privacy = 1 AND a.owner_id IN ('.new \Zend_Db_Expr($this->getAdapter()->select()->from($this->_dbprefix.'relations', new \Zend_Db_Expr('(CASE WHEN sender = '.Session::get('user')->userid.' THEN receiver WHEN receiver = '.Session::get('user')->userid.' THEN sender END)'))->where('status > 0')->where('sender=?', Session::get('user')->userid)->orWhere('receiver=?', Session::get('user')->userid)).')))) OR (a.owner_type IS NULL AND a.owner_id = '.Session::get('user')->userid.' ))', new \Zend_Db_Expr('COUNT(DISTINCT a.id) AS albumscount'))
                    ->joinLeft(['p' => $this->_dbprefix.'privacy'], 'p.userid=u.userid', new \Zend_Db_Expr("GROUP_CONCAT(CONCAT(p.type,':',p.value)) AS privacy"))
                    ->joinLeft(['r' => $this->_dbprefix.'relations'], '(r.receiver = '.$this->getAdapter()->quote(Session::get('user')->userid).' AND r.sender = u.userid) OR (r.sender = '.$this->getAdapter()->quote(Session::get('user')->userid).' AND r.receiver = u.userid)')
                    ->joinLeft(['pi' => $this->_dbprefix.'gallery_images'], 'pi.id = u.profileImage', ['filename AS pimg', 'albumid AS palbumid'])
                    ->joinLeft(['ti' => $this->_dbprefix.'gallery_images'], 'ti.id = u.titleImage', ['filename AS timg', 'albumid AS talbumid'])
                    ->where('u.'.$key.' = ?', $userid)
            );
        }

        $res->privacy = Privacy::parse($res->privacy);

        return $res;
    }

    /**
     * @return \Zend_Db_Select
     */
    protected function getGallery()
    {
        $query = $this->select()->setIntegrityCheck(false)->from(['u' => $this->getTableName()])
            ->joinLeft(['r' => $this->_dbprefix.'relations'], '(r.receiver = '.$this->getAdapter()->quote(Session::get('user')->userid).' AND r.sender = u.userid) OR (r.sender = '.$this->getAdapter()->quote(Session::get('user')->userid).' AND r.receiver = u.userid)')
            ->joinLeft(['pi' => $this->_dbprefix.'gallery_images'], 'pi.id = u.profileImage', ['filename AS pimg', 'albumid AS palbumid'])
            ->joinLeft(['ti' => $this->_dbprefix.'gallery_images'], 'ti.id = u.titleImage', ['filename AS timg', 'albumid AS talbumid'])
            ->joinLeft(['p' => $this->_dbprefix.'privacy'], 'p.userid=u.userid', new \Zend_Db_Expr("GROUP_CONCAT(CONCAT(p.type,':',p.value)) AS privacy"))
            ->group('u.userid')
            ->where('u.groupid > 0');

        return $query;
    }

    /**
     * @param bool $onlyActive
     *
     * @return \Zend_Db_Table_Rowset_Abstract
     */
    public function getAll($onlyActive = true)
    {
        $where = null;

        if ($onlyActive) {
            $where = 'groupid != 0 AND groupid != 4';
        }

        return $this->fetchAll($where);
    }
}