mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-05 16:14:11 +01:00
267 lines
7.0 KiB
PHP
267 lines
7.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012-2017, 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\Mgmt\Files;
|
|
|
|
use SP\Account\AccountUtil;
|
|
use SP\Core\Exceptions\SPException;
|
|
use SP\DataModel\FileData;
|
|
use SP\DataModel\FileExtData;
|
|
use SP\Log\Email;
|
|
use SP\Log\Log;
|
|
use SP\Mgmt\ItemInterface;
|
|
use SP\Mgmt\ItemSelectInterface;
|
|
use SP\Mgmt\ItemTrait;
|
|
use SP\Storage\DbWrapper;
|
|
use SP\Storage\QueryData;
|
|
use SP\Util\ImageUtil;
|
|
|
|
defined('APP_ROOT') || die();
|
|
|
|
/**
|
|
* Esta clase es la encargada de realizar operaciones con archivos de las cuentas de sysPass
|
|
*
|
|
* @property FileData $itemData
|
|
*/
|
|
class File extends FileBase implements ItemInterface, ItemSelectInterface
|
|
{
|
|
use ItemTrait;
|
|
|
|
/**
|
|
* @return mixed
|
|
* @throws \SP\Core\Exceptions\QueryException
|
|
* @throws \SP\Core\Exceptions\ConstraintException
|
|
* @throws \phpmailer\phpmailerException
|
|
* @throws \SP\Core\Exceptions\SPException
|
|
*/
|
|
public function add()
|
|
{
|
|
$query = /** @lang SQL */
|
|
'INSERT INTO accFiles
|
|
SET accountId = ?,
|
|
name = ?,
|
|
type = ?,
|
|
size = ?,
|
|
content = ?,
|
|
extension = ?,
|
|
thumb = ?';
|
|
|
|
$Data = new QueryData();
|
|
$Data->setQuery($query);
|
|
$Data->addParam($this->itemData->getAccfileAccountId());
|
|
$Data->addParam($this->itemData->getAccfileName());
|
|
$Data->addParam($this->itemData->getAccfileType());
|
|
$Data->addParam($this->itemData->getAccfileSize());
|
|
$Data->addParam($this->itemData->getAccfileContent());
|
|
$Data->addParam($this->itemData->getAccfileExtension());
|
|
$Data->setOnErrorMessage(__('No se pudo guardar el archivo', false));
|
|
|
|
if (FileUtil::isImage($this->itemData)) {
|
|
$thumbnail = ImageUtil::createThumbnail($this->itemData->getAccfileContent());
|
|
|
|
if ($thumbnail !== false) {
|
|
$Data->addParam($thumbnail);
|
|
} else {
|
|
$Data->addParam('no_thumb');
|
|
}
|
|
} else {
|
|
$Data->addParam('no_thumb');
|
|
}
|
|
|
|
$Log = new Log();
|
|
$LogMessage = $Log->getLogMessage();
|
|
$LogMessage->setAction(__('Subir Archivo', false));
|
|
$LogMessage->addDetails(__('Cuenta', false), AccountUtil::getAccountNameById($this->itemData->getAccfileAccountId()));
|
|
$LogMessage->addDetails(__('Archivo', false), $this->itemData->getAccfileName());
|
|
$LogMessage->addDetails(__('Tipo', false), $this->itemData->getAccfileType());
|
|
$LogMessage->addDetails(__('Tamaño', false), $this->itemData->getRoundSize() . 'KB');
|
|
|
|
DbWrapper::getQuery($Data);
|
|
|
|
$LogMessage->addDescription(__('Archivo subido', false));
|
|
$Log->writeLog();
|
|
|
|
Email::sendEmail($LogMessage);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param $id int
|
|
* @return mixed
|
|
* @throws \SP\Core\Exceptions\SPException
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
// Eliminamos el archivo de la BBDD
|
|
$query = /** @lang SQL */
|
|
'DELETE FROM accFiles WHERE id = ? LIMIT 1';
|
|
|
|
$Data = new QueryData();
|
|
$Data->setQuery($query);
|
|
$Data->addParam($id);
|
|
$Data->setOnErrorMessage(__('Error al eliminar el archivo', false));
|
|
|
|
DbWrapper::getQuery($Data);
|
|
|
|
if ($Data->getQueryNumRows() === 0) {
|
|
throw new SPException(__('Archivo no encontrado', false), SPException::INFO);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return FileExtData
|
|
*/
|
|
public function getInfoById($id)
|
|
{
|
|
$query = /** @lang SQL */
|
|
'SELECT name,
|
|
size,
|
|
type,
|
|
accountId,
|
|
extension,
|
|
account_name,
|
|
name
|
|
FROM accFiles
|
|
LEFT JOIN Account ON account_id = accountId
|
|
LEFT JOIN customers ON id = account_customerId
|
|
WHERE id = ? LIMIT 1';
|
|
|
|
$Data = new QueryData();
|
|
$Data->setMapClassName(FileExtData::class);
|
|
$Data->setQuery($query);
|
|
$Data->addParam($id);
|
|
|
|
return DbWrapper::getResults($Data);
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function update()
|
|
{
|
|
// TODO: Implement update() method.
|
|
}
|
|
|
|
/**
|
|
* @param $id int
|
|
* @return FileExtData
|
|
*/
|
|
public function getById($id)
|
|
{
|
|
$query = /** @lang SQL */
|
|
'SELECT name,
|
|
size,
|
|
type,
|
|
accountId,
|
|
content,
|
|
thumb,
|
|
extension,
|
|
account_name,
|
|
name
|
|
FROM accFiles
|
|
LEFT JOIN Account ON account_id = accountId
|
|
LEFT JOIN customers ON id = account_customerId
|
|
WHERE id = ? LIMIT 1';
|
|
|
|
$Data = new QueryData();
|
|
$Data->setMapClassName(FileExtData::class);
|
|
$Data->setQuery($query);
|
|
$Data->addParam($id);
|
|
|
|
return DbWrapper::getResults($Data);
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getAll()
|
|
{
|
|
// TODO: Implement getAll() method.
|
|
}
|
|
|
|
/**
|
|
* @param $id int
|
|
* @return mixed
|
|
*/
|
|
public function checkInUse($id)
|
|
{
|
|
// TODO: Implement checkInUse() method.
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function checkDuplicatedOnUpdate()
|
|
{
|
|
// TODO: Implement checkDuplicatedOnUpdate() method.
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function checkDuplicatedOnAdd()
|
|
{
|
|
// TODO: Implement checkDuplicatedOnAdd() method.
|
|
}
|
|
|
|
/**
|
|
* Devolver los elementos con los ids especificados
|
|
*
|
|
* @param array $ids
|
|
* @return FileExtData[]
|
|
*/
|
|
public function getByIdBatch(array $ids)
|
|
{
|
|
if (count($ids) === 0) {
|
|
return [];
|
|
}
|
|
|
|
$query = /** @lang SQL */
|
|
'SELECT name,
|
|
size,
|
|
type,
|
|
accountId,
|
|
content,
|
|
thumb,
|
|
extension,
|
|
account_name,
|
|
name
|
|
FROM accFiles
|
|
LEFT JOIN Account ON account_id = accountId
|
|
LEFT JOIN customers ON id = account_customerId
|
|
WHERE id IN (' . $this->getParamsFromArray($ids) . ')';
|
|
|
|
$Data = new QueryData();
|
|
$Data->setMapClassName(FileExtData::class);
|
|
$Data->setQuery($query);
|
|
$Data->setParams($ids);
|
|
|
|
return DbWrapper::getResultsArray($Data);
|
|
}
|
|
} |