Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 149c5f560a | |||
| 505890e384 | |||
| 1916b626bc | |||
| d2558c5f55 | |||
| 97ded0eb08 | |||
| 3afcc69531 | |||
| 75c31f0506 | |||
| 9738b133d2 | |||
| cf5d107fd5 | |||
| 148d85121a | |||
| dc93b5f881 | |||
| 275de8c6fe | |||
| aa923dbe52 |
@@ -2,7 +2,8 @@
|
||||
"bundle": {
|
||||
"js/admin": {
|
||||
"scripts": [
|
||||
"uf-tweaks/js/handlebars-helpers.js"
|
||||
"uf-tweaks/js/handlebars-helpers.js",
|
||||
"uf-tweaks/js/modal-error-handler.js"
|
||||
],
|
||||
"options": {
|
||||
"sprinkle": {
|
||||
|
||||
16
assets/uf-tweaks/js/modal-error-handler.js
Normal file
16
assets/uf-tweaks/js/modal-error-handler.js
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
/**
|
||||
* Default handling of UF modal error
|
||||
*
|
||||
* This script depends on uf-modal.js
|
||||
*
|
||||
* Target page: *
|
||||
*/
|
||||
|
||||
$(document).ready(function() {
|
||||
const handleModalError = function() {
|
||||
$(this).ufModal('destroy');
|
||||
$('body').on('renderError.ufModal', handleModalError);
|
||||
}
|
||||
$('body').on('renderError.ufModal', handleModalError);
|
||||
});
|
||||
@@ -6,5 +6,8 @@
|
||||
"psr-4": {
|
||||
"UserFrosting\\Sprinkle\\UFTweaks\\": "src/"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"mobiledetect/mobiledetectlib": "^3.74"
|
||||
}
|
||||
}
|
||||
@@ -61,4 +61,14 @@ return [
|
||||
'php' => [
|
||||
'timezone' => 'Europe/London',
|
||||
],
|
||||
|
||||
/*
|
||||
* ----------------------------------------------------------------------
|
||||
* Retry Mailer settings
|
||||
* ----------------------------------------------------------------------
|
||||
*/
|
||||
'retry_mailer' => [
|
||||
'enabled' => true,
|
||||
'max_retries' => 5,
|
||||
],
|
||||
];
|
||||
|
||||
17
routes/roles.php
Normal file
17
routes/roles.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
use UserFrosting\Sprinkle\Core\Util\NoCache;
|
||||
|
||||
/*
|
||||
* Routes for administrative role management.
|
||||
*/
|
||||
$app->group('/api/roles', function () {
|
||||
$this->get('/', 'UserFrosting\Sprinkle\UFTweaks\Controller\RoleController:getList');
|
||||
})->add('authGuard')->add(new NoCache());
|
||||
73
src/Controller/RoleController.php
Normal file
73
src/Controller/RoleController.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Controller;
|
||||
|
||||
use Psr\Http\Message\ResponseInterface as Response;
|
||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||
use UserFrosting\Sprinkle\Account\Database\Models\Role;
|
||||
use UserFrosting\Sprinkle\Core\Controller\SimpleController;
|
||||
use UserFrosting\Support\Exception\ForbiddenException;
|
||||
|
||||
/**
|
||||
* Override role controller class to tweak the list of available user roles
|
||||
*
|
||||
* @author Craig Williams (craig@avsdev.uk)
|
||||
*/
|
||||
class RoleController extends SimpleController
|
||||
{
|
||||
/**
|
||||
* Returns a list of Roles.
|
||||
*
|
||||
* Generates a list of roles, optionally paginated, sorted and/or filtered.
|
||||
* This page requires authentication.
|
||||
*
|
||||
* Request type: GET
|
||||
*
|
||||
* @param Request $request
|
||||
* @param Response $response
|
||||
* @param array $args
|
||||
*
|
||||
* @throws ForbiddenException If user is not authorized to access page
|
||||
*/
|
||||
public function getList(Request $request, Response $response, $args)
|
||||
{
|
||||
// GET parameters
|
||||
$params = $request->getQueryParams();
|
||||
|
||||
/** @var \UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
|
||||
$authorizer = $this->ci->authorizer;
|
||||
|
||||
/** @var \UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
|
||||
$classMapper = $this->ci->classMapper;
|
||||
|
||||
/** @var \UserFrosting\Sprinkle\Account\Database\Models\Interfaces\UserInterface $currentUser */
|
||||
$currentUser = $this->ci->currentUser;
|
||||
|
||||
// Access-controlled page
|
||||
$adminRole = $authorizer->checkAccess($currentUser, 'uri_roles');
|
||||
$userRole = $authorizer->checkAccess($currentUser, 'role_list');
|
||||
|
||||
if (!$adminRole && !$userRole) {
|
||||
throw new ForbiddenException();
|
||||
}
|
||||
|
||||
$sprunje = $classMapper->createInstance('role_sprunje', $classMapper, $params);
|
||||
if ($userRole) {
|
||||
$siteAdminId = Role::where('slug', 'site-admin')->first()->id;
|
||||
$sprunje->extendQuery(function($query) {
|
||||
$query->where('role_id', '!=', $siteAdminId);
|
||||
});
|
||||
}
|
||||
|
||||
// Be careful how you consume this data - it has not been escaped and contains untrusted user-supplied content.
|
||||
// For example, if you plan to insert it into an HTML DOM, you must escape it on the client side (or use client-side templating).
|
||||
return $sprunje->toResponse($response);
|
||||
}
|
||||
}
|
||||
195
src/Database/Seeds/CreateUserAdmin.php
Normal file
195
src/Database/Seeds/CreateUserAdmin.php
Normal file
@@ -0,0 +1,195 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Database\Seeds;
|
||||
|
||||
use UserFrosting\Sprinkle\Account\Database\Seeds\DefaultPermissions as UFDefaultPermissions;
|
||||
use UserFrosting\Sprinkle\Account\Database\Models\Permission;
|
||||
use UserFrosting\Sprinkle\Account\Database\Models\Role;
|
||||
use UserFrosting\Sprinkle\Core\Database\Seeder\BaseSeed;
|
||||
use UserFrosting\Sprinkle\Core\Facades\Seeder;
|
||||
|
||||
/**
|
||||
* Seeder to create the user admin
|
||||
*/
|
||||
class CreateUserAdmin extends BaseSeed
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
Seeder::execute('DefaultPermissions');
|
||||
|
||||
$roles = $this->getRoles();
|
||||
$this->saveRoles($roles);
|
||||
|
||||
$newPermissions = $this->getNewPermissions();
|
||||
$this->savePermissions($newPermissions);
|
||||
|
||||
$permissions = $this->getPermissions();
|
||||
$this->syncPermissionsRole($roles, array_merge($newPermissions, $permissions));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array Roles to seed
|
||||
*/
|
||||
protected function getRoles()
|
||||
{
|
||||
return [
|
||||
'user-admin' => new Role([
|
||||
'slug' => 'user-admin',
|
||||
'name' => 'User Administrator',
|
||||
'description' => 'This role is meant for "user administrators", who can basically do anything related to users.',
|
||||
]),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Save roles.
|
||||
*
|
||||
* @param array $roles
|
||||
*/
|
||||
protected function saveRoles(array &$roles)
|
||||
{
|
||||
foreach ($roles as $slug => $role) {
|
||||
// Trying to find if the role already exist
|
||||
$existingRole = Role::where(['slug' => $role->slug])->first();
|
||||
|
||||
// Don't save if already exist, use existing role reference
|
||||
// otherwise to re-sync permissions and roles
|
||||
if ($existingRole == null) {
|
||||
$role->save();
|
||||
} else {
|
||||
$roles[$slug] = $existingRole;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Save permissions.
|
||||
*
|
||||
* @param array $permissions
|
||||
*/
|
||||
protected function savePermissions(array &$permissions)
|
||||
{
|
||||
foreach ($permissions as $slug => $permission) {
|
||||
// Trying to find if the permission already exist
|
||||
$existingPermission = Permission::where(['slug' => $permission->slug, 'conditions' => $permission->conditions])->first();
|
||||
|
||||
// Don't save if already exist, use existing permission reference
|
||||
// otherwise to re-sync permissions and roles
|
||||
if ($existingPermission == null) {
|
||||
$permission->save();
|
||||
} else {
|
||||
$permissions[$slug] = $existingPermission;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array Permissions to seed
|
||||
*/
|
||||
protected function getNewPermissions()
|
||||
{
|
||||
$defaultRoleIds = [
|
||||
'user' => Role::where('slug', 'user')->first()->id,
|
||||
'group-admin' => Role::where('slug', 'group-admin')->first()->id,
|
||||
'site-admin' => Role::where('slug', 'site-admin')->first()->id,
|
||||
'user-admin' => Role::where('slug', 'user-admin')->first()->id,
|
||||
];
|
||||
|
||||
return [
|
||||
'update_user_roles' => new Permission([
|
||||
'slug' => 'update_user_field',
|
||||
'name' => 'Edit user',
|
||||
'conditions' => "!has_role(user.id,{$defaultRoleIds['site-admin']}) && subset(fields,['roles'])",
|
||||
'description' => 'Edit role for users who are not Site Administrators.',
|
||||
]),
|
||||
'view_user_roles' => new Permission([
|
||||
'slug' => 'view_user_field',
|
||||
'name' => 'View user',
|
||||
'conditions' => "in(property,['roles'])",
|
||||
'description' => 'View roles of any user.',
|
||||
]),
|
||||
'role_list' => new Permission([
|
||||
'slug' => 'role_list',
|
||||
'name' => 'List of roles',
|
||||
'conditions' => "has_role(self.id,{$defaultRoleIds['user-admin']})",
|
||||
'description' => 'Retrieve the list of roles.',
|
||||
]),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array Permissions to seed
|
||||
*/
|
||||
protected function getPermissions()
|
||||
{
|
||||
$defaultRoleIds = [
|
||||
'user' => Role::where('slug', 'user')->first()->id,
|
||||
'group-admin' => Role::where('slug', 'group-admin')->first()->id,
|
||||
'site-admin' => Role::where('slug', 'site-admin')->first()->id,
|
||||
];
|
||||
|
||||
return [
|
||||
'uri_dashboard' => Permission::where([
|
||||
['slug', 'uri_dashboard'],
|
||||
['conditions', 'always()']
|
||||
])->first(),
|
||||
|
||||
'uri_user' => Permission::where([
|
||||
['slug', 'uri_user'],
|
||||
['conditions', 'always()']
|
||||
])->first(),
|
||||
'uri_users' => Permission::where([
|
||||
['slug', 'uri_users'],
|
||||
['conditions', 'always()']
|
||||
])->first(),
|
||||
|
||||
'create_user' => Permission::where([
|
||||
['slug', 'create_user']
|
||||
])->first(),
|
||||
'view_user_field' => Permission::where([
|
||||
['slug', 'view_user_field']
|
||||
])->first(),
|
||||
'update_user_field' => Permission::where([
|
||||
['slug', 'update_user_field']
|
||||
])->first(),
|
||||
'delete_user' => Permission::where([
|
||||
['slug', 'delete_user']
|
||||
])->first(),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Sync permissions with default roles.
|
||||
*
|
||||
* @param array $permissions
|
||||
*/
|
||||
protected function syncPermissionsRole(array $roles, array $permissions)
|
||||
{
|
||||
$roles['user-admin']->permissions()->syncWithoutDetaching([
|
||||
$permissions['uri_dashboard']->id,
|
||||
|
||||
$permissions['uri_user']->id,
|
||||
$permissions['uri_users']->id,
|
||||
|
||||
$permissions['role_list']->id,
|
||||
$permissions['view_user_roles']->id,
|
||||
$permissions['update_user_roles']->id,
|
||||
|
||||
$permissions['create_user']->id,
|
||||
$permissions['view_user_field']->id,
|
||||
$permissions['update_user_field']->id,
|
||||
$permissions['delete_user']->id,
|
||||
]);
|
||||
}
|
||||
}
|
||||
133
src/Jobs/RetryEmail.php
Normal file
133
src/Jobs/RetryEmail.php
Normal file
@@ -0,0 +1,133 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Jobs;
|
||||
|
||||
use Psr\Container\ContainerInterface;
|
||||
use UserFrosting\Sprinkle\Worker\Jobs\JobBase;
|
||||
use UserFrosting\Sprinkle\Core\Mail\StaticMailMessage;
|
||||
use UserFrosting\Sprinkle\Core\Mail\EmailRecipient;
|
||||
|
||||
/**
|
||||
* Retry email job class
|
||||
*
|
||||
* @author Craig Williams (https://avsdev.uk)
|
||||
*/
|
||||
class RetryEmail extends JobBase
|
||||
{
|
||||
protected $message = null;
|
||||
|
||||
protected $retries = 0;
|
||||
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param StaticMailMessage $mailMessage
|
||||
*/
|
||||
public function __construct(StaticMailMessage $mailMessage = null)
|
||||
{
|
||||
if ($mailMessage) {
|
||||
$this->message = $mailMessage;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setParams(array $params)
|
||||
{
|
||||
$mailMessage = new StaticMailMessage();
|
||||
$mailMessage->setFromEmail($params['from_email']);
|
||||
$mailMessage->setFromName($params['from_name']);
|
||||
$mailMessage->setReplyEmail($params['reply_email']);
|
||||
$mailMessage->setReplyName($params['reply_name']);
|
||||
|
||||
foreach ($params['recipients'] as $recipient) {
|
||||
$mailRecipient = new EmailRecipient(
|
||||
$recipient['email'],
|
||||
$recipient['name'],
|
||||
$recipient['params']
|
||||
);
|
||||
foreach ($recipient['ccs'] as $cc) {
|
||||
$mailRecipient->cc($cc['email'], $cc['name']);
|
||||
}
|
||||
foreach ($recipient['bccs'] as $bcc) {
|
||||
$mailRecipient->bcc($bcc['email'], $bcc['name']);
|
||||
}
|
||||
$mailMessage->addEmailRecipient($mailRecipient);
|
||||
}
|
||||
|
||||
$mailMessage->setSubject($params['subject']);
|
||||
$mailMessage->setBody($params['body']);
|
||||
|
||||
$this->message = $mailMessage;
|
||||
$this->retries = $params['retries'];
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getParams()
|
||||
{
|
||||
$recipients = [];
|
||||
foreach ($this->message->getRecipients() as $recipient) {
|
||||
$recipients[] = [
|
||||
'email' => $recipient->getEmail(),
|
||||
'name' => $recipient->getName(),
|
||||
'params' => $recipient->getParams(),
|
||||
'ccs' => $recipient->getCCs(),
|
||||
'bccs' => $recipient->getBCCs(),
|
||||
];
|
||||
}
|
||||
|
||||
return [
|
||||
'from_email' => $this->message->getFromEmail(),
|
||||
'from_name' => $this->message->getFromName(),
|
||||
'reply_email' => $this->message->getReplyEmail(),
|
||||
'reply_name' => $this->message->getReplyName(),
|
||||
'recipients' => $recipients,
|
||||
'subject' => $this->message->renderSubject(),
|
||||
'body' => $this->message->renderBody(),
|
||||
'retries' => $this->retries,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Attempt to re-send the email up to a maximum number of times specified in the config
|
||||
*/
|
||||
public function run() {
|
||||
try {
|
||||
static::$ci->mailer->send($this->message, false, true);
|
||||
} catch (\PHPMailer\PHPMailer\Exception $e) {
|
||||
$this->retries = $this->retries + 1;
|
||||
|
||||
if ($this->retries < static::$ci->config['retry_mailer.max_retries']) {
|
||||
$this->queue();
|
||||
} else {
|
||||
$allParams = $this->getParams();
|
||||
$allParams['body'] = null;
|
||||
static::$ci->errorLogger->error(
|
||||
"Maximum retries exceeded when attempting to send email:",
|
||||
$allParams
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Terminate the current job
|
||||
*/
|
||||
public function terminate() {
|
||||
// Nothing to do
|
||||
}
|
||||
}
|
||||
122
src/Mail/RetryMailer.php
Normal file
122
src/Mail/RetryMailer.php
Normal file
@@ -0,0 +1,122 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Mail;
|
||||
|
||||
use UserFrosting\Sprinkle\Core\Mail\EmailRecipient;
|
||||
use UserFrosting\Sprinkle\Core\Mail\Mailer;
|
||||
use UserFrosting\Sprinkle\Core\Mail\MailMessage;
|
||||
use UserFrosting\Sprinkle\Core\Mail\StaticMailMessage;
|
||||
use UserFrosting\Sprinkle\UFTweaks\Jobs\RetryEmail;
|
||||
|
||||
/**
|
||||
* Extends UF Mailer class to add retry function to sending mail via scheduler.
|
||||
*
|
||||
* This class should *only* be used in production once it is confirmed that email configuration works.
|
||||
*
|
||||
* @author Craig Williams (craig@avsdev.uk)
|
||||
*/
|
||||
class RetryMailer extends Mailer
|
||||
{
|
||||
protected function queueRetry(MailMessage $message, EmailRecipient $recipient = null) {
|
||||
// Queue for resending
|
||||
$retryMailMessage = new StaticMailMessage();
|
||||
$retryMailMessage->setFromEmail($message->getFromEmail());
|
||||
$retryMailMessage->setFromName($message->getFromName());
|
||||
$retryMailMessage->setReplyEmail($message->getReplyEmail());
|
||||
$retryMailMessage->setReplyName($message->getReplyName());
|
||||
if ($recipient) {
|
||||
$retryMailMessage->addEmailRecipient($recipient);
|
||||
$retryMailMessage->setSubject($message->renderSubject($recipient->getParams()));
|
||||
$retryMailMessage->setBody($message->renderBody($recipient->getParams()));
|
||||
} else {
|
||||
foreach ($message->getRecipients() as $recipientLoop) {
|
||||
$retryMailMessage->addEmailRecipient($recipientLoop);
|
||||
}
|
||||
$retryMailMessage->setSubject($message->renderSubject());
|
||||
$retryMailMessage->setBody($message->renderBody());
|
||||
}
|
||||
|
||||
$retry = new RetryEmail($retryMailMessage);
|
||||
$retry->queue();
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a MailMessage message.
|
||||
*
|
||||
* Sends a single email to all recipients, as well as their CCs and BCCs.
|
||||
* Since it is a single-header message, recipient-specific template data will not be included.
|
||||
*
|
||||
* @param MailMessage $message
|
||||
* @param bool $clearRecipients Set to true to clear the list of recipients in the message after calling send(). This helps avoid accidentally sending a message multiple times.
|
||||
*
|
||||
* @throws phpmailerException The message could not be sent.
|
||||
*/
|
||||
public function send(MailMessage $message, $clearRecipients = true, $disableRetry = false)
|
||||
{
|
||||
try {
|
||||
return parent::send($message, $clearRecipients);
|
||||
} catch(\PHPMailer\PHPMailer\Exception $e) {
|
||||
if (!$disableRetry) {
|
||||
$this->queueRetry($message);
|
||||
} else {
|
||||
throw $e;
|
||||
}
|
||||
} finally {
|
||||
// Clear recipients from the PHPMailer object for this iteration,
|
||||
// so that we can send a separate email to the next recipient.
|
||||
$this->phpMailer->clearAllRecipients();
|
||||
}
|
||||
|
||||
// Clear out the MailMessage's internal recipient list if requested
|
||||
if ($clearRecipients) {
|
||||
$message->clearRecipients();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a MailMessage message, sending a separate email to each recipient.
|
||||
*
|
||||
* If the message object supports message templates, this will render the template with the corresponding placeholder values for each recipient.
|
||||
*
|
||||
* @param MailMessage $message
|
||||
* @param bool $clearRecipients Set to true to clear the list of recipients in the message after calling send(). This helps avoid accidentally sending a message multiple times.
|
||||
*
|
||||
* @throws phpmailerException The message could not be sent.
|
||||
*/
|
||||
public function sendDistinct(MailMessage $message, $clearRecipients = true, $disableRetry = false)
|
||||
{
|
||||
$allRecipients = $message->getRecipients();
|
||||
$message->clearRecipients();
|
||||
|
||||
foreach ($allRecipients as $recipient) {
|
||||
$message->addEmailRecipient($recipient);
|
||||
try {
|
||||
return parent::sendDistinct($message, $clearRecipients);
|
||||
} catch (\PHPMailer\PHPMailer\Exception $e) {
|
||||
if (!$disableRetry) {
|
||||
$this->queueRetry($message, $recipient);
|
||||
} else {
|
||||
throw $e;
|
||||
}
|
||||
} finally {
|
||||
// Clear recipients from the PHPMailer object for this iteration,
|
||||
// so that we can send a separate email to the next recipient.
|
||||
$this->phpMailer->clearAllRecipients();
|
||||
}
|
||||
$message->clearRecipients();
|
||||
}
|
||||
|
||||
if (!$clearRecipients) {
|
||||
foreach ($allRecipients as $recipient) {
|
||||
$message->addEmailRecipient($recipient);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
43
src/Scheduler/Tasks/CleanupSessions.php
Normal file
43
src/Scheduler/Tasks/CleanupSessions.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Scheduler\Tasks;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Capsule\Manager as Capsule;
|
||||
use UserFrosting\Sprinkle\Scheduler\Scheduler\BaseTask;
|
||||
use UserFrosting\Sprinkle\Core\Database\Models\Session;
|
||||
|
||||
|
||||
/**
|
||||
* Daily task to clean expired sessions from the database
|
||||
*
|
||||
* @author Craig Williams (https://avsdev.uk)
|
||||
*/
|
||||
class CleanupSessions extends BaseTask
|
||||
{
|
||||
/**
|
||||
* Function used to specify the schedule for the task.
|
||||
*/
|
||||
public function schedule()
|
||||
{
|
||||
$this->daily()->at("23:00");
|
||||
}
|
||||
|
||||
/**
|
||||
* Function used to specify what the task does.
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
// Remove sessions over 2 days old
|
||||
Session::where('last_activity', '<', time()-(60*60*48))->delete();
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -9,6 +9,7 @@
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\ServicesProvider;
|
||||
|
||||
use Illuminate\Database\Capsule\Manager as Capsule;
|
||||
use Monolog\Formatter\LineFormatter;
|
||||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Logger;
|
||||
@@ -17,6 +18,8 @@ use Psr\Http\Message\ResponseInterface as Response;
|
||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||
use UserFrosting\Sprinkle\Core\Log\MixedFormatter;
|
||||
use UserFrosting\Sprinkle\UFTweaks\Twig\HasRoleExtension;
|
||||
use UserFrosting\Sprinkle\UFTweaks\Twig\MobileDetectExtension;
|
||||
use UserFrosting\Sprinkle\UFTweaks\Mail\RetryMailer;
|
||||
|
||||
|
||||
/**
|
||||
@@ -43,10 +46,40 @@ class ServicesProvider
|
||||
$container->extend('classMapper', function ($classMapper, $c) {
|
||||
$classMapper->setClassMapping('activity_sprunje', 'UserFrosting\Sprinkle\UFTweaks\Sprunje\ActivitySprunje');
|
||||
$classMapper->setClassMapping('user', 'UserFrosting\Sprinkle\UFTweaks\Database\Models\User');
|
||||
$classMapper->setClassMapping('user_sprunje', 'UserFrosting\Sprinkle\Organisations\Sprunje\UserSprunje');
|
||||
|
||||
return $classMapper;
|
||||
});
|
||||
|
||||
/*
|
||||
* Returns a callback that forwards to dashboard if user is already logged in.
|
||||
*
|
||||
* @return callable
|
||||
*/
|
||||
$container['redirect.onAlreadyLoggedIn'] = function ($c) {
|
||||
/*
|
||||
* This method is invoked when a user attempts to perform certain public actions when they are already logged in.
|
||||
*
|
||||
* @todo Forward to user's landing page or last visited page
|
||||
* @param \Psr\Http\Message\ServerRequestInterface $request
|
||||
* @param \Psr\Http\Message\ResponseInterface $response
|
||||
* @param array $args
|
||||
* @return \Psr\Http\Message\ResponseInterface
|
||||
*/
|
||||
return function (Request $request, Response $response, array $args) use ($c) {
|
||||
/** @var \UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager */
|
||||
$authorizer = $c->authorizer;
|
||||
|
||||
$currentUser = $c->authenticator->user();
|
||||
|
||||
if ($authorizer->checkAccess($currentUser, 'uri_dashboard')) {
|
||||
return $response->withRedirect($c->router->pathFor('dashboard'));
|
||||
} else {
|
||||
return $response->withRedirect($c->router->pathFor('index'));
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/*
|
||||
* Returns a callback that handles setting the `UF-Redirect` header after a successful login.
|
||||
*
|
||||
@@ -120,6 +153,25 @@ class ServicesProvider
|
||||
}
|
||||
);
|
||||
|
||||
/*
|
||||
* Check if the specified user (by user_id) has a particular permission.
|
||||
*
|
||||
* @param int $user_id the id of the user.
|
||||
* @param int $permission_slug slug of the permission to check.
|
||||
* @return bool true if the user has the permission, false otherwise.
|
||||
*/
|
||||
$authorizer->addCallback(
|
||||
'has_permission',
|
||||
function ($user_id, $permission_slug) {
|
||||
return Capsule::table('role_users')
|
||||
->join('permission_roles', 'role_users.role_id', '=', 'permission_roles.role_id')
|
||||
->join('permissions', 'permission_roles.permission_id', '=', 'permissions.id')
|
||||
->where('user_id', $user_id)
|
||||
->where('slug', $permission_slug)
|
||||
->count() > 0;
|
||||
}
|
||||
);
|
||||
|
||||
return $authorizer;
|
||||
});
|
||||
|
||||
@@ -132,6 +184,7 @@ class ServicesProvider
|
||||
$twig = $view->getEnvironment();
|
||||
|
||||
$twig->addExtension(new HasRoleExtension($c));
|
||||
$twig->addExtension(new MobileDetectExtension($c));
|
||||
|
||||
return $view;
|
||||
});
|
||||
@@ -157,5 +210,26 @@ class ServicesProvider
|
||||
|
||||
return $logger;
|
||||
};
|
||||
|
||||
/*
|
||||
* Mail service.
|
||||
*
|
||||
* @return \UserFrosting\Sprinkle\Core\Mail\Mailer
|
||||
* @return \UserFrosting\Sprinkle\UFTweaks\Mail\RetryMailer
|
||||
*/
|
||||
$container->extend('mailer', function ($mailer, $c) {
|
||||
if (!$c->config['retry_mailer.enabled']) {
|
||||
return $mailer;
|
||||
}
|
||||
|
||||
$retryMailer = new RetryMailer($c->mailLogger, $c->config['mail']);
|
||||
|
||||
// Use UF debug settings to override any service-specific log settings.
|
||||
if (!$c->config['debug.smtp']) {
|
||||
$retryMailer->getPhpMailer()->SMTPDebug = 0;
|
||||
}
|
||||
|
||||
return $retryMailer;
|
||||
});
|
||||
}
|
||||
}
|
||||
48
src/Sprunje/UserSprunje.php
Normal file
48
src/Sprunje/UserSprunje.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Sprunje;
|
||||
|
||||
use Illuminate\Database\Schema\Builder;
|
||||
use UserFrosting\Sprinkle\Admin\Sprunje\UserSprunje as UFUserSprunje;
|
||||
|
||||
/**
|
||||
* UserSprunje.
|
||||
*
|
||||
* Extends User sprunje to make name filtering case-insensitive and include username
|
||||
*
|
||||
* @author Craig Williams (https://avsdev.uk)
|
||||
*/
|
||||
class UserSprunje extends UFUserSprunje
|
||||
{
|
||||
/**
|
||||
* Filter LIKE the first name, last name, or email.
|
||||
*
|
||||
* @param Builder $query
|
||||
* @param mixed $value
|
||||
*
|
||||
* @return self
|
||||
*/
|
||||
protected function filterName($query, $value)
|
||||
{
|
||||
// Split value on separator for OR queries
|
||||
$values = explode($this->orSeparator, $value);
|
||||
$query->where(function ($query) use ($values) {
|
||||
foreach ($values as $value) {
|
||||
$likeValue = '%' . mb_strtolower($value) . '%';
|
||||
$query->orWhereRaw('LOWER(first_name) LIKE ?', $likeValue)
|
||||
->orWhereRaw('LOWER(last_name) LIKE ?', $likeValue)
|
||||
->orWhereRaw('LOWER(email) LIKE ?', $likeValue)
|
||||
->orWhereRaw('LOWER(user_name) LIKE ?', $likeValue);
|
||||
}
|
||||
});
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
60
src/Twig/MobileDetectExtension.php
Normal file
60
src/Twig/MobileDetectExtension.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Tweaks (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
namespace UserFrosting\Sprinkle\UFTweaks\Twig;
|
||||
|
||||
use Detection\MobileDetect;
|
||||
use Psr\Container\ContainerInterface;
|
||||
use Twig\Extension\AbstractExtension;
|
||||
use Twig\Extension\GlobalsInterface;
|
||||
use Twig\TwigFunction;
|
||||
|
||||
/**
|
||||
* Extends Twig functionality for mobile detection.
|
||||
*
|
||||
* @author Craig Williams (https://avsdev.uk)
|
||||
*/
|
||||
class MobileDetectExtension extends AbstractExtension implements GlobalsInterface
|
||||
{
|
||||
/**
|
||||
* @param ContainerInterface $services
|
||||
*/
|
||||
public function __construct(ContainerInterface $services)
|
||||
{
|
||||
}
|
||||
|
||||
public function getName()
|
||||
{
|
||||
return 'avsdev/uf-tweaks-mobileDetect';
|
||||
}
|
||||
|
||||
public function getFunctions()
|
||||
{
|
||||
return [
|
||||
// Add Twig function for checking permissions during dynamic menu rendering
|
||||
new TwigFunction('isMobile', function () {
|
||||
$detect = new MobileDetect();
|
||||
return $detect->isMobile();
|
||||
}),
|
||||
new TwigFunction('isTablet', function () {
|
||||
$detect = new MobileDetect();
|
||||
return $detect->isTablet();
|
||||
}),
|
||||
new TwigFunction('isDesktop', function () {
|
||||
$detect = new MobileDetect();
|
||||
return !$detect->isTablet() && !$detect->isMobile();
|
||||
}),
|
||||
];
|
||||
}
|
||||
|
||||
public function getGlobals()
|
||||
{
|
||||
return [];
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
{% if 'description' not in form.fields.hidden %}
|
||||
{% if 'slug' not in form.fields.hidden %}
|
||||
{% if col_width %}<div class="{{col_width}}">{% endif %}
|
||||
<div class="form-group">
|
||||
<label for="input-{{type}}-slug" class="control-label">{{field_name | default(translate('SLUG'))}}</label>
|
||||
@@ -15,4 +15,6 @@
|
||||
</div>
|
||||
</div>
|
||||
{% if col_width %}</div>{% endif %}
|
||||
{% else %}
|
||||
<input type="hidden" id="input-{{type}}-slug" name="slug" value="{{current_value}}">
|
||||
{% endif %}
|
||||
7
templates/tables/columns/abstract/generic-text.html.twig
Normal file
7
templates/tables/columns/abstract/generic-text.html.twig
Normal file
@@ -0,0 +1,7 @@
|
||||
<script id="{{table.id}}-column-{{column.name}}" type="text/x-handlebars-template">
|
||||
{% verbatim %}
|
||||
<td data-text="{{row.{% endverbatim %}{{column.field}}{% verbatim %}}}">
|
||||
{{row.{% endverbatim %}{{column.field}}{% verbatim %}}}
|
||||
</td>
|
||||
{% endverbatim %}
|
||||
</script>
|
||||
Reference in New Issue
Block a user