Add command to disable projects not touched during one year
This commit is contained in:
parent
cb9e6377f6
commit
12202f0451
|
|
@ -11,6 +11,7 @@ use Symfony\Component\Console\Command\Command;
|
|||
* @package console
|
||||
* @author Frederic Guillot
|
||||
*
|
||||
* @property \PicoDb\Database $db
|
||||
* @property \Kanboard\Validator\PasswordResetValidator $passwordResetValidator
|
||||
* @property \Kanboard\Export\SubtaskExport $subtaskExport
|
||||
* @property \Kanboard\Export\TaskExport $taskExport
|
||||
|
|
|
|||
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
namespace Kanboard\Console;
|
||||
|
||||
use Kanboard\Model\ProjectModel;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class ProjectArchiveCommand extends BaseCommand
|
||||
{
|
||||
protected function configure()
|
||||
{
|
||||
$this
|
||||
->setName('projects:archive')
|
||||
->setDescription('Disable projects not touched during one year');
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
$projects = $this->db->table(ProjectModel::TABLE)
|
||||
->eq('is_active', 1)
|
||||
->lt('last_modified', strtotime('-1 year'))
|
||||
->findAll();
|
||||
|
||||
foreach ($projects as $project) {
|
||||
$output->writeln('Deactivating project: #'.$project['id'].' - '.$project['name']);
|
||||
$this->projectModel->disable($project['id']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -11,6 +11,7 @@ use Kanboard\Console\LocaleSyncCommand;
|
|||
use Kanboard\Console\PluginInstallCommand;
|
||||
use Kanboard\Console\PluginUninstallCommand;
|
||||
use Kanboard\Console\PluginUpgradeCommand;
|
||||
use Kanboard\Console\ProjectArchiveCommand;
|
||||
use Kanboard\Console\ProjectDailyColumnStatsExportCommand;
|
||||
use Kanboard\Console\ProjectDailyStatsCalculationCommand;
|
||||
use Kanboard\Console\ResetPasswordCommand;
|
||||
|
|
@ -46,6 +47,7 @@ class CommandProvider implements ServiceProviderInterface
|
|||
$application->add(new TaskOverdueNotificationCommand($container));
|
||||
$application->add(new SubtaskExportCommand($container));
|
||||
$application->add(new TaskExportCommand($container));
|
||||
$application->add(new ProjectArchiveCommand($container));
|
||||
$application->add(new ProjectDailyStatsCalculationCommand($container));
|
||||
$application->add(new ProjectDailyColumnStatsExportCommand($container));
|
||||
$application->add(new TransitionExportCommand($container));
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ Available commands:
|
|||
plugin:uninstall Remove a plugin
|
||||
plugin:upgrade Update all installed plugins
|
||||
projects
|
||||
projects:archive Disable projects not touched during one year
|
||||
projects:daily-stats Calculate daily statistics for all projects
|
||||
trigger
|
||||
trigger:tasks Trigger scheduler event for all tasks
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ Available commands:
|
|||
plugin:uninstall Eliminar plugin
|
||||
plugin:upgrade Actualizar todos los plugins instalados
|
||||
projects
|
||||
projects:archive Disable projects not touched during one year
|
||||
projects:daily-stats Calcular diariamente las estadisticas para todos los proyectos
|
||||
trigger
|
||||
trigger:tasks Disparadores de eventos calendarizados para todas las tareas
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ Available commands:
|
|||
plugin:uninstall Remove a plugin
|
||||
plugin:upgrade Update all installed plugins
|
||||
projects
|
||||
projects:archive Disable projects not touched during one year
|
||||
projects:daily-stats Calculate daily statistics for all projects
|
||||
trigger
|
||||
trigger:tasks Trigger scheduler event for all tasks
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ Available commands:
|
|||
plugin:uninstall Remove a plugin
|
||||
plugin:upgrade Update all installed plugins
|
||||
projects
|
||||
projects:archive Disable projects not touched during one year
|
||||
projects:daily-stats Calculate daily statistics for all projects
|
||||
trigger
|
||||
trigger:tasks Trigger scheduler event for all tasks
|
||||
|
|
|
|||
Loading…
Reference in New Issue