Add ability to specify a day for daily backups (--day-of-week) and for monthly backups (--day-of-month)
This commit is contained in:
parent
e20dcce913
commit
b459c04a46
|
@ -22,6 +22,8 @@ optional arguments:
|
||||||
-d N, --daily N keep N daily backups, default: 7
|
-d N, --daily N keep N daily backups, default: 7
|
||||||
-w N, --weekly N keep N weekly backups, default: 4
|
-w N, --weekly N keep N weekly backups, default: 4
|
||||||
-m N, --monthly N keep N monthly backups, default: 3
|
-m N, --monthly N keep N monthly backups, default: 3
|
||||||
|
--day-of-week N day of week for weekly backups, 0 for monday, 6 for sunday, default: 0
|
||||||
|
--day-of-month N day of month for monthly backups, dafault: 1
|
||||||
-f, --force suppress remove confirmation
|
-f, --force suppress remove confirmation
|
||||||
-r, --recursive remove files recursively
|
-r, --recursive remove files recursively
|
||||||
-t FORMAT, --timestamp-format FORMAT
|
-t FORMAT, --timestamp-format FORMAT
|
||||||
|
|
|
@ -9,6 +9,8 @@ DEFAULT_DAILY = 7
|
||||||
DEFAULT_WEEKLY = 4
|
DEFAULT_WEEKLY = 4
|
||||||
DEFAULT_MONTHLY = 3
|
DEFAULT_MONTHLY = 3
|
||||||
DEFAULT_TIMESTAMP_FORMAT = "%Y%m%d"
|
DEFAULT_TIMESTAMP_FORMAT = "%Y%m%d"
|
||||||
|
DEFAULT_DAY_OF_WEEK = 0
|
||||||
|
DEFAULT_DAY_OF_MONTH = 1
|
||||||
|
|
||||||
|
|
||||||
class BackupFile:
|
class BackupFile:
|
||||||
|
@ -19,6 +21,8 @@ class BackupFile:
|
||||||
* retention_daily - daily retention period
|
* retention_daily - daily retention period
|
||||||
* retention_weekly - weekly retention period
|
* retention_weekly - weekly retention period
|
||||||
* retention_monthly - monthly retention period
|
* retention_monthly - monthly retention period
|
||||||
|
* retention_day_of_week - day of week for weekly backups
|
||||||
|
* retention_day_of_month - day of month for monthly backups
|
||||||
* file_path (optional) - file path
|
* file_path (optional) - file path
|
||||||
* dateformat (optional) - format of timestamps (default is '%Y%m%d')
|
* dateformat (optional) - format of timestamps (default is '%Y%m%d')
|
||||||
"""
|
"""
|
||||||
|
@ -27,6 +31,8 @@ class BackupFile:
|
||||||
retention_daily,
|
retention_daily,
|
||||||
retention_weekly,
|
retention_weekly,
|
||||||
retention_monthly,
|
retention_monthly,
|
||||||
|
retention_day_of_week=0,
|
||||||
|
retention_day_of_month=1,
|
||||||
file_path=None,
|
file_path=None,
|
||||||
dateformat="%Y%m%d"
|
dateformat="%Y%m%d"
|
||||||
) -> None:
|
) -> None:
|
||||||
|
@ -34,6 +40,8 @@ class BackupFile:
|
||||||
self.daily = retention_daily
|
self.daily = retention_daily
|
||||||
self.weekly = retention_weekly
|
self.weekly = retention_weekly
|
||||||
self.monthly = retention_monthly
|
self.monthly = retention_monthly
|
||||||
|
self.day_of_week = retention_day_of_week
|
||||||
|
self.day_of_month = retention_day_of_month
|
||||||
self.dateformat = dateformat
|
self.dateformat = dateformat
|
||||||
curr_date = date.today() # Maybe this will be used to specify date as starting point...
|
curr_date = date.today() # Maybe this will be used to specify date as starting point...
|
||||||
if self.file_path is None:
|
if self.file_path is None:
|
||||||
|
@ -46,17 +54,21 @@ class BackupFile:
|
||||||
day = curr_date - timedelta(days=i)
|
day = curr_date - timedelta(days=i)
|
||||||
dates.append(day)
|
dates.append(day)
|
||||||
# Weekly
|
# Weekly
|
||||||
monday = curr_date - timedelta(days=date.weekday(curr_date))
|
weekly_day = curr_date - timedelta(days=date.weekday(curr_date)) + timedelta(days=self.day_of_week)
|
||||||
|
if weekly_day > curr_date:
|
||||||
|
weekly_day = weekly_day - timedelta(days=7)
|
||||||
for i in range(0, self.weekly):
|
for i in range(0, self.weekly):
|
||||||
day = monday - timedelta(days=(i*7))
|
day = weekly_day - timedelta(days=(i*7))
|
||||||
if day not in dates:
|
if day not in dates:
|
||||||
dates.append(day)
|
dates.append(day)
|
||||||
# Monthly
|
# Monthly
|
||||||
day = curr_date.replace(day=1)
|
day = curr_date.replace(day=self.day_of_month)
|
||||||
|
if day > curr_date:
|
||||||
|
day = (day.replace(day=1) - timedelta(days=1)).replace(day=self.day_of_month)
|
||||||
for i in range(0, self.monthly):
|
for i in range(0, self.monthly):
|
||||||
if day not in dates:
|
if day not in dates:
|
||||||
dates.append(day)
|
dates.append(day)
|
||||||
day = (day - timedelta(days=1)).replace(day=1)
|
day = (day.replace(day=1) - timedelta(days=1)).replace(day=self.day_of_month)
|
||||||
self.dates = dates
|
self.dates = dates
|
||||||
|
|
||||||
def new_file(
|
def new_file(
|
||||||
|
@ -65,6 +77,8 @@ class BackupFile:
|
||||||
retention_daily=None,
|
retention_daily=None,
|
||||||
retention_weekly=None,
|
retention_weekly=None,
|
||||||
retention_monthly=None,
|
retention_monthly=None,
|
||||||
|
retention_day_of_week=None,
|
||||||
|
retention_day_of_month=None,
|
||||||
dateformat=None
|
dateformat=None
|
||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
|
@ -76,12 +90,18 @@ class BackupFile:
|
||||||
retention_weekly = self.weekly
|
retention_weekly = self.weekly
|
||||||
if retention_monthly is None:
|
if retention_monthly is None:
|
||||||
retention_monthly = self.monthly
|
retention_monthly = self.monthly
|
||||||
|
if retention_day_of_week is None:
|
||||||
|
retention_day_of_week = self.day_of_week
|
||||||
|
if retention_day_of_month is None:
|
||||||
|
retention_day_of_month = self.day_of_month
|
||||||
if dateformat is None:
|
if dateformat is None:
|
||||||
dateformat = self.dateformat
|
dateformat = self.dateformat
|
||||||
new_file = BackupFile(
|
new_file = BackupFile(
|
||||||
retention_daily,
|
retention_daily,
|
||||||
retention_weekly,
|
retention_weekly,
|
||||||
retention_monthly,
|
retention_monthly,
|
||||||
|
retention_day_of_week,
|
||||||
|
retention_day_of_month,
|
||||||
file_path,
|
file_path,
|
||||||
dateformat
|
dateformat
|
||||||
)
|
)
|
||||||
|
@ -170,6 +190,22 @@ parser.add_argument(
|
||||||
metavar="N",
|
metavar="N",
|
||||||
help=f"keep N monthly backups, default: {DEFAULT_MONTHLY}"
|
help=f"keep N monthly backups, default: {DEFAULT_MONTHLY}"
|
||||||
)
|
)
|
||||||
|
# day of week for weekly backups
|
||||||
|
parser.add_argument(
|
||||||
|
"--day-of-week",
|
||||||
|
type=int,
|
||||||
|
default=DEFAULT_DAY_OF_WEEK,
|
||||||
|
metavar="N",
|
||||||
|
help=f"day of week for weekly backups, 0 for monday, 6 for sunday, default: {DEFAULT_DAY_OF_WEEK}"
|
||||||
|
)
|
||||||
|
# day of month for monthly backups
|
||||||
|
parser.add_argument(
|
||||||
|
"--day-of-month",
|
||||||
|
type=int,
|
||||||
|
default=DEFAULT_DAY_OF_MONTH,
|
||||||
|
metavar="N",
|
||||||
|
help=f"day of month for monthly backups, dafault: {DEFAULT_DAY_OF_MONTH}"
|
||||||
|
)
|
||||||
# force removal
|
# force removal
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-f", "--force",
|
"-f", "--force",
|
||||||
|
@ -196,6 +232,8 @@ args = parser.parse_args()
|
||||||
daily = args.daily
|
daily = args.daily
|
||||||
weekly = args.weekly
|
weekly = args.weekly
|
||||||
monthly = args.monthly
|
monthly = args.monthly
|
||||||
|
day_of_week = args.day_of_week
|
||||||
|
day_of_month = args.day_of_month
|
||||||
recursive = args.recursive
|
recursive = args.recursive
|
||||||
force = args.force
|
force = args.force
|
||||||
directory = args.path[0]
|
directory = args.path[0]
|
||||||
|
@ -210,6 +248,8 @@ files = BackupFile(
|
||||||
retention_daily=daily,
|
retention_daily=daily,
|
||||||
retention_weekly=weekly,
|
retention_weekly=weekly,
|
||||||
retention_monthly=monthly,
|
retention_monthly=monthly,
|
||||||
|
retention_day_of_week=day_of_week,
|
||||||
|
retention_day_of_month=day_of_month,
|
||||||
dateformat=timestamp_format
|
dateformat=timestamp_format
|
||||||
)
|
)
|
||||||
# Walk through subdirectory tree
|
# Walk through subdirectory tree
|
||||||
|
|
Loading…
Reference in New Issue