-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollectionExporter.lua
86 lines (65 loc) · 3.16 KB
/
CollectionExporter.lua
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
local LrPathUtils = import 'LrPathUtils'
local LrFileUtils = import 'LrFileUtils'
local LrDialogs = import 'LrDialogs'
CollectionExporter = {}
function CollectionExporter.processRenderedPhotos( functionContext, exportContext)
-- Make a local reference for the export parameters
local exportSession = exportContext.exportSession
local exportParams = exportContext.propertyTable
local nPhotos = exportSession:countRenditions()
local progressScope = exportContext:configureProgress {
title = nPhotos > 1
and LOC ("$$$/CollectionExporter/ExportDialog/CollectionExporter=Saving ^1 photos", nPhotos )
or LOC "$$$/CollectionExporter/ExportDialog/CollectionExporter/One=Saving one foto from",
}
-- Store the failures to send it to LR
local failures = {}
local processes = {}
for sourceRendition, rendition in exportContext:renditions{ stopIfCanceled = true } do
-- Wait for next photo to render.
local success, pathOrMessage = rendition:waitForRender()
-- Check for cancellation again after photo has been rendered.
if progressScope:isCanceled() then break end
if success then
-- Extract the photo from the rendition
local photo = rendition.photo
-- Get the original path of the image from the metadata
local photoPath = photo:getRawMetadata('path')
-- Extract the folder path from the photo path
-- TODO: Use the LrPathUtils
local folderPath = photoPath:match("(.+)/[^/]+$")
-- Extract the fileName from the photoPath
local fileName = LrPathUtils.leafName(photoPath)
-- Extract the base folder to use
local folder = LrPathUtils.leafName(folderPath)
-- Extract the base path defined in LR from the image path. ex. /Users/user/export/image.jpg to /Users/user/export
local basePath = LrPathUtils.parent(pathOrMessage)
-- Child = Join paths from the base path to the folder from the catalog
local outputFolderPath = LrPathUtils.child(basePath, folder)
-- Create the required directory
LrFileUtils.createAllDirectories(outputFolderPath)
-- We need to extract the name with the output extension
local fileNameOutput = LrPathUtils.leafName(pathOrMessage)
-- Path where the image will finally go, in this case it will contain the original path + catalog folder + image name
local outputFile = LrPathUtils.child(outputFolderPath, fileNameOutput)
-- Move the file to the correct path
local success, moveMessage = LrFileUtils.move(pathOrMessage, outputFile)
if not success then
local error = ""
if moveMessage then
error = moveMessage
end
LrDialogs.message("Error", "Failed to move file from " .. pathOrMessage .. " to " .. outputFile .. " reason: " .. error, "critical")
end
end
end
if #failures > 0 then
local message
if #failures == 1 then
message = LOC "$$$/CollectionExporter/ExportDialog/CollectionExporter/OneFailed=1 file failed to upload correctly."
else
message = LOC ( "$$$/CollectionExporter/ExportDialog/CollectionExporter/OneSomeFileFailed=^1 files failed to save it correctly.", #failures )
end
LrDialogs.message( message, table.concat( failures, "\n" ) )
end
end