-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpdf_unlock.go
99 lines (78 loc) · 1.69 KB
/
pdf_unlock.go
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
/*
* Unlocks PDF files, tries to decrypt encrypted documents with the given password,
* if that fails it tries an empty password as best effort.
*
* Run as: go run pdf_unlock.go input.pdf <password> output.pdf
*/
package main
import (
"fmt"
"os"
pdf "github.com/unidoc/unipdf/v3/model"
)
func main() {
if len(os.Args) < 4 {
fmt.Printf("Usage: go run pdf_unlock.go input.pdf <password> output.pdf\n")
os.Exit(1)
}
inputPath := os.Args[1]
password := os.Args[2]
outputPath := os.Args[3]
err := unlockPdf(inputPath, outputPath, password)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
fmt.Printf("Complete, see output file: %s\n", outputPath)
}
func unlockPdf(inputPath string, outputPath string, password string) error {
pdfWriter := pdf.NewPdfWriter()
f, err := os.Open(inputPath)
if err != nil {
return err
}
defer f.Close()
pdfReader, err := pdf.NewPdfReader(f)
if err != nil {
return err
}
isEncrypted, err := pdfReader.IsEncrypted()
if err != nil {
return err
}
// Try decrypting both with given password and an empty one if that fails.
if isEncrypted {
auth, err := pdfReader.Decrypt([]byte(password))
if err != nil {
return err
}
if !auth {
return fmt.Errorf("Wrong password")
}
}
numPages, err := pdfReader.GetNumPages()
if err != nil {
return err
}
for i := 0; i < numPages; i++ {
pageNum := i + 1
page, err := pdfReader.GetPage(pageNum)
if err != nil {
return err
}
err = pdfWriter.AddPage(page)
if err != nil {
return err
}
}
fWrite, err := os.Create(outputPath)
if err != nil {
return err
}
defer fWrite.Close()
err = pdfWriter.Write(fWrite)
if err != nil {
return err
}
return nil
}