DeDRM App
DeDRM App
plist"
property tempFileName : "DeDRM_temp.log"
property prefsFolderName : "com.apprenticealf.dedrm"
property newKeysFolderName : "newKeys"
property handledExtensions : {"epub", "pdf", "prc", "azw", "azw1", "tpz", "azw3",
"azw4", "mobi", "pobi", "pdb"}
global python
global oldAppleScript
global eReaderTool
global MobipocketTool
global KindlePIDTool
global BNKeyGenTool
global BNKeyFetchTool
global BNePubTool
global KindleKeyTool
global NookKeyTool
global AdobeKeyGenTool
global AdobeePubTool
global ePubTestTool
global AdobePDFTool
global ZipFixTool
global ProgressApp
global PIDs
global UDIDs
global bnKeys
global KindleSerialList
global AndroidKeyList
global KindleKeyList
global AdeptKeyList
global ErrorList
global WarningList
global CompletedList
global ErrorCount
global WarningCount
global CompletedCount
global totalebooks
global completedebooks
global outputFolder
global logFilePath
global tempfilepath
global paraend
on writetolog(logstring)
try
set fileRef to open for access logFilePath with write permission
write logstring & "
" to fileRef starting at eof as «class utf8»
close access fileRef
end try
end writetolog
on clearlog()
try
set fileRef to open for access logFilePath with write permission
set eof fileRef to 0
close access fileRef
end try
end clearlog
on cleartemp()
try
set fileRef to open for access tempfilepath with write permission
set eof fileRef to 0
close access fileRef
end try
end cleartemp
on readtemp()
set tempContents to ""
try
set fileRef to open for access tempfilepath
if (get eof fileRef) > 0 then
set tempContents to read fileRef from 1 as «class utf8»
end if
close access fileRef
end try
return tempContents
end readtemp
on readtemplist()
set templist to {}
try
set fileRef to open for access tempfilepath
if (get eof fileRef) > 0 then
set tempContents to paragraphs of (read fileRef from 1 as «class
utf8»)
end if
close access fileRef
end try
repeat with nextLine in tempContents
if length of nextLine is greater than 0 then
copy nextLine to the end of templist
end if
end repeat
return templist
end readtemplist
on quotedtemppath()
set tempFile to POSIX path of file tempfilepath
return quoted form of tempFile
end quotedtemppath
on folderexists(inputFolder)
try
--display dialog "test -d " & quoted form of (POSIX path of
inputFolder)
do shell script "test -d " & quoted form of (POSIX path of inputFolder)
return true
end try
return false
end folderexists
on fileexists(inputFile)
try
do shell script "test -f " & quoted form of (POSIX path of inputFile)
return true
end try
return false
end fileexists
on GetFileExtension(fileName)
set fileExtension to ""
if fileName contains "." then
set oldTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to "."
set fileExtension to the last text item of fileName
set AppleScript's text item delimiters to oldTIDs
end if
return fileExtension
end GetFileExtension
on GetFileNameOnly(fileName)
set fileNameOnly to fileName
if fileName contains "." then
set oldTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to "."
set fileNameOnly to (text items 1 through -2 of fileName) as string
set AppleScript's text item delimiters to oldTIDs
end if
return fileNameOnly
end GetFileNameOnly
on GetTools()
set paraend to "
"
set ASnumber to (text 1 thru 3 of (AppleScript's version as text) as real)
set oldAppleScript to (ASnumber < 2.0)
set python to "/usr/local/bin/python"
if not fileexists(python) then
set python to "/usr/bin/python"
end if
set pythonversion to "2.3"
try
set pythonversion to do shell script python & " -c \"from sys import
version; print version[:3]\""
end try
-- display dialog pythonversion
if (pythonversion is not "2.5") and (pythonversion is not "2.6") and
(pythonversion is not "2.7") then
set dialogresult to (display dialog "This AppleScript requires Python
2.7x.
Please install python 2.7x and try again." buttons {"Quit"} default button 1
with title "DeDRM" with icon stop)
return false
end if
-- we always want a space after the command
set python to python & " "
on unlockmobifile(encryptedFile)
--check it's a mobi file.
set BOOKMOBI to "NOTAMOBI"
try
set BOOKMOBI to read file encryptedFile from 61 for 8
end try
if BOOKMOBI is not "BOOKMOBI" and BOOKMOBI is not "TEXtREAd" then
set TOPAZ to "NOT"
try
set TOPAZ to read file encryptedFile from 1 for 4
end try
if TOPAZ is not "TPZ0" then
set ErrorCount to ErrorCount + 1
set ErrorList to ErrorList & encryptedFile & " is neither a
Kindle not a Mobipocket file.
"
return
end if
end if
set encryptedFilePath to POSIX path of file encryptedFile
tell application "Finder"
set parent_folder to (container of file encryptedFile) as text
set fileName to (name of file encryptedFile) as text
end tell
set fileExtension to "." & GetFileExtension(fileName)
set fileName to GetFileNameOnly(fileName)
if outputFolder is "" or not folderexists(outputFolder) then
set dedrmFolder to POSIX path of file parent_folder
else
set dedrmFolder to POSIX path of file outputFolder
end if
set shellcommand to python & (quoted form of MobipocketTool)
repeat with KindleKeyPath in KindleKeyList
set shellcommand to shellcommand & " -k " & quoted form of
KindleKeyPath
end repeat
repeat with AndroidKeyPath in AndroidKeyList
set shellcommand to shellcommand & " -a " & quoted form of
AndroidKeyPath
end repeat
set Serialstring to GetSerialstring()
if Serialstring is not "" then set shellcommand to shellcommand & " -s " &
quoted form of Serialstring
set PIDstring to GetPIDstring()
if PIDstring is "" then
set PIDstring to GetUDIDPIDs()
else
set PIDstring to PIDstring & "," & GetUDIDPIDs()
end if
if PIDstring is not "" then set shellcommand to shellcommand & " -p " &
quoted form of PIDstring
set shellcommand to shellcommand & " " & (quoted form of encryptedFilePath) &
" " & (quoted form of dedrmFolder)
set shellcommand to shellcommand & " > " & quotedtemppath()
--display dialog "shellcommand: " default answer shellcommand buttons {"OK"}
default button 1 giving up after 10
writetolog("shellcommand: " & shellcommand)
cleartemp()
set DecodingError to false
set shellresult to ""
set ErrorText to ""
set decoded to true
try
do shell script shellcommand
on error ErrorText number errnum
set DecodingError to true
set decoded to false
end try
set shellresult to readtemp()
writetolog("shellresult: " & shellresult & " " & ErrorText)
if decoded then
set decoded to ((offset of "No key found" in shellresult) is 0)
end if
if not decoded then
DecodingError = true
set newKeyList to GetKindleKeys()
if length of newKeyList > 0 then
set shellcommand to python & (quoted form of MobipocketTool)
repeat with KindleKeyPath in newKeyList
set shellcommand to shellcommand & " -k " & quoted form of
KindleKeyPath
end repeat
set shellcommand to shellcommand & " " & (quoted form of
encryptedFilePath) & " " & (quoted form of dedrmFolder)
set shellcommand to shellcommand & " > " & quotedtemppath()
--display dialog "shellcommand: " default answer shellcommand
buttons {"OK"} default button 1 giving up after 10
writetolog("shellcommand: " & shellcommand)
cleartemp()
set DecodingError to false
set shellresult to ""
set ErrorText to ""
set decoded to true
try
do shell script shellcommand
on error ErrorText number errnum
set DecodingError to true
set decoded to false
end try
set shellresult to readtemp()
writetolog("shellresult: " & shellresult & " " & ErrorText)
if decoded then
set DecodingError to not ((offset of "No key found" in
shellresult) is 0)
end if
if not DecodingError then
set KindleKeyList to KindleKeyList & newKeyList
end if
end if
end if
if DecodingError then
set ErrorCount to ErrorCount + 1
set ErrorList to ErrorList & fileName & fileExtension & " couldn't be
decrypted.
"
else if (offset of "not encrypted" in shellresult) > 0 then
set WarningCount to WarningCount + 1
set WarningList to WarningList & fileName & fileExtension & " is not
encrypted.
"
else
set CompletedCount to CompletedCount + 1
set CompletedList to CompletedList & fileName & fileExtension & paraend
end if
end unlockmobifile
on unlockpdbfile(encryptedFile)
--check it's an eReader file.
set PNRdPPrs to "NOT_eREADER"
try
set PNRdPPrs to read file encryptedFile from 61 for 8
end try
if PNRdPPrs is not "PNRdPPrs" then
set ErrorCount to ErrorCount + 1
set ErrorList to ErrorList & encryptedFile & " is not an eReader file.
"
return
end if
set encryptedFilePath to POSIX path of file encryptedFile
tell application "Finder"
set parent_folder to (container of file encryptedFile) as text
set fileName to (name of file encryptedFile) as text
end tell
set fileExtension to "." & GetFileExtension(fileName)
set fileName to GetFileNameOnly(fileName)
if outputFolder is "" or not folderexists(outputFolder) then
set dedrmFolder to parent_folder
else
set dedrmFolder to outputFolder
end if
set pmlFile to dedrmFolder & fileName & "_Source:" & fileName & ".pml"
set clearFile to dedrmFolder & fileName & "_Source:" & fileName & ".pdb"
set clearFileNew to dedrmFolder & fileName & "_Source:" & fileName &
"_nodrm.pdb"
set clearFileNewName to fileName & "_nodrm.pdb"
set sourcePath to POSIX path of file dedrmFolder & fileName & "_Source/"
set pmlzFilePath to POSIX path of file dedrmFolder & fileName & "_nodrm.pmlz"
if length of GeteReaderKeystring() is 0 then
GeteReaderKeys("DeDRM Configure for eReader")
end if
set shellresult to "Error: No eReader keys supplied. Can't decrypt."
repeat with BNKey in bnKeys
set encryptionName to first item of BNKey
set encryptionNumber to second item of BNKey
if length of encryptionName > 0 and length of encryptionNumber > 0 then
set shellcommand to python & (quoted form of eReaderTool) & " " &
(quoted form of encryptedFilePath) & " " & (quoted form of sourcePath) & " " &
(quoted form of encryptionName) & " " & (quoted form of encryptionNumber)
set shellcommand to shellcommand & " > " & quotedtemppath()
--display dialog "shellcommand: " & shellcommand buttons {"OK"}
default button 1 giving up after 10
writetolog("shellcommand: " & shellcommand)
set shellresult to "no result"
cleartemp()
set DecodingError to false
set ErrorText to ""
try
do shell script shellcommand
on error ErrorText
set DecodingError to true
end try
set shellresult to readtemp()
writetolog("shellresult: " & shellresult & " " & ErrorText)
--display dialog shellresult
if not DecodingError then
-- try to run dropbook and move compiled book to same
folder as encrypted book
try
try
tell application "Finder" to set DropBook to
(application file id "PPDr") as string
on error
error "Couldn't find DropBook application"
end try
-- now also compile back up into pdb file using
DropBook if it's on this system
tell application DropBook to open file pmlFile
delay 1 -- probably don't need this, but just in
case.
tell application DropBook to quit -- DropBook will
quit only after the compilation has happened
try
tell application "Finder"
set name of file clearFile to
clearFileNewName
move clearFileNew to dedrmFolder
end tell
on error errmsg
error "DropBook failed to compile the source
folder into a pdb file."
end try
on error errmsg
set WarningCount to WarningCount + 1
set WarningList to (WarningList & fileName &
fileExtension & " couldn't be compiled back to pdb:
" & errmsg as text) & "
"
end try
-- try to compress source folder contensts to a pmlz file
for easy import into Calibre
try
set shellcommand to "cd " & quoted form of sourcePath
& "; zip -r " & quoted form of pmlzFilePath & " *"
--display dialog shellcommand
writetolog("shellcommand: " & shellcommand)
set zipshellresult to ""
set zipshellresult to do shell script shellcommand
writetolog("shellresult: " & zipshellresult)
--display dialog zipshellresult
tell application "Finder"
-- move source folder to the trash
move dedrmFolder & fileName & "_Source" to
trash
end tell
on error errmsg
set WarningCount to WarningCount + 1
set WarningList to (WarningList & fileName &
fileExtension & "source folder couldn't be compressed to pmlz:
" & errmsg as text) & "
"
end try
-- we've done the decrypting so exit the loop.
exit repeat
end if
end if
end repeat
try
if (offset of "incorrect eReader version 10" in shellresult) > 0 then
set WarningCount to WarningCount + 1
set WarningList to WarningList & fileName & fileExtension & " is
not encrypted.
"
else if DecodingError then
set ErrorCount to ErrorCount + 1
set ErrorList to (ErrorList & fileName & fileExtension & "
couldn't be decoded:
" & ErrorText as text) & "
"
else
set CompletedCount to CompletedCount + 1
set CompletedList to CompletedList & fileName & fileExtension &
paraend
end if
end try
end unlockpdbfile
on unlockepubfile(encryptedFile)
set encryptedFilePath to POSIX path of file encryptedFile
tell application "Finder"
set parent_folder to (container of file encryptedFile) as text
set fileName to (name of file encryptedFile) as text
end tell
set fileExtension to "." & GetFileExtension(fileName)
set fileName to GetFileNameOnly(fileName)
if ZipFixError then
set ErrorCount to ErrorCount + 1
set ErrorList to ((ErrorList & fileName & fileExtension & " had a
problem with ZipFix:
" & ZipErrorText as text) & "
")
return
end if
end if
if decoded then
set CompletedCount to CompletedCount + 1
set CompletedList to CompletedList & fileName & fileExtension & paraend
else if not TryAdobeePub and not TryBandNePub then
set WarningCount to WarningCount + 1
set WarningList to (WarningList & fileName & " doesn't seem to be
encrypted.
")
else if shellresult is "no keys" then
set ErrorCount to ErrorCount + 1
set ErrorList to (ErrorList & fileName & fileExtension & " couldn't be
decoded: no keys.
")
else
set ErrorCount to ErrorCount + 1
set ErrorList to ((ErrorList & fileName & fileExtension & " couldn't be
decoded:
" & ErrorText as text) & "
")
end if
on unlockpdffile(encryptedFile)
--check it's an ePub file.
set PDFSig to "NOT_PDF"
try
set PDFSig to read file encryptedFile from 1 for 4
end try
--display dialog PDFSig
if PDFSig is not "%PDF" then
set ErrorCount to ErrorCount + 1
set ErrorList to ErrorList & encryptedFile & " is not a PDF file.
"
return
end if
set encryptedFilePath to POSIX path of file encryptedFile
tell application "Finder"
set parent_folder to (container of file encryptedFile) as text
set fileName to (name of file encryptedFile) as text
end tell
set fileExtension to "." & GetFileExtension(fileName)
set fileName to GetFileNameOnly(fileName)
if decoded then
set CompletedCount to CompletedCount + 1
set CompletedList to CompletedList & fileName & fileExtension & paraend
else if shellresult is "no keys" then
set ErrorCount to ErrorCount + 1
set ErrorList to (ErrorList & fileName & fileExtension & " couldn't be
decoded: no keys.
")
else
set ErrorCount to ErrorCount + 1
set ErrorList to ((ErrorList & fileName & fileExtension & " couldn't be
decoded:
" & ErrorText as text) & "
")
end if
end unlockpdffile
on handlefile(droppedFile)
tell application "Finder"
set fileName to (name of file droppedFile) as text
end tell
writetolog("Processing file: " & fileName)
set fileExtension to GetFileExtension(fileName)
set fileName to GetFileNameOnly(fileName)
if fileExtension is "prc" or fileExtension is "mobi" or fileExtension is
"pobi" or fileExtension is "azw" or fileExtension is "azw1" or fileExtension is
"tpz" or fileExtension is "azw3" or fileExtension is "azw4" then
set completedebooks to completedebooks + 1
IncProgress(fileName, completedebooks)
unlockmobifile(droppedFile as text)
else if fileExtension is "pdb" then
set completedebooks to completedebooks + 1
IncProgress(fileName, completedebooks)
unlockpdbfile(droppedFile as text)
else if fileExtension is "epub" then
set completedebooks to completedebooks + 1
IncProgress(fileName, completedebooks)
unlockepubfile(droppedFile as text)
else if fileExtension is "pdf" then
set completedebooks to completedebooks + 1
IncProgress(fileName, completedebooks)
unlockpdffile(droppedFile as text)
end if
end handlefile
on handlefolder(droppedFolder)
tell application "Finder" to set fileList to (every file in folder
droppedFolder)
tell application "Finder" to set folderList to (every folder in folder
droppedFolder)
repeat with this_item in fileList
if not ProgressActive() then
exit repeat
end if
handlefile(this_item as text)
end repeat
repeat with this_item in folderList
if not ProgressActive() then
exit repeat
end if
handlefolder(this_item as text)
end repeat
end handlefolder
on countfile(droppedFile)
tell application "Finder"
set fileName to (name of file droppedFile) as text
end tell
set fileExtension to GetFileExtension(fileName)
set fileName to GetFileNameOnly(fileName)
--display dialog "fileName: " & fileName & "
--extension: " & fileExtension
if fileExtension is in handledExtensions then
set totalebooks to totalebooks + 1
end if
end countfile
on GetSerialstring()
set Serialstring to ""
repeat with Serial in KindleSerialList
if Serialstring is "" then
set Serialstring to Serial
else
set Serialstring to Serialstring & "," & Serial
end if
end repeat
return Serialstring
end GetSerialstring
on GetPIDstring()
set PIDstring to ""
repeat with PID in PIDs
if PIDstring is "" then
set PIDstring to PID
else
set PIDstring to PIDstring & "," & PID
end if
end repeat
return PIDstring
end GetPIDstring
on GetUDIDstring()
set UDIDstring to ""
repeat with UDIDPair in UDIDs
if UDIDstring is "" then
set UDIDstring to first item of UDIDPair
else
set UDIDstring to UDIDstring & "," & first item of UDIDPair
end if
end repeat
return UDIDstring
end GetUDIDstring
on GetUDIDPIDs()
set UDIDPIDs to ""
repeat with UDIDPair in UDIDs
if UDIDPIDs is "" then
set UDIDPIDs to second item of UDIDPair
else
set UDIDPIDs to UDIDPIDs & "," & second item of UDIDPair
end if
end repeat
return UDIDPIDs
end GetUDIDPIDs
on GetAdeptstring()
set Adeptstring to ""
repeat with AdeptKeyFile in AdeptKeyList
set AppleTypeFile to POSIX file (AdeptKeyFile as text)
tell application "Finder"
set fileName to name of file (AppleTypeFile as text)
end tell
on GetAndroidstring()
set Androidstring to ""
repeat with AndroidKeyFile in AndroidKeyList
set AppleTypeFile to POSIX file (AndroidKeyFile as text)
tell application "Finder"
set fileName to name of file (AppleTypeFile as text)
end tell
if Androidstring is "" then
set Androidstring to fileName
else
set Androidstring to Androidstring & "
" & fileName
end if
end repeat
return Androidstring
end GetAndroidstring
on GetKindlestring()
set Kindlestring to ""
repeat with KindleKeyFile in KindleKeyList
set AppleTypeFile to POSIX file (KindleKeyFile as text)
tell application "Finder"
set fileName to name of file (AppleTypeFile as text)
end tell
on GeteReaderKeystring()
set Keystring to ""
repeat with key in bnKeys
if length of first item of key > 0 and length of second item of key > 0
then
if Keystring is "" then
set Keystring to first item of key & ":" & second item of
key
else
set Keystring to Keystring & "
" & first item of key & ":" & second item of key
end if
end if
end repeat
return Keystring
end GeteReaderKeystring
on GetBNKeystring()
set BNKeystring to ""
repeat with BNKey in bnKeys
if (length of BNKey > 2) and ((length of (third item of BNKey)) > 0)
then
if BNKeystring is "" then
set BNKeystring to first item of BNKey
else
set BNKeystring to BNKeystring & "
" & first item of BNKey
end if
end if
end repeat
return BNKeystring
end GetBNKeystring
on DeleteeReaderKeys()
set newKeys to {}
repeat with BNKey in bnKeys
if length of third item of BNKey > 0 then
set newKeys to newKeys & {{first item of BNKey, "", third item of
BNKey}}
end if
end repeat
set bnKeys to newKeys
end DeleteeReaderKeys
on DeleteBNKeys()
set newKeys to {}
repeat with BNKey in bnKeys
if length of second item of BNKey > 0 then
on GetUDIDs(DialogTitle)
set UDID to ""
repeat
set UDIDstring to GetUDIDstring()
if UDIDstring is "" then
set DialogPrompt to "Enter any iPod/iPhone/iPad UDIDs (40
characters) one at a time. Note: This only works for older versions of Kindle for
iOS."
set FinishedButton to "Close"
else
set DialogPrompt to "Current UDIDs: " & UDIDstring & ".
on GetSerials(DialogTitle)
set Serial to ""
repeat
set Serialstring to GetSerialstring()
if Serialstring is "" then
set DialogPrompt to "Enter any Kindle (not Kindle Fire) Serial
Numbers one at a time:"
set FinishedButton to "Close"
else
set DialogPrompt to "Current Kindle Serial Numbers: " &
Serialstring & ".
Enter any additional Kindle (not Kindle Fire) Serial Numbers one at a time:"
set FinishedButton to "Close"
end if
set dialogresult to (display dialog DialogPrompt default answer Serial
buttons {"Delete All", "Add", FinishedButton} with title DialogTitle default button
2)
if button returned of dialogresult is "Add" then
set Serial to text returned of dialogresult
set Seriallength to length of Serial
if Seriallength is 16 then
set KindleSerialList to KindleSerialList & Serial
set Serial to ""
else
display dialog "Kindle Serial Numbers are 16 characters
long." buttons {"OK"} default button 1 with title "DeDRM" with icon caution
end if
else if button returned of dialogresult is "Delete All" then
if Serialstring is not "" then
try
set dialogresult to (display dialog "Are you sure you
want to delete all stored Kindle Serial Numbers?" buttons {"Cancel", "Delete"}
default button 1 with title "DeDRM")
end try
if button returned of dialogresult is "Delete" then
set KindleSerialList to {}
end if
end if
else
set Serial to text returned of dialogresult
if Serial is not "" then
try
set dialogresult to (display dialog "You entered some
text, but didn't click Add. Are you sure you want to more on to the next dialog?"
buttons {"Whoops", "Yes, Move on"} default button 1 with title "DeDRM")
end try
if button returned of dialogresult is "Yes, Move on" then
exit repeat
end if
else
exit repeat
end if
end if
end repeat
end GetSerials
on GetOutputFolder(DialogTitle)
set newFolder to ""
try
tell me to activate
repeat
if folderexists(outputFolder) then
set DialogPrompt to "The deDRMed ebooks will be saved to
the following folder:
" & (outputFolder) & "
"
else
set outputFolder to ""
set DialogPrompt to "The deDRMed ebooks will be saved in
the same folder as the original DRMed ebooks.
"
end if
set DialogPrompt to DialogPrompt & "To keep this choice, click
'Close', otherwise select the option you want by clicking on one of the other
buttons."
set dialogresult to (display dialog DialogPrompt buttons {"Use
Same Folder as DRMed Ebooks", "Choose Output Folder…", "Close"} with title
DialogTitle default button 3)
if button returned of dialogresult is "Choose Output Folder…"
then
try
if outputFolder is "" then
set outputFolder to ((choose folder with prompt
"DRM Application
Please choose the Output Folder for DeDRMed ebooks.") as text)
else
set outputFolder to ((choose folder with prompt
"DRM Application
Please choose the Output Folder for DeDRMed ebooks." default location alias
outputFolder) as text)
end if
end try
else if button returned of dialogresult is "Use Same Folder as
DRMed Ebooks" then
set outputFolder to ""
else
exit repeat
end if
--on error errormessage
-- display dialog errormessage
end repeat
end try
WritePrefs()
end GetOutputFolder
on GeteReaderKeys(DialogTitle)
set keyText to ""
repeat
set Keystring to GeteReaderKeystring()
if Keystring is "" then
set DialogPrompt to "Please enter any "
set FinishedButton to "Close"
else
set DialogPrompt to "eReader keys:
" & Keystring & "
on GetBNKeys(DialogTitle)
set bnKeyText to ""
repeat
set BNKeystring to GetBNKeystring()
if BNKeystring is "" then
set DialogPrompt to "Please enter any "
set FinishedButton to "Close"
else
set DialogPrompt to "Current B&N/Nook keys:
" & BNKeystring & "
*** Retrieving the account key may take a couple of minutes, please be patient. ***
Or to add a an already generated .b64 file, just click \"Add\" with nothing in the
text field."
set dialogresult to (display dialog DialogPrompt default answer
bnKeyText with title DialogTitle buttons {"Forget All", "Add", FinishedButton}
default button 2)
if button returned of dialogresult is "Add" then
set bnKeyText to text returned of dialogresult
if bnKeyText is "" then
try
set newFile to (choose file with prompt "Please
select a Barnes & Noble (.b64) key file") as text
-- copy to prefs
AddbnKey(newFile)
on error message
if message does not contain "cancel" then
display dialog message
end if
end try
else if not (bnKeyText contains ":") then
display dialog "Email address and password must be
separated by a colon (:)." buttons {"OK"} default button 1 with title "DeDRM" with
icon caution
else
set oldTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to ":"
set keyEmail to the first text item of bnKeyText
set keyPassword to (text items 2 through -1 of bnKeyText)
as string
set AppleScript's text item delimiters to oldTIDs
on GetAdeptKeyFiles(DialogTitle)
repeat
set Adeptstring to GetAdeptstring()
if Adeptstring is "" then
set DialogPrompt to "To add Adobe Digital Editions (Adept) key
files, click the Add… button. "
set dialogresult to (display dialog DialogPrompt buttons {"Add…",
"Close"} with title DialogTitle default button 1)
else
set DialogPrompt to "Current Adobe Digital Editions (Adept) key
files:
" & Adeptstring & "
on GetKindleKeyFiles(DialogTitle)
repeat
set Kindlestring to GetKindlestring()
if Kindlestring is "" then
set DialogPrompt to "To add Kindle for Mac key files (.k4i),
click the Add… button. "
set FinishedButton to "Close"
else
set DialogPrompt to "Current Kindle for Mac key files:
" & Kindlestring & "
on GetAndroidKeyFiles(DialogTitle)
repeat
set Androidstring to GetAndroidstring()
if Androidstring is "" then
set DialogPrompt to "To add Kindle for Android backup files
(.ab), click the Add… button. "
set FinishedButton to "Close"
else
set DialogPrompt to "Current Kindle for Android backup files:
" & Androidstring & "
on GetAdeptKeys()
set newKeyList to {}
set userPrefsPath to path to preferences from user domain as string
set preferencesFolderPath to userPrefsPath & prefsFolderName & ":"
if not folderexists(preferencesFolderPath) then
tell application "Finder"
set preferencesFolder to make new folder at userPrefsPath with
properties {name:prefsFolderName}
end tell
end if
set newKeysFolderPath to preferencesFolderPath & newKeysFolderName & ":"
if not folderexists(newKeysFolderPath) then
tell application "Finder"
set newKeysFolder to make new folder at preferencesFolderPath
with properties {name:newKeysFolderName}
end tell
end if
set scriptError to ""
set shellresult to ""
set success to true
set shellcommand to python & (quoted form of AdobeKeyGenTool) & " " & quoted
form of (POSIX path of (newKeysFolderPath))
set shellcommand to shellcommand & " > " & quotedtemppath()
writetolog("shellcommand: " & shellcommand)
cleartemp()
try
do shell script shellcommand
on error scriptError
set success to false
end try
set shellresult to readtemp()
writetolog("shellresult: " & shellresult & " " & scriptError)
--display dialog shellresult
if success then
--get all the files from newKeysFolder and add those that aren't
duplicates
tell application "Finder" to set fileList to (every file in folder
newKeysFolderPath)
repeat with this_item in fileList
set userAdeptKeyPath to this_item as text
set dupfile to false
repeat with AdeptKey in AdeptKeyList
set shellcommand to "cmp -s " & (quoted form of AdeptKey) &
" " & quoted form of (POSIX path of (userAdeptKeyPath))
try
--writetolog("shellcommand: " & shellcommand)
do shell script shellcommand
-- shellcommand will error on the files being
different
--writetolog("result: duplicate")
on GetKindleKeys()
set newKeyList to {}
set userPrefsPath to path to preferences from user domain as string
set preferencesFolderPath to userPrefsPath & prefsFolderName & ":"
if not folderexists(preferencesFolderPath) then
tell application "Finder"
set preferencesFolder to make new folder at userPrefsPath with
properties {name:prefsFolderName}
end tell
end if
set newKeysFolderPath to preferencesFolderPath & newKeysFolderName & ":"
if not folderexists(newKeysFolderPath) then
tell application "Finder"
set newKeysFolder to make new folder at preferencesFolderPath
with properties {name:newKeysFolderName}
end tell
end if
set scriptError to ""
set shellresult to ""
set success to true
set shellcommand to python & (quoted form of KindleKeyTool) & " " & quoted
form of (POSIX path of (newKeysFolderPath))
set shellcommand to shellcommand & " > " & quotedtemppath()
writetolog("shellcommand: " & shellcommand)
cleartemp()
try
do shell script shellcommand
on error scriptError
set success to false
end try
set shellresult to readtemp()
writetolog("shellresult: " & shellresult & " " & scriptError)
--display dialog shellresult
if success then
--get all the files from newKeysFolder and add those that aren't
duplicates
tell application "Finder" to set fileList to (every file in folder
newKeysFolderPath)
repeat with this_item in fileList
set userKeyPath to this_item as text
set dupfile to false
repeat with key in KindleKeyList
set shellcommand to "cmp -s " & (quoted form of key) & " "
& quoted form of (POSIX path of (userKeyPath))
try
--writetolog("shellcommand: " & shellcommand)
do shell script shellcommand
-- shellcommand will error on the files being
different
--writetolog("result: duplicate")
on GetNookKeys()
set newKeyList to {}
set userPrefsPath to path to preferences from user domain as string
set preferencesFolderPath to userPrefsPath & prefsFolderName & ":"
if not folderexists(preferencesFolderPath) then
tell application "Finder"
set preferencesFolder to make new folder at userPrefsPath with
properties {name:prefsFolderName}
end tell
end if
set newKeysFolderPath to preferencesFolderPath & newKeysFolderName & ":"
if not folderexists(newKeysFolderPath) then
tell application "Finder"
set newKeysFolder to make new folder at preferencesFolderPath
with properties {name:newKeysFolderName}
end tell
end if
set scriptError to ""
set shellresult to ""
set success to true
set shellcommand to python & (quoted form of NookKeyTool) & " " & quoted form
of (POSIX path of (newKeysFolderPath))
set shellcommand to shellcommand & " > " & quotedtemppath()
writetolog("shellcommand: " & shellcommand)
cleartemp()
try
do shell script shellcommand
on error scriptError
set success to false
end try
set shellresult to readtemp()
writetolog("shellresult: " & shellresult & " " & scriptError)
--display dialog shellresult
if success then
--get all the files from newKeysFolder and add those that aren't
duplicates
tell application "Finder" to set fileList to (every file in folder
newKeysFolderPath)
--display dialog (count of fileList)
repeat with this_item in fileList
set userKeyPath to this_item as text
set dupfile to false
repeat with key in bnKeys
set keyfilepath to third item of key
if length of keyfilepath > 0 then
set shellcommand to "cmp -s " & (quoted form of
keyfilepath) & " " & quoted form of (POSIX path of (userKeyPath))
try
--writetolog("shellcommand: " & shellcommand)
do shell script shellcommand
-- shellcommand will error on the files being
different
--writetolog("result: duplicate")
--display dialog "Deuplicate: " & userKeyPath &
"//" & keyfilepath
set dupfile to true
exit repeat
on error scriptError
--writetolog("result: different")
-- do nothing
end try
end if
end repeat
if not dupfile then
repeat with key in newKeyList
set keyfilepath to third item of key
if length of keyfilepath > 0 then
set shellcommand to "cmp -s " & (quoted form of
keyfilepath) & " " & quoted form of (POSIX path of (userKeyPath))
try
--writetolog("shellcommand: " &
shellcommand)
do shell script shellcommand
-- shellcommand will error on the files
being different
--writetolog("result: duplicate")
--display dialog "Deuplicate: " &
userKeyPath & "//" & keyfilepath
set dupfile to true
exit repeat
on error scriptError
--writetolog("result: different")
-- do nothing
end try
end if
end repeat
end if
if not dupfile then
-- move to the preferences folder, making sure the name's
unique
set newFilename to GetUniqueName(preferencesFolderPath,
"Nook Study Key.b64")
tell application "Finder"
set name of file userKeyPath to newFilename
set userKeyPath to newKeysFolderPath & newFilename
move file userKeyPath to preferencesFolderPath with
replacing
end tell
set newKeyList to newKeyList & {{newFilename, "", (POSIX
path of (preferencesFolderPath & newFilename))}}
end if
end repeat
end if
-- delete new keys folder
tell application "Finder" to move newKeysFolderPath to trash
return newKeyList
end GetNookKeys
on encodeAsBase64(theFilePath)
set posixfilepath to POSIX path of file theFilePath
set base64path to POSIX path of file ((path to me as text) &
"Contents:Resources:encodebase64.py")
return do shell script python & quoted form of base64path & " " & quoted form
of posixfilepath
end encodeAsBase64
on AddAdeptKey(keyfile)
set fileExtension to GetFileExtension(keyfile)
if fileExtension is "der" then
set newPrefsFile to CopyToPrefs(keyfile)
set AdeptKeyList to AdeptKeyList & POSIX path of newPrefsFile
else
display dialog "Adobe Adept key files generated by adeptkey.py must
have a .der extension." buttons {"OK"} default button 1 with title "DeDRM" with
icon caution
end if
end AddAdeptKey
on AddKindleKey(keyfile)
set fileExtension to GetFileExtension(keyfile)
if fileExtension is "k4i" then
set newPrefsFile to CopyToPrefs(keyfile)
set KindleKeyList to KindleKeyList & POSIX path of newPrefsFile
else
display dialog "Kindle key files generated by kindlekey.py must have
a .k4i extension." buttons {"OK"} default button 1 with title "DeDRM" with icon
caution
end if
end AddKindleKey
on AddAndroidKey(keyfile)
set fileExtension to GetFileExtension(keyfile)
if fileExtension is "ab" or fileExtension is "db" or fileExtension is "xml"
then
set newPrefsFile to CopyToPrefs(keyfile)
set AndroidKeyList to AndroidKeyList & POSIX path of newPrefsFile
else
display dialog "Android back files generated by use of \"adb backup
com.amazon.kindle\" must have a .ab extension." buttons {"OK"} default button 1
with title "DeDRM" with icon caution
end if
end AddAndroidKey
on AddbnKey(keyfile)
set fileExtension to GetFileExtension(keyfile)
if fileExtension is "b64" then
set newPrefsFile to CopyToPrefs(keyfile)
tell application "Finder"
set keyfileName to (name of file newPrefsFile) as text
end tell
set fileName to GetFileNameOnly(keyfileName)
set bnKeys to bnKeys & {{fileName, "", POSIX path of newPrefsFile}}
else
display dialog "Barnes & Noble key files must have a .b64 extension."
buttons {"OK"} default button 1 with title "DeDRM" with icon caution
end if
end AddbnKey
on GetUniqueName(folderPath, fileName)
set newFilename to fileName
if fileexists(folderPath & fileName) then
-- first find new name that's unique to folder
set namecount to 2
set fileExtension to GetFileExtension(fileName)
set fileNameOnly to GetFileNameOnly(fileName)
repeat
set newFilename to fileNameOnly & " " & (namecount as text) & "."
& fileExtension
if not fileexists(folderPath & newFilename) then
exit repeat
end if
set namecount to namecount + 1
end repeat
end if
return newFilename
end GetUniqueName
on CopyToPrefs(keyfilepath)
tell application "Finder"
set keyfileName to (name of file keyfilepath) as text
end tell
set keyfileApplepath to POSIX file (POSIX path of keyfilepath)
set userPrefsPath to path to preferences from user domain as string
set userTempPath to path to temporary items from user domain as string
set preferencesFolderPath to userPrefsPath & prefsFolderName & ":"
if not folderexists(preferencesFolderPath) then
tell application "Finder"
set preferencesFolder to make new folder at userPrefsPath with
properties {name:prefsFolderName}
end tell
end if
if fileexists(preferencesFolderPath & keyfileName) then
-- copy to temporary items folder, rename, and then we can copy from
there to the preferences folder
-- first find new name
set namecount to 2
set fileExtension to GetFileExtension(keyfileName)
set keyfileNameOnly to GetFileNameOnly(keyfileName)
repeat
set newkeyfileName to keyfileNameOnly & " " & (namecount as text)
& "." & fileExtension
if not fileexists(preferencesFolderPath & newkeyfileName) and not
fileexists(userTempPath & newkeyfileName) then
exit repeat
end if
set namecount to namecount + 1
end repeat
-- rename to new name
set newkeyfilepath to userTempPath & newkeyfileName
tell application "Finder"
set tempfilepath to duplicate file keyfileApplepath to folder
userTempPath with replacing
set name of tempfilepath to newkeyfileName
move file newkeyfilepath to preferencesFolderPath
end tell
set newFile to preferencesFolderPath & newkeyfileName
else
tell application "Finder"
set newFile to duplicate file keyfileApplepath to folder
preferencesFolderPath with replacing
end tell
end if
on ReadPrefs()
-- read any existing keys from the preferences
set preferencesFilePath to (path to preferences from user domain as string) &
prefsFileName
set PIDs to {}
set UDIDs to {}
set bnKeys to {}
set KindleKeyList to {}
set AndroidKeyList to {}
set KindleSerialList to {}
set AdeptKeyList to {}
set outputFolder to (path to desktop as string)
set logFilePath to (path to desktop as string) & "DeDRM.log"
set tempfilepath to (path to preferences from user domain as string) &
prefsFolderName & ":" & tempFileName
--set tempfilepath to (path to temporary items as string)& "DeDRM_temp.log"
set newList to {}
repeat with i from 1 to count AndroidKeyList
if fileexists(AndroidKeyList's item i) then set newList's end to
AndroidKeyList's item i
end repeat
set AndroidKeyList to newList
set newList to {}
repeat with i from 1 to count AdeptKeyList
if fileexists(AdeptKeyList's item i) then set newList's end to
AdeptKeyList's item i
end repeat
set AdeptKeyList to newList
set newList to {}
repeat with i from 1 to count KindleKeyList
if fileexists(KindleKeyList's item i) then set newList's end to
KindleKeyList's item i
end repeat
set KindleKeyList to newList
set newList to {}
repeat with i from 1 to count bnKeys
if (item 3 of bnKeys's item i) is "" or fileexists(item 3 of bnKeys's
item i) then set newList's end to bnKeys's item i
end repeat
set bnKeys to newList
end ReadPrefs
on CreatePlist(filePath)
set theEmptyPListData to "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST
1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<plist version=\"1.0\">
<dict/>
</plist>"
end CreatePlist
on WritePrefsOld()
-- write keys to the preferences from older AppleScript
set preferencesFilePath to (path to preferences from user domain as string) &
prefsFileName
CreatePlist(preferencesFilePath)
tell application "System Events"
tell contents of property list file preferencesFilePath
set value to ({|PIDs|:PIDs} & {|UDIDs|:UDIDs} & {|
AndroidKeys|:AndroidKeyList} & {|KindleSerials|:KindleSerialList} & {|
KindleKeys|:KindleKeyList} & {|bnKeys|:bnKeys} & {|AdeptKeys|:AdeptKeyList} & {|
OutputFolder|:outputFolder})
end tell
end tell
end WritePrefsOld
on WritePrefs()
if oldAppleScript then
WritePrefsOld()
else
-- write keys to the preferences for AppleScript 2.0 and later
set preferencesFilePath to (path to preferences from user domain as
string) & prefsFileName
-- we still need to create an empty file in Yosemite, apparently
CreatePlist(preferencesFilePath)
tell application "System Events"
set the base_dict to make new property list item with properties
{kind:record}
set myPrefs to make new property list file with properties
{contents:base_dict, name:preferencesFilePath}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"PIDs", value:PIDs}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"UDIDs", value:UDIDs}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"AndroidKeys",
value:AndroidKeyList}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"KindleSerials",
value:KindleSerialList}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"KindleKeys",
value:KindleKeyList}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"bnKeys", value:bnKeys}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:list, name:"AdeptKeys",
value:AdeptKeyList}
make new property list item at end of property list items of
contents of myPrefs with properties {kind:string, name:"OutputFolder",
value:outputFolder}
end tell
end if
end WritePrefs
on InitProgress(maxcount)
try
if totalebooks > 1 then
launch application ((path to resource "DeDRM Progress.app") as
string)
tell application ((path to resource "DeDRM Progress.app") as
string)
activate
set contents of «class texF» "maintext" of window "main" to
"Decrypting " & maxcount & " ebooks."
set contents of «class texF» "subtext" of window "main" to
"Decrypting book 0: "
set «class maxV» of «class proI» "bar" of window "main" to
maxcount
set «class conT» of «class proI» "bar" of window "main" to
0
end tell
end if
end try
end InitProgress
on ProcessItems(some_items)
try
set ErrorList to ""
set WarningList to ""
set CompletedList to ""
set ErrorCount to 0
set WarningCount to 0
set CompletedCount to 0
set totalebooks to 0
set completedebooks to 0
repeat with this_item in some_items
if (folder of (info for this_item) is true) then
tell application "Finder" to set totalebooks to totalebooks
+ (count of (every file in entire contents of folder this_item whose name extension
is in handledExtensions))
else
countfile(this_item as text)
end if
end repeat
if totalebooks is 1 then
set TotalText to "There is 1 ebook to be decrypted."
else
set TotalText to "There are " & totalebooks & " ebooks to be
decrypted."
end if
writetolog(TotalText)
InitProgress(totalebooks)
repeat with this_item in some_items
if totalebooks > 1 and not ProgressActive() then
exit repeat
end if
if (folder of (info for this_item) is true) then
handlefolder(this_item as text)
else
handlefile(this_item as text)
end if
end repeat
endProgress()
on error errmsg number errnum
set errorReport to "An unexpected error occurred. Please report on
Apprentice Alf's blog.
--" & WarningList buttons {"OK"} with title "DeDRM" default button 1
display notification WarningList with title "DeDRM" subtitle
WarningText
end if
if ErrorList is not "" then
set ErrorText to ""
if ErrorCount is 1 then
set ErrorText to "There was an error with 1 ebook:"
else
set ErrorText to "There were errors with " & ErrorCount & "
ebooks:"
end if
writetolog(ErrorText)
writetolog(ErrorList)
--set dialogresult to display dialog ErrorText & "
--" & ErrorList buttons {"Bother"} with title "DeDRM" default button 1
display notification ErrorList with title "DeDRM" subtitle ErrorText
end if
if CompletedCount > 0 then
set CompletedText to ""
if CompletedCount is 1 then
set CompletedText to "Successfully de-drmed 1 ebook:"
else
set CompletedText to "Successfully de-drmed " & CompletedCount &
" ebooks:"
end if
writetolog(CompletedText)
writetolog(CompletedList)
--set dialogresult to display dialog CompletedText & "
on ProgressActive()
tell application "System Events" to set progactive to count (every process
whose name is "DeDRM Progress")
if progactive > 0 then return true
return false
end ProgressActive
on IncProgress(booktitle, doingcount)
try
if ProgressActive() then
tell application ((path to resource "DeDRM Progress.app") as
string)
set contents of «class texF» "subtext" of window "main" to
"Decrypting book " & doingcount & ": " & booktitle
set «class conT» of «class proI» "bar" of window "main" to
doingcount
end tell
end if
end try
end IncProgress
on endProgress()
try
if ProgressActive() then tell application ((path to resource "DeDRM
Progress.app") as string) to quit
end try
end endProgress
on run
if GetTools() then
ReadPrefs()
clearlog()
repeat
set dialogresult to display dialog "To remove DRM from an ebook,
click ‘Select Ebook…’
To configure this software, click ‘Configure…’
When the DeDRM application is not running, you can also remove DRM from ebooks by
dropping them onto the DeDRM application icon in the Finder.
For details of the ebook formats which this application can handle, see the ReadMe
file or visit http://apprenticealf.wordpress.com/
Please only use this application on your own books. Authors, publishers and ebook
stores need to make money to produce more ebooks.
Don't cheat them.
The included Python scripts are all free to use, but have a variety of licences.
See the individual files for details.
" with title "DeDRM by Apprentice Alf" buttons {"Quit", "Select Ebook…
", "Configure… "} default button 1 with icon
note
if button returned of dialogresult is "Quit" then exit repeat
if button returned of dialogresult is "Select Ebook…
" then
set DRMebook to ""
try
set DRMebook to {choose file with prompt "Please
select a DRMed ebook"}
end try
if DRMebook is not "" then
if ProcessItems(DRMebook) is 0 then
display dialog "That was a file that this
script cannot process." with title "DeDRM" buttons {"OK"} default button 1 with
icon note
end if
WritePrefs()
end if
else
set choice to true
repeat while choice is not false
set choice to choose from list {"eInk Kindle eBooks",
"Barnes and Noble (nook) ebooks", "Mobipocket eBooks", "eReader ebooks", "Adobe
Digital Editions ebooks", "Kindle for Mac ebooks", "Output Folder"} with prompt
"Choose a Configuration Option:" with title "DeDRM Configuration" OK button name
"Configure..." cancel button name "Finished"
if choice contains "Barnes and Noble (nook) ebooks"
then
GetBNKeys("DeDRM Configure for Barnes and Noble
(nook)")
else if choice contains "eInk Kindle eBooks" then
GetSerials("DeDRM Configure for eInk Kindle")
else if choice contains "Mobipocket eBooks" then
GetPIDs("DeDRM Configure for Mobipocket")
else if choice contains "eReader ebooks" then
GeteReaderKeys("DeDRM Configure for eReader")
else if choice contains "Kindle for Mac ebooks" then
GetKindleKeyFiles("DeDRM Configure Kindle for
Mac")
else if choice contains "Kindle for Android ebooks"
then
GetAndroidKeyFiles("DeDRM Configure Kindle for
Android")
else if choice contains "Adobe Digital Editions
ebooks" then
GetAdeptKeyFiles("DeDRM Configure Adobe Digital
Editions")
else if choice contains "Output Folder" then
GetOutputFolder("DeDRM Configure Output
Folder")
end if
end repeat
WritePrefs()
end if
end repeat
end if
end run
on open some_items
--display dialog (some_items as text)
if GetTools() then
ReadPrefs()
clearlog()
if ProcessItems(some_items) is 0 then
display notification "No ebooks found in the dropped items. DeDRM
can handle Mobipocket, Kindle, eReader, Adobe ePub, Barnes & Noble ePub and Adobe
PDF. Please try again." with title "DeDRM"
end if
WritePrefs()
delay 1 --> allow time for any notifications to trigger
end if
end open