Files
sysPass/lib/SP/Repositories/UserProfile/UserProfileRepository.php
Rubén D e4e6e04c57 * [MOD] Updated copyright
Signed-off-by: Rubén D <nuxsmin@syspass.org>
2020-12-07 19:42:41 +01:00

319 lines
8.7 KiB
PHP

<?php
/*
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2020, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Repositories\UserProfile;
use SP\Core\Exceptions\ConstraintException;
use SP\Core\Exceptions\QueryException;
use SP\DataModel\ItemSearchData;
use SP\DataModel\UserProfileData;
use SP\Repositories\DuplicatedItemException;
use SP\Repositories\Repository;
use SP\Repositories\RepositoryItemInterface;
use SP\Repositories\RepositoryItemTrait;
use SP\Storage\Database\QueryData;
use SP\Storage\Database\QueryResult;
/**
* Class UserProfileRepository
*
* @package SP\Repositories\UserProfile
*/
final class UserProfileRepository extends Repository implements RepositoryItemInterface
{
use RepositoryItemTrait;
/**
* Obtener el nombre de los usuarios que usan un perfil.
*
* @param $id int El id del perfil
*
* @return QueryResult
* @throws ConstraintException
* @throws QueryException
*/
public function getUsersForProfile($id)
{
$queryData = new QueryData();
$queryData->setQuery('SELECT id, login FROM User WHERE userProfileId = ?');
$queryData->addParam($id);
return $this->db->doSelect($queryData);
}
/**
* Deletes an item
*
* @param $id
*
* @return int
* @throws ConstraintException
* @throws QueryException
*/
public function delete($id)
{
$queryData = new QueryData();
$queryData->setQuery('DELETE FROM UserProfile WHERE id = ? LIMIT 1');
$queryData->addParam($id);
$queryData->setOnErrorMessage(__u('Error while removing the profile'));
return $this->db->doQuery($queryData)->getAffectedNumRows();
}
/**
* Checks whether the item is in use or not
*
* @param $id int
*
* @return bool
* @throws ConstraintException
* @throws QueryException
*/
public function checkInUse($id)
{
$queryData = new QueryData();
$queryData->setQuery('SELECT userProfileId FROM User WHERE userProfileId = ?');
$queryData->addParam($id);
return $this->db->doSelect($queryData)->getNumRows() > 0;
}
/**
* Returns the item for given id
*
* @param int $id
*
* @return QueryResult
* @throws ConstraintException
* @throws QueryException
*/
public function getById($id)
{
$queryData = new QueryData();
$queryData->setMapClassName(UserProfileData::class);
$queryData->setQuery('SELECT id, `name`, `profile` FROM UserProfile WHERE id = ? LIMIT 1');
$queryData->addParam($id);
return $this->db->doSelect($queryData);
}
/**
* Returns all the items
*
* @return QueryResult
* @throws ConstraintException
* @throws QueryException
*/
public function getAll()
{
$queryData = new QueryData();
$queryData->setMapClassName(UserProfileData::class);
$queryData->setQuery('SELECT id, `name` FROM UserProfile ORDER BY `name`');
return $this->db->doSelect($queryData);
}
/**
* Returns all the items for given ids
*
* @param array $ids
*
* @return UserProfileData[]
* @throws ConstraintException
* @throws QueryException
*/
public function getByIdBatch(array $ids)
{
if (empty($ids)) {
return [];
}
$query = /** @lang SQL */
'SELECT id, `name` FROM UserProfile WHERE id IN (' . $this->getParamsFromArray($ids) . ')';
$queryData = new QueryData();
$queryData->setMapClassName(UserProfileData::class);
$queryData->setQuery($query);
$queryData->setParams($ids);
return $this->db->doSelect($queryData)->getDataAsArray();
}
/**
* Deletes all the items for given ids
*
* @param array $ids
*
* @return int
* @throws ConstraintException
* @throws QueryException
*/
public function deleteByIdBatch(array $ids)
{
if (empty($ids)) {
return 0;
}
$queryData = new QueryData();
$queryData->setQuery('DELETE FROM UserProfile WHERE id IN (' . $this->getParamsFromArray($ids) . ')');
$queryData->setParams($ids);
$queryData->setOnErrorMessage(__u('Error while removing the profiles'));
return $this->db->doQuery($queryData)->getAffectedNumRows();
}
/**
* Searches for items by a given filter
*
* @param ItemSearchData $itemSearchData
*
* @return QueryResult
* @throws ConstraintException
* @throws QueryException
*/
public function search(ItemSearchData $itemSearchData)
{
$queryData = new QueryData();
$queryData->setSelect('id, name');
$queryData->setFrom('UserProfile');
$queryData->setOrder('name');
if ($itemSearchData->getSeachString() !== '') {
$queryData->setWhere('name LIKE ?');
$search = '%' . $itemSearchData->getSeachString() . '%';
$queryData->addParam($search);
}
$queryData->setLimit(
'?,?',
[$itemSearchData->getLimitStart(), $itemSearchData->getLimitCount()]
);
return $this->db->doSelect($queryData, true);
}
/**
* Creates an item
*
* @param UserProfileData $itemData
*
* @return int
* @throws ConstraintException
* @throws QueryException
* @throws DuplicatedItemException
*/
public function create($itemData)
{
if ($this->checkDuplicatedOnAdd($itemData)) {
throw new DuplicatedItemException(__u('Duplicated profile name'));
}
$queryData = new QueryData();
$queryData->setQuery('INSERT INTO UserProfile SET `name` = ?, `profile` = ?');
$queryData->setParams([
$itemData->getName(),
serialize($itemData->getProfile())
]);
$queryData->setOnErrorMessage(__u('Error while creating the profile'));
return $this->db->doQuery($queryData)->getLastId();
}
/**
* Checks whether the item is duplicated on adding
*
* @param UserProfileData $itemData
*
* @return bool
* @throws ConstraintException
* @throws QueryException
*/
public function checkDuplicatedOnAdd($itemData)
{
$queryData = new QueryData();
$queryData->setQuery('SELECT `name` FROM UserProfile WHERE UPPER(`name`) = ?');
$queryData->addParam($itemData->getName());
return $this->db->doQuery($queryData)->getNumRows() > 0;
}
/**
* Updates an item
*
* @param UserProfileData $itemData
*
* @return bool
* @throws ConstraintException
* @throws QueryException
* @throws DuplicatedItemException
*/
public function update($itemData)
{
if ($this->checkDuplicatedOnUpdate($itemData)) {
throw new DuplicatedItemException(__u('Duplicated profile name'));
}
$query = /** @lang SQL */
'UPDATE UserProfile SET `name` = ?, `profile` = ? WHERE id = ? LIMIT 1';
$queryData = new QueryData();
$queryData->setQuery($query);
$queryData->setParams([
$itemData->getName(),
serialize($itemData->getProfile()),
$itemData->getId()
]);
$queryData->setOnErrorMessage(__u('Error while updating the profile'));
return $this->db->doQuery($queryData)->getAffectedNumRows();
}
/**
* Checks whether the item is duplicated on updating
*
* @param UserProfileData $itemData
*
* @return bool
* @throws ConstraintException
* @throws QueryException
*/
public function checkDuplicatedOnUpdate($itemData)
{
$query = /** @lang SQL */
'SELECT `name`
FROM UserProfile
WHERE UPPER(`name`) = ?
AND id <> ?';
$queryData = new QueryData();
$queryData->setParams([
$itemData->getName(),
$itemData->getId()
]);
$queryData->setQuery($query);
return $this->db->doSelect($queryData)->getNumRows() > 0;
}
}