-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbackup.ps1
433 lines (350 loc) · 11.8 KB
/
backup.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# ================================================
#
# The log folder is created in the folder .duplicacy/tbp-logs/
#
# If the user wishes (sets the flag to true) and the script is run as an Administrator,
# the backup command will use the -vss flag (Shadow Copy),
# which can only be used as an Administrator.
#
# Thanks to <bassebaba/DuplicacyPowershell> for the initial script which
# inspired this one and from which I borrowed some parts.
#
# The script can be run manually (after setting the correct paths and variable names) like this:
# powershell -NoProfile -ExecutionPolicy Bypass -File "C:\duplicacy repo\backup.ps1" -Verb RunAs;
#
#
# ================================================
# ================================================
# ================================================
# Import the global and local config files
. "$PSScriptRoot\config.default.ps1"
. "$PSScriptRoot\config.user.ps1"
. "$PSScriptRoot\remote_notifications_util.ps1"
# ================================================
# ================================================
# ================================================
# Various timers keeping time
$timings = @{
scriptStartTime = 0
scriptEndTime = 0
scriptTotalRuntime = 0
}
# ================================================
# ================================================
# ================================================
# Info about log paths
# It is empty now but filled in the function initLoggingOptions
$log = @{ }
# ================================================
# ================================================
# ================================================
# Initialize the script-level duplicacy table.
# It is empty now but filled in the function initDuplicacyOptions
$duplicacy = @{ }
# ================================================
# ================================================
# ================================================
# If there was no error for all the duplicacy command invocations
# $globalSuccessStatus should remain true.
$globalSuccessStatus = $true
# ================================================
# ================================================
# ================================================
# In case the user wants to merge all notifications into one,
# fullNotificationMessage will store the text.
$fullNotificationMessage = ""
# ================================================
function main
{
# http://www.wallacetech.co.uk/?p=693
doPreBackupTasks
# ============================================
# ============================================
# ============================================
# == Execute the commands ==
if ($runBackup)
{
doDuplicacyCommand $duplicacy.backup
}
if ($runPrune)
{
doDuplicacyCommand $duplicacy.prune
}
if ($runCheck)
{
doDuplicacyCommand $duplicacy.check
}
if ($runCopyToOffsite)
{
doDuplicacyCommand $duplicacy.copy
}
if ($runPruneOffsite)
{
doDuplicacyCommand $duplicacy.pruneOffsite
}
warnIfNoCommandsWereExecuted
# ============================================
# ============================================
doPostBackupTasks
}
function doPreBackupTasks()
{
initDuplicacyOptions
Push-Location $repositoryFolder
initLoggingOptions
createLogFolder
logStartBackupProcess
cleanupOlderLogFiles
}
function logStartBackupProcess()
{
$timings.scriptStartTime = Get-Date
$startTime = $timings.scriptStartTime.ToString("yyyy-MM-dd HH:mm:ss")
log
log
log "================================================================="
log "==== Starting $scheduledTaskName @ $repositoryFolder"
log "===="
log "==== Start time is: $startTime"
log "================================================================="
$msg = @"
<b>== Starting $scheduledTaskName @ $repositoryFolder</b>
<code>
= Start time is`: $startTime
</code>
"@
if (!$mergeNotificationsIntoOne)
{
doRemoteNotifications $msg
}
else
{
$script:fullNotificationMessage += "$msg`n`n"
}
}
function cleanupOlderLogFiles()
{
$logFiles = Get-ChildItem $log.basePath -Directory | Where-Object { $_.LastWriteTime -lt (Get-Date -Hour 0 -Minute 0 -Second 0) }
foreach ($folder in $logFiles)
{
$fullName = $folder.FullName
$zipFileName = "$fullName.zip"
log "Zipping (and then deleting) the folder: $fullName to the zipFile: $zipFileName"
Compress-Archive -Path $fullName -DestinationPath $zipFileName -CompressionLevel Optimal -Update
if ($IsLinux -Or $IsMacOS)
{
log "OS is NOT Windows => deleting the folder"
# w/o -Verbose there is no output
# w/o output redirect *>&1 the output dooesn't go to Tee-Object
doCall { Remove-Item -Path $fullName -Recurse -Verbose *>&1 }
}
else
{
log "OS is Windows => sending file to Recycle Bin"
$shell = New-Object -ComObject "Shell.Application"
$item = $shell.Namespace(0).ParseName("$fullName")
$item.InvokeVerb("delete")
}
}
}
function doPostBackupTasks()
{
if ($globalSuccessStatus)
{
doRemotePing
}
else
{
log "=== Not doing any remote pings since globalSuccessStatus is $globalSuccessStatus"
}
logFinishBackupProcess
Pop-Location
}
function logFinishBackupProcess()
{
$timings.scriptEndTime = Get-Date
$timings.scriptTotalRuntime = New-Timespan -Start $timings.scriptStartTime -End $timings.scriptEndTime
$startTime = $timings.scriptStartTime.ToString("yyyy-MM-dd HH:mm:ss")
$endTime = $timings.scriptEndTime.ToString("yyyy-MM-dd HH:mm:ss")
$logFilePath = (Resolve-Path -Path $log.filePath).Path
$successStatusString = successStatusAsString $globalSuccessStatus
log "================================================================="
log "==== Finished($successStatusString) $scheduledTaskName @ $repositoryFolder"
log "===="
log "==== Start time is: $startTime"
log "==== End time is: $endTime"
log "===="
log ("==== Total runtime: {0} Hours {1} Minutes {2} Seconds" -f [int]($timings.scriptTotalRuntime.TotalHours), $timings.scriptTotalRuntime.Minutes, $timings.scriptTotalRuntime.Seconds)
log "==== logFile is: $logFilePath"
log "================================================================="
$msg = @"
<code>`n
== Finished($successStatusString) $scheduledTaskName @ $repositoryFolder
= Start time is: $startTime
= End time is: $endTime
= Total runtime: {0} Hours {1} Minutes {2} Seconds
= logFile is: $logFilePath
</code>
"@ -f [int]($timings.scriptTotalRuntime.TotalHours), $timings.scriptTotalRuntime.Minutes, $timings.scriptTotalRuntime.Seconds
if (!$mergeNotificationsIntoOne)
{
doRemoteNotifications $msg
}
else
{
$script:fullNotificationMessage += "$msg`n`n"
doRemoteNotifications $fullNotificationMessage
}
}
function doDuplicacyCommand($arg)
{
$command = $duplicacy.command + $arg
log "==="
log "=== Now executting $command"
log "==="
if (!$mergeNotificationsIntoOne)
{
doRemoteNotifications "<code> = Now executting $command</code>"
}
else
{
$script:fullNotificationMessage += "<code> = Now executting $command</code>`n`n"
}
doCall $duplicacy.exe (-split $duplicacy.options + -split $arg)
$localSuccessStatus = $true
if ($LastExitCode -ne 0)
{
$script:globalSuccessStatus = $false
$localSuccessStatus = $false
}
$successStatusString = successStatusAsString $localSuccessStatus
$msg = Get-Content -Tail 6 -Path $log.filePath
$msg = "$successStatusString! Last lines:`n" + " => " + "$( $msg -join "`n => " )"
if (!$mergeNotificationsIntoOne)
{
doRemoteNotifications "<code>$msg</code>"
}
else
{
$script:fullNotificationMessage += "<code>$msg</code>`n`n"
}
}
function doCall($command, $arg)
{
& $command @arg *>&1 | Tee-Object -FilePath "$( $log.filePath )" -Append
}
function log($str)
{
$date = $( Get-Date ).ToString("yyyy-MM-dd HH:mm:ss.fff")
doCall { Write-Output "${date} $str" }
}
function initDuplicacyOptions
{
# ============================================
# Duplicacy global options
$globalOpts = " -log "
if ($duplicacyDebug)
{
$globalOpts += " -d "
}
# ============================================
# Duplicacy backup options
$backupOpts = ""
if ($duplicacyVssOption -And ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]"Administrator"))
{
$backupOpts += " -vss "
$backupOpts += " -vss-timeout " + $duplicacyVssTimeout
}
if ($maxBackupTransferRate)
{
$backupOpts += " -limit-rate $maxBackupTransferRate "
}
if ($duplicacyBackupNumberOfThreads)
{
$backupOpts += " -threads " + $duplicacyBackupNumberOfThreads
}
# ============================================
# Duplicacy prune options
$pruneOpts = " $pruneRetentionPolicyLocal "
$pruneOffsiteOpts = " $pruneRetentionPolicyLocal "
if ($duplicacyPruneNumberOfThreads)
{
$pruneOpts += " -threads " + $duplicacyPruneNumberOfThreads
$pruneOffsiteOpts += " -threads " + $duplicacyPruneNumberOfThreads
}
if ($duplicacyPruneExtraOptionsLocal)
{
$pruneOpts += " $duplicacyPruneExtraOptionsLocal "
}
if ($duplicacyPruneExtraOptionsOffsite)
{
$pruneOffsiteOpts += " $duplicacyPruneExtraOptionsOffsite "
}
# ============================================
# Duplicacy copy options
$copyOpts = ""
if ($duplicacyCopyNumberOfThreads)
{
$copyOpts += " -threads " + $duplicacyCopyNumberOfThreads
}
if ($maxCopyTransferRate)
{
$copyOpts += " -upload-limit-rate " + $maxCopyTransferRate
}
if ($copySnapshotId)
{
$copyOpts += " -id " + $copySnapshotId
}
# ============================================
# Initialize the script-level duplicacy table with all the precomputed strings
$script:duplicacy.exe = "$duplicacyExePath"
$script:duplicacy.options = "$globalOpts"
$script:duplicacy.command = "$duplicacyExePath $globalOpts "
$script:duplicacy.backup = "backup -stats $backupOpts"
$script:duplicacy.check = " check "
$script:duplicacy.prune = " prune $pruneOpts "
$script:duplicacy.pruneOffsite = " prune $pruneOffsiteOpts "
$script:duplicacy.copy = " copy -to $offsiteStorageName $copyOpts "
}
function initLoggingOptions
{
# Init the logging paths and files
$log = $script:log
$log.basePath = ".duplicacy/tbp-logs" # relative to $repositoryFolder
$log.fileName = "backup-log " + $( Get-Date ).toString("yyyy-MM-dd HH-mm-ss") + "_" + $( Get-Date ).Ticks + ".log"
$log.workingPath = $log.basePath + "/" + $( Get-Date ).toString("yyyy-MM-dd dddd") + "/"
$log.filePath = $log.workingPath + $log.fileName
}
function createLogFolder
{
if (!(Test-Path -Path $log.workingPath))
{
New-Item -ItemType directory -Path $log.workingPath
log "Folder ${log.workingPath} does not exist. It has just been created"
}
}
function warnIfNoCommandsWereExecuted
{
if (-Not($runBackup -Or
$runPrune -Or
$runCheck -Or
$runPruneOffsite -Or
$runCopyToOffsite))
{
$msg = " !!! No commands were executed. You should check your configuration file: config.user.ps1!"
log
log $msg
log
doRemoteNotifications $msg
}
}
function successStatusAsString($someBoolean)
{
$status = "SUCCESS"
if (-Not$someBoolean)
{
$status = "FAILURE"
}
return $status
}
main