Skip to content

Commit

Permalink
API Update API to reflect changes to CLI interaction
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Sep 3, 2024
1 parent f42ba34 commit 74f83bc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 33 deletions.
2 changes: 1 addition & 1 deletion src/Extensions/QueuedJobDescriptorExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class QueuedJobDescriptorExtension extends Extension
{
/**
* Called on dev/build by DatabaseAdmin
* Called on dev/build by DevBuild
*/
protected function onAfterBuild(): void
{
Expand Down
25 changes: 8 additions & 17 deletions src/Tasks/GarbageCollectionTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,22 @@
namespace SilverStripe\Tasks;

use SilverStripe\Dev\BuildTask;
use SilverStripe\HybridExecution\HybridOutput;
use SilverStripe\SessionManager\Services\GarbageCollectionService;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;

class GarbageCollectionTask extends BuildTask
{
/**
* @var string
*/
private static $segment = 'LoginSessionGarbageCollectionTask';
protected static string $commandName = 'LoginSessionGarbageCollectionTask';

/**
* @var string
*/
protected $title = 'Login Session Garbage Collection Task';
protected string $title = 'Login Session Garbage Collection Task';

/**
* @var string
*/
protected $description = 'Removes expired login sessions and “remember me” hashes from the database';
protected static string $description = 'Removes expired login sessions and "remember me" hashes from the database';

/**
* @param HTTPRequest $request
*/
public function run($request)
protected function doRun(InputInterface $input, HybridOutput $output): int
{
GarbageCollectionService::singleton()->collect();
echo "Garbage collection completed successfully\n";
return Command::SUCCESS;
}
}
24 changes: 9 additions & 15 deletions src/Tasks/InvalidateAllSessionsTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,26 @@

namespace SilverStripe\SessionManager\Tasks;

use SilverStripe\Control\HTTPRequest;
use SilverStripe\Dev\BuildTask;
use SilverStripe\HybridExecution\HybridOutput;
use SilverStripe\Security\RememberLoginHash;
use SilverStripe\SessionManager\Models\LoginSession;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;

class InvalidateAllSessionsTask extends BuildTask
{
private static string $segment = 'InvalidateAllSessions';
protected static string $commandName = 'InvalidateAllSessions';

/**
* @var string
*/
protected $title = 'Invalidate All Login Sessions Task';
protected string $title = 'Invalidate All Login Sessions Task';

/**
* @var string
*/
protected $description = 'Removes all login sessions and "remember me" hashes (including yours) from the database';
protected static string $description = 'Removes all login sessions and "remember me" hashes'
. ' (including yours) from the database';

/**
* @param HTTPRequest $request
*/
public function run($request)
protected function doRun(InputInterface $input, HybridOutput $output): int
{
LoginSession::get()->removeAll();
RememberLoginHash::get()->removeAll();
echo "Session removal completed successfully\n";
return Command::SUCCESS;
}
}

0 comments on commit 74f83bc

Please sign in to comment.