Restore 'task purge' functionality (#3540)

Co-authored-by: ryneeverett <ryneeverett@gmail.com>
This commit is contained in:
Dustin J. Mitchell 2024-07-14 11:59:00 -04:00 committed by GitHub
parent e156efae7d
commit 1304d6361c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 366 additions and 5 deletions

View file

@ -27,13 +27,17 @@
#include <cmake.h>
#include <CmdPurge.h>
#include <Context.h>
#include <Filter.h>
#include <main.h>
#include <format.h>
#include <shared.h>
////////////////////////////////////////////////////////////////////////////////
CmdPurge::CmdPurge ()
{
_keyword = "purge";
_usage = "task <filter> purge";
_description = "(deprecated; does nothing)";
_description = "Removes the specified tasks from the data files. Causes permanent loss of data.";
_read_only = false;
_displays_id = false;
_needs_confirm = true;
@ -46,11 +50,134 @@ CmdPurge::CmdPurge ()
}
////////////////////////////////////////////////////////////////////////////////
int CmdPurge::execute (std::string&)
// Purges the task, while taking care of:
// - dependencies on this task
// - child tasks
void CmdPurge::handleRelations (Task& task, std::vector<Task>& tasks)
{
Context::getContext ().footnote ("As of version 3.0, this command has no effect.");
Context::getContext ().footnote ("Deleted tasks are removed from the task list automatically after they expire.");
return 0;
handleDeps (task);
handleChildren (task, tasks);
tasks.push_back(task);
}
////////////////////////////////////////////////////////////////////////////////
// Makes sure that any task having the dependency on the task being purged
// has that dependency removed, to preserve referential integrity.
void CmdPurge::handleDeps (Task& task)
{
std::string uuid = task.get ("uuid");
for (auto& blockedConst: Context::getContext ().tdb2.all_tasks ())
{
Task& blocked = const_cast<Task&>(blockedConst);
if (blocked.hasDependency (uuid))
{
blocked.removeDependency (uuid);
Context::getContext ().tdb2.modify (blocked);
}
}
}
////////////////////////////////////////////////////////////////////////////////
// Makes sure that with any recurrence parent are all the child tasks removed
// as well. If user chooses not to, the whole command is aborted.
void CmdPurge::handleChildren (Task& task, std::vector<Task>& tasks)
{
// If this is not a recurrence parent, we have no job here
if (!task.has ("mask"))
return;
std::string uuid = task.get ("uuid");
std::vector<Task> children;
// Find all child tasks
for (auto& childConst: Context::getContext ().tdb2.all_tasks ())
{
Task& child = const_cast<Task&> (childConst);
if (child.get ("parent") == uuid)
{
if (child.getStatus () != Task::deleted)
// In case any child task is not deleted, bail out
throw format ("Task '{1}' is a recurrence template. Its child task {2} must be deleted before it can be purged.",
task.get ("description"),
child.identifier (true));
else
children.push_back (child);
}
}
// If there are no children, our job is done
if (children.empty ())
return;
// Ask for confirmation to purge them, if needed
std::string question = format ("Task '{1}' is a recurrence template. All its {2} deleted children tasks will be purged as well. Continue?",
task.get ("description"),
children.size ());
if (Context::getContext ().config.getBoolean ("recurrence.confirmation") ||
(Context::getContext ().config.get ("recurrence.confirmation") == "prompt"
&& confirm (question)))
{
for (auto& child: children)
handleRelations (child, tasks);
}
else
throw std::string ("Purge operation aborted.");
}
////////////////////////////////////////////////////////////////////////////////
int CmdPurge::execute (std::string&)
{
int rc = 0;
std::vector<Task> tasks;
bool matched_deleted = false;
Filter filter;
std::vector <Task> filtered;
// Apply filter.
filter.subset (filtered);
if (filtered.size () == 0)
{
Context::getContext ().footnote ("No tasks specified.");
return 1;
}
for (auto& task : filtered)
{
// Allow purging of deleted tasks only. Hence no need to deal with:
// - unblocked tasks notifications (deleted tasks are not blocking)
// - project changes (deleted tasks not included in progress)
// It also has the nice property of being explicit - users need to
// mark tasks as deleted before purging.
if (task.getStatus () == Task::deleted)
{
// Mark that at least one deleted task matched the filter
matched_deleted = true;
std::string question;
question = format ("Permanently remove task {1} '{2}'?",
task.identifier (true),
task.get ("description"));
if (permission (question, filtered.size ()))
handleRelations (task, tasks);
}
}
// Now that any exceptions are handled, actually purge the tasks.
for (auto& task: tasks) {
Context::getContext ().tdb2.purge (task);
}
if (filtered.size () > 0 and ! matched_deleted)
Context::getContext ().footnote ("No deleted tasks specified. Maybe you forgot to delete tasks first?");
feedback_affected (tasks.size() == 1 ? "Purged {1} task." : "Purged {1} tasks.", tasks.size());
return rc;
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -28,10 +28,15 @@
#define INCLUDED_CMDPURGE
#include <string>
#include <vector>
#include <Command.h>
class CmdPurge : public Command
{
private:
void handleRelations (Task& task, std::vector<Task>& tasks);
void handleChildren (Task& task, std::vector<Task>& tasks);
void handleDeps (Task& task);
public:
CmdPurge ();
int execute (std::string&);