mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00

Conflicts: lib/Alchemy/Phrasea/Command/Developer/JavascriptBuilder.php lib/Alchemy/Phrasea/Controller/Prod/Basket.php lib/Alchemy/Phrasea/Core/Provider/TaskManagerServiceProvider.php lib/classes/Exception/Feed/ItemNotFound.php lib/classes/Exception/Feed/PublisherNotFound.php lib/classes/Feed/Abstract.php lib/classes/Feed/Adapter.php lib/classes/Feed/Aggregate.php lib/classes/Feed/Collection.php lib/classes/Feed/CollectionInterface.php lib/classes/Feed/Entry/Adapter.php lib/classes/Feed/Entry/Collection.php lib/classes/Feed/Entry/Interface.php lib/classes/Feed/Entry/Item.php lib/classes/Feed/Entry/ItemInterface.php lib/classes/Feed/Interface.php lib/classes/Feed/Link.php lib/classes/Feed/LinkInterface.php lib/classes/Feed/Publisher/Adapter.php lib/classes/Feed/Publisher/Interface.php lib/classes/Feed/Token.php lib/classes/Feed/TokenAggregate.php lib/classes/Feed/XML/Abstract.php lib/classes/Feed/XML/Atom.php lib/classes/Feed/XML/Cooliris.php lib/classes/Feed/XML/Interface.php lib/classes/Feed/XML/RSS.php lib/classes/Feed/XML/RSS/ImageInterface.php lib/classes/http/request.php lib/classes/module/console/schedulerStart.php lib/classes/module/console/schedulerState.php lib/classes/module/console/schedulerStop.php lib/classes/module/console/taskState.php lib/classes/module/console/tasklist.php lib/classes/module/console/taskrun.php lib/classes/registry.php lib/classes/registryInterface.php lib/classes/set/order.php lib/classes/system/url.php lib/classes/task/Scheduler.php lib/classes/task/appboxAbstract.php lib/classes/task/databoxAbstract.php lib/classes/task/manager.php lib/classes/task/period/RecordMover.php lib/classes/task/period/apibridge.php lib/classes/task/period/archive.php lib/classes/task/period/cindexer.php lib/classes/task/period/emptyColl.php lib/classes/task/period/ftp.php lib/classes/task/period/ftpPull.php lib/classes/task/period/subdef.php lib/classes/task/period/test.php lib/classes/task/period/writemeta.php lib/conf.d/PhraseaFixture/AbstractWZ.php lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php lib/conf.d/PhraseaFixture/Story/LoadOneStory.php lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php lib/conf.d/PhraseaFixture/UsrLists/UsrList.php lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php
223 lines
8.3 KiB
PHP
223 lines
8.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Helper\User;
|
|
|
|
use Alchemy\Phrasea\Exception\InvalidArgumentException;
|
|
use Alchemy\Phrasea\Helper\Helper;
|
|
use Alchemy\Phrasea\Notification\Receiver;
|
|
use Alchemy\Phrasea\Notification\Mail\MailRequestPasswordSetup;
|
|
use Alchemy\Phrasea\Notification\Mail\MailRequestEmailConfirmation;
|
|
|
|
class Manage extends Helper
|
|
{
|
|
/**
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $results;
|
|
|
|
/**
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $query_parms;
|
|
|
|
/**
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $usr_id;
|
|
|
|
public function export()
|
|
{
|
|
$request = $this->request;
|
|
|
|
$offset_start = (int) $request->get('offset_start');
|
|
$offset_start = $offset_start < 0 ? 0 : $offset_start;
|
|
|
|
$this->query_parms = [
|
|
'inactives' => $request->get('inactives')
|
|
, 'like_field' => $request->get('like_field')
|
|
, 'like_value' => $request->get('like_value')
|
|
, 'sbas_id' => $request->get('sbas_id')
|
|
, 'base_id' => $request->get('base_id')
|
|
, 'last_model' => $this->request->get('last_model')
|
|
, 'srt' => $request->get("srt", \User_Query::SORT_CREATIONDATE)
|
|
, 'ord' => $request->get("ord", \User_Query::ORD_DESC)
|
|
, 'offset_start' => 0
|
|
];
|
|
|
|
$query = new \User_Query($this->app);
|
|
|
|
if (is_array($this->query_parms['base_id']))
|
|
$query->on_base_ids($this->query_parms['base_id']);
|
|
elseif (is_array($this->query_parms['sbas_id']))
|
|
$query->on_sbas_ids($this->query_parms['sbas_id']);
|
|
|
|
$this->results = $query->sort_by($this->query_parms["srt"], $this->query_parms["ord"])
|
|
->like($this->query_parms['like_field'], $this->query_parms['like_value'])
|
|
->last_model_is($this->query_parms['last_model'])
|
|
->get_inactives($this->query_parms['inactives'])
|
|
->include_templates(false)
|
|
->on_bases_where_i_am($this->app['acl']->get($this->app['authentication']->getUser()), ['canadmin'])
|
|
->execute();
|
|
|
|
return $this->results->get_results();
|
|
}
|
|
|
|
public function search()
|
|
{
|
|
$offset_start = (int) $this->request->get('offset_start');
|
|
$offset_start = $offset_start < 0 ? 0 : $offset_start;
|
|
$results_quantity = (int) $this->request->get('per_page');
|
|
$results_quantity = ($results_quantity < 10 || $results_quantity > 50) ? 20 : $results_quantity;
|
|
|
|
$this->query_parms = [
|
|
'inactives' => $this->request->get('inactives')
|
|
, 'like_field' => $this->request->get('like_field')
|
|
, 'like_value' => $this->request->get('like_value')
|
|
, 'sbas_id' => $this->request->get('sbas_id')
|
|
, 'base_id' => $this->request->get('base_id')
|
|
, 'last_model' => $this->request->get('last_model')
|
|
, 'srt' => $this->request->get("srt", \User_Query::SORT_CREATIONDATE)
|
|
, 'ord' => $this->request->get("ord", \User_Query::ORD_DESC)
|
|
, 'per_page' => $results_quantity
|
|
, 'offset_start' => $offset_start
|
|
];
|
|
|
|
$query = new \User_Query($this->app);
|
|
|
|
if (is_array($this->query_parms['base_id']))
|
|
$query->on_base_ids($this->query_parms['base_id']);
|
|
elseif (is_array($this->query_parms['sbas_id']))
|
|
$query->on_sbas_ids($this->query_parms['sbas_id']);
|
|
|
|
$this->results = $query->sort_by($this->query_parms["srt"], $this->query_parms["ord"])
|
|
->like($this->query_parms['like_field'], $this->query_parms['like_value'])
|
|
->last_model_is($this->query_parms['last_model'])
|
|
->get_inactives($this->query_parms['inactives'])
|
|
->include_templates(true)
|
|
->on_bases_where_i_am($this->app['acl']->get($this->app['authentication']->getUser()), ['canadmin'])
|
|
->limit($offset_start, $results_quantity)
|
|
->execute();
|
|
|
|
try {
|
|
$invite_id = \User_Adapter::get_usr_id_from_login($this->app, 'invite');
|
|
$invite = \User_Adapter::getInstance($invite_id, $this->app);
|
|
} catch (\Exception $e) {
|
|
$invite = \User_Adapter::create($this->app, 'invite', 'invite', '', false);
|
|
}
|
|
|
|
try {
|
|
$autoregister_id = \User_Adapter::get_usr_id_from_login($this->app, 'autoregister');
|
|
$autoregister = \User_Adapter::getInstance($autoregister_id, $this->app);
|
|
} catch (\Exception $e) {
|
|
$autoregister = \User_Adapter::create($this->app, 'autoregister', 'autoregister', '', false);
|
|
}
|
|
|
|
foreach ($this->query_parms as $k => $v) {
|
|
if (is_null($v))
|
|
$this->query_parms[$k] = false;
|
|
}
|
|
|
|
$query = new \User_Query($this->app);
|
|
$templates = $query
|
|
->only_templates(true)
|
|
->execute()->get_results();
|
|
|
|
return [
|
|
'users' => $this->results,
|
|
'parm' => $this->query_parms,
|
|
'invite_user' => $invite,
|
|
'autoregister_user' => $autoregister,
|
|
'templates' => $templates
|
|
];
|
|
}
|
|
|
|
public function create_newuser()
|
|
{
|
|
$email = $this->request->get('value');
|
|
|
|
if ( ! \Swift_Validate::email($email)) {
|
|
throw new \Exception_InvalidArgument('Invalid mail address');
|
|
}
|
|
|
|
$conn = $this->app['phraseanet.appbox']->get_connection();
|
|
$sql = 'SELECT usr_id FROM usr WHERE usr_mail = :email';
|
|
$stmt = $conn->prepare($sql);
|
|
$stmt->execute([':email' => $email]);
|
|
$row = $stmt->fetch(\PDO::FETCH_ASSOC);
|
|
$count = count($row);
|
|
|
|
if (!is_array($row) || $count == 0) {
|
|
$sendCredentials = !!$this->request->get('send_credentials', false);
|
|
$validateMail = !!$this->request->get('validate_mail', false);
|
|
|
|
$createdUser = \User_Adapter::create($this->app, $email, \random::generatePassword(16), $email, false, false);
|
|
/* @var $createdUser \User_Adapter */
|
|
|
|
$receiver = null;
|
|
try {
|
|
$receiver = Receiver::fromUser($createdUser);
|
|
} catch (InvalidArgumentException $e) {
|
|
|
|
}
|
|
|
|
if ($sendCredentials) {
|
|
$urlToken = $this->app['tokens']->getUrlToken(\random::TYPE_PASSWORD, $createdUser->get_id());
|
|
|
|
if ($receiver && false !== $urlToken) {
|
|
$url = $this->app->url('login_renew_password', ['token' => $urlToken]);
|
|
$mail = MailRequestPasswordSetup::create($this->app, $receiver, null, '', $url);
|
|
$mail->setLogin($createdUser->get_login());
|
|
$this->app['notification.deliverer']->deliver($mail);
|
|
}
|
|
}
|
|
|
|
if ($validateMail) {
|
|
$createdUser->set_mail_locked(true);
|
|
|
|
if ($receiver) {
|
|
$expire = new \DateTime('+3 days');
|
|
$token = $this->app['tokens']->getUrlToken(\random::TYPE_PASSWORD, $createdUser->get_id(), $expire, $createdUser->get_email());
|
|
$url = $this->app->url('login_register_confirm', ['code' => $token]);
|
|
|
|
$mail = MailRequestEmailConfirmation::create($this->app, $receiver, null, '', $url, $expire);
|
|
$this->app['notification.deliverer']->deliver($mail);
|
|
}
|
|
}
|
|
|
|
$this->usr_id = $createdUser->get_id();
|
|
} else {
|
|
$this->usr_id = $row['usr_id'];
|
|
$createdUser = \User_Adapter::getInstance($this->usr_id, $this->app);
|
|
}
|
|
|
|
return $createdUser;
|
|
}
|
|
|
|
public function create_template()
|
|
{
|
|
$name = $this->request->get('value');
|
|
|
|
if (trim($name) === '') {
|
|
throw new \Exception_InvalidArgument('Invalid template name');
|
|
}
|
|
|
|
$created_user = \User_Adapter::create($this->app, $name, \random::generatePassword(16), null, false, false);
|
|
$created_user->set_template($this->app['authentication']->getUser());
|
|
$this->usr_id = $this->app['authentication']->getUser()->get_id();
|
|
|
|
return $created_user;
|
|
}
|
|
}
|