-
-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy pathcmd.go
1247 lines (1157 loc) · 38.1 KB
/
cmd.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
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright 2020 The pdfcpu Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cli
import (
"io"
"github.com/pdfcpu/pdfcpu/pkg/pdfcpu"
"github.com/pdfcpu/pdfcpu/pkg/pdfcpu/model"
)
// Command represents an execution context.
type Command struct {
Mode model.CommandMode
InFile *string
InFileJSON *string
InFiles []string
InDir *string
OutFile *string
OutFileJSON *string
OutDir *string
PageSelection []string
PWOld *string
PWNew *string
StringVal string
IntVal int
BoolVal1 bool
BoolVal2 bool
IntVals []int
StringVals []string
StringMap map[string]string
Input io.ReadSeeker
Inputs []io.ReadSeeker
Output io.Writer
Box *model.Box
Import *pdfcpu.Import
NUp *model.NUp
Cut *model.Cut
PageBoundaries *model.PageBoundaries
Resize *model.Resize
Zoom *model.Zoom
Watermark *model.Watermark
ViewerPreferences *model.ViewerPreferences
PageConf *pdfcpu.PageConfiguration
Conf *model.Configuration
}
var cmdMap = map[model.CommandMode]func(cmd *Command) ([]string, error){
model.VALIDATE: Validate,
model.OPTIMIZE: Optimize,
model.SPLIT: Split,
model.SPLITBYPAGENR: SplitByPageNr,
model.MERGECREATE: MergeCreate,
model.MERGECREATEZIP: MergeCreateZip,
model.MERGEAPPEND: MergeAppend,
model.EXTRACTIMAGES: ExtractImages,
model.EXTRACTFONTS: ExtractFonts,
model.EXTRACTPAGES: ExtractPages,
model.EXTRACTCONTENT: ExtractContent,
model.EXTRACTMETADATA: ExtractMetadata,
model.TRIM: Trim,
model.ADDWATERMARKS: AddWatermarks,
model.REMOVEWATERMARKS: RemoveWatermarks,
model.LISTATTACHMENTS: processAttachments,
model.ADDATTACHMENTS: processAttachments,
model.ADDATTACHMENTSPORTFOLIO: processAttachments,
model.REMOVEATTACHMENTS: processAttachments,
model.EXTRACTATTACHMENTS: processAttachments,
model.ENCRYPT: processEncryption,
model.DECRYPT: processEncryption,
model.CHANGEUPW: processEncryption,
model.CHANGEOPW: processEncryption,
model.LISTPERMISSIONS: processPermissions,
model.SETPERMISSIONS: processPermissions,
model.IMPORTIMAGES: ImportImages,
model.INSERTPAGESBEFORE: processPages,
model.INSERTPAGESAFTER: processPages,
model.REMOVEPAGES: processPages,
model.ROTATE: Rotate,
model.NUP: NUp,
model.BOOKLET: Booklet,
model.LISTINFO: ListInfo,
model.CHEATSHEETSFONTS: CreateCheatSheetsFonts,
model.INSTALLFONTS: InstallFonts,
model.LISTFONTS: ListFonts,
model.LISTKEYWORDS: processKeywords,
model.ADDKEYWORDS: processKeywords,
model.REMOVEKEYWORDS: processKeywords,
model.LISTPROPERTIES: processProperties,
model.ADDPROPERTIES: processProperties,
model.REMOVEPROPERTIES: processProperties,
model.COLLECT: Collect,
model.LISTBOXES: processPageBoundaries,
model.ADDBOXES: processPageBoundaries,
model.REMOVEBOXES: processPageBoundaries,
model.CROP: processPageBoundaries,
model.LISTANNOTATIONS: processPageAnnotations,
model.REMOVEANNOTATIONS: processPageAnnotations,
model.LISTIMAGES: processImages,
model.UPDATEIMAGES: processImages,
model.DUMP: Dump,
model.CREATE: Create,
model.LISTFORMFIELDS: processForm,
model.REMOVEFORMFIELDS: processForm,
model.LOCKFORMFIELDS: processForm,
model.UNLOCKFORMFIELDS: processForm,
model.RESETFORMFIELDS: processForm,
model.EXPORTFORMFIELDS: processForm,
model.FILLFORMFIELDS: processForm,
model.MULTIFILLFORMFIELDS: processForm,
model.RESIZE: Resize,
model.POSTER: Poster,
model.NDOWN: NDown,
model.CUT: Cut,
model.LISTBOOKMARKS: processBookmarks,
model.EXPORTBOOKMARKS: processBookmarks,
model.IMPORTBOOKMARKS: processBookmarks,
model.REMOVEBOOKMARKS: processBookmarks,
model.LISTPAGEMODE: processPageMode,
model.SETPAGEMODE: processPageMode,
model.RESETPAGEMODE: processPageMode,
model.LISTPAGELAYOUT: processPageLayout,
model.SETPAGELAYOUT: processPageLayout,
model.RESETPAGELAYOUT: processPageLayout,
model.LISTVIEWERPREFERENCES: processViewerPreferences,
model.SETVIEWERPREFERENCES: processViewerPreferences,
model.RESETVIEWERPREFERENCES: processViewerPreferences,
model.ZOOM: Zoom,
}
// ValidateCommand creates a new command to validate a file.
func ValidateCommand(inFiles []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.VALIDATE
return &Command{
Mode: model.VALIDATE,
InFiles: inFiles,
Conf: conf}
}
// OptimizeCommand creates a new command to optimize a file.
func OptimizeCommand(inFile, outFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.OPTIMIZE
return &Command{
Mode: model.OPTIMIZE,
InFile: &inFile,
OutFile: &outFile,
Conf: conf}
}
// SplitCommand creates a new command to split a file according to span or along bookmarks..
func SplitCommand(inFile, dirNameOut string, span int, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.SPLIT
return &Command{
Mode: model.SPLIT,
InFile: &inFile,
OutDir: &dirNameOut,
IntVal: span,
Conf: conf}
}
// SplitByPageNrCommand creates a new command to split a file into files along given pages.
func SplitByPageNrCommand(inFile, dirNameOut string, pageNrs []int, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.SPLITBYPAGENR
return &Command{
Mode: model.SPLITBYPAGENR,
InFile: &inFile,
OutDir: &dirNameOut,
IntVals: pageNrs,
Conf: conf}
}
// MergeCreateCommand creates a new command to merge files.
// Outfile will be created. An existing outFile will be overwritten.
func MergeCreateCommand(inFiles []string, outFile string, dividerPage bool, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.MERGECREATE
return &Command{
Mode: model.MERGECREATE,
InFiles: inFiles,
OutFile: &outFile,
BoolVal1: dividerPage,
Conf: conf}
}
// MergeCreateZipCommand creates a new command to zip merge 2 files.
// Outfile will be created. An existing outFile will be overwritten.
func MergeCreateZipCommand(inFiles []string, outFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.MERGECREATEZIP
return &Command{
Mode: model.MERGECREATEZIP,
InFiles: inFiles,
OutFile: &outFile,
Conf: conf}
}
// MergeAppendCommand creates a new command to merge files.
// Any existing outFile PDF content will be preserved and serves as the beginning of the merge result.
func MergeAppendCommand(inFiles []string, outFile string, dividerPage bool, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.MERGEAPPEND
return &Command{
Mode: model.MERGEAPPEND,
InFiles: inFiles,
OutFile: &outFile,
BoolVal1: dividerPage,
Conf: conf}
}
// ExtractImagesCommand creates a new command to extract embedded images.
// (experimental)
func ExtractImagesCommand(inFile string, outDir string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXTRACTIMAGES
return &Command{
Mode: model.EXTRACTIMAGES,
InFile: &inFile,
OutDir: &outDir,
PageSelection: pageSelection,
Conf: conf}
}
// ExtractFontsCommand creates a new command to extract embedded fonts.
// (experimental)
func ExtractFontsCommand(inFile string, outDir string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXTRACTFONTS
return &Command{
Mode: model.EXTRACTFONTS,
InFile: &inFile,
OutDir: &outDir,
PageSelection: pageSelection,
Conf: conf}
}
// ExtractPagesCommand creates a new command to extract specific pages of a file.
func ExtractPagesCommand(inFile string, outDir string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXTRACTPAGES
return &Command{
Mode: model.EXTRACTPAGES,
InFile: &inFile,
OutDir: &outDir,
PageSelection: pageSelection,
Conf: conf}
}
// ExtractContentCommand creates a new command to extract page content streams.
func ExtractContentCommand(inFile string, outDir string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXTRACTCONTENT
return &Command{
Mode: model.EXTRACTCONTENT,
InFile: &inFile,
OutDir: &outDir,
PageSelection: pageSelection,
Conf: conf}
}
// ExtractMetadataCommand creates a new command to extract metadata streams.
func ExtractMetadataCommand(inFile string, outDir string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXTRACTMETADATA
return &Command{
Mode: model.EXTRACTMETADATA,
InFile: &inFile,
OutDir: &outDir,
Conf: conf}
}
// TrimCommand creates a new command to trim the pages of a file.
func TrimCommand(inFile, outFile string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.TRIM
return &Command{
Mode: model.TRIM,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
Conf: conf}
}
// ListAttachmentsCommand create a new command to list attachments.
func ListAttachmentsCommand(inFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTATTACHMENTS
return &Command{
Mode: model.LISTATTACHMENTS,
InFile: &inFile,
Conf: conf}
}
// AddAttachmentsCommand creates a new command to add attachments.
func AddAttachmentsCommand(inFile, outFile string, fileNames []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ADDATTACHMENTS
return &Command{
Mode: model.ADDATTACHMENTS,
InFile: &inFile,
OutFile: &outFile,
InFiles: fileNames,
Conf: conf}
}
// AddAttachmentsPortfolioCommand creates a new command to add attachments to a portfolio.
func AddAttachmentsPortfolioCommand(inFile, outFile string, fileNames []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ADDATTACHMENTSPORTFOLIO
return &Command{
Mode: model.ADDATTACHMENTSPORTFOLIO,
InFile: &inFile,
OutFile: &outFile,
InFiles: fileNames,
Conf: conf}
}
// RemoveAttachmentsCommand creates a new command to remove attachments.
func RemoveAttachmentsCommand(inFile, outFile string, fileNames []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEATTACHMENTS
return &Command{
Mode: model.REMOVEATTACHMENTS,
InFile: &inFile,
OutFile: &outFile,
InFiles: fileNames,
Conf: conf}
}
// ExtractAttachmentsCommand creates a new command to extract attachments.
func ExtractAttachmentsCommand(inFile string, outDir string, fileNames []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXTRACTATTACHMENTS
return &Command{
Mode: model.EXTRACTATTACHMENTS,
InFile: &inFile,
OutDir: &outDir,
InFiles: fileNames,
Conf: conf}
}
// EncryptCommand creates a new command to encrypt a file.
func EncryptCommand(inFile, outFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ENCRYPT
return &Command{
Mode: model.ENCRYPT,
InFile: &inFile,
OutFile: &outFile,
Conf: conf}
}
// DecryptCommand creates a new command to decrypt a file.
func DecryptCommand(inFile, outFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.DECRYPT
return &Command{
Mode: model.DECRYPT,
InFile: &inFile,
OutFile: &outFile,
Conf: conf}
}
// ChangeUserPWCommand creates a new command to change the user password.
func ChangeUserPWCommand(inFile, outFile string, pwOld, pwNew *string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.CHANGEUPW
return &Command{
Mode: model.CHANGEUPW,
InFile: &inFile,
OutFile: &outFile,
PWOld: pwOld,
PWNew: pwNew,
Conf: conf}
}
// ChangeOwnerPWCommand creates a new command to change the owner password.
func ChangeOwnerPWCommand(inFile, outFile string, pwOld, pwNew *string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.CHANGEOPW
return &Command{
Mode: model.CHANGEOPW,
InFile: &inFile,
OutFile: &outFile,
PWOld: pwOld,
PWNew: pwNew,
Conf: conf}
}
// ListPermissionsCommand create a new command to list permissions.
func ListPermissionsCommand(inFiles []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTPERMISSIONS
return &Command{
Mode: model.LISTPERMISSIONS,
InFiles: inFiles,
Conf: conf}
}
// SetPermissionsCommand creates a new command to add permissions.
func SetPermissionsCommand(inFile, outFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.SETPERMISSIONS
return &Command{
Mode: model.SETPERMISSIONS,
InFile: &inFile,
OutFile: &outFile,
Conf: conf}
}
// AddWatermarksCommand creates a new command to add Watermarks to a file.
func AddWatermarksCommand(inFile, outFile string, pageSelection []string, wm *model.Watermark, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ADDWATERMARKS
return &Command{
Mode: model.ADDWATERMARKS,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
Watermark: wm,
Conf: conf}
}
// RemoveWatermarksCommand creates a new command to remove Watermarks from a file.
func RemoveWatermarksCommand(inFile, outFile string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEWATERMARKS
return &Command{
Mode: model.REMOVEWATERMARKS,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
Conf: conf}
}
// ImportImagesCommand creates a new command to import images.
func ImportImagesCommand(imageFiles []string, outFile string, imp *pdfcpu.Import, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.IMPORTIMAGES
return &Command{
Mode: model.IMPORTIMAGES,
InFiles: imageFiles,
OutFile: &outFile,
Import: imp,
Conf: conf}
}
// InsertPagesCommand creates a new command to insert a blank page before or after selected pages.
func InsertPagesCommand(inFile, outFile string, pageSelection []string, conf *model.Configuration, mode string, pageConf *pdfcpu.PageConfiguration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
cmdMode := model.INSERTPAGESBEFORE
if mode == "after" {
cmdMode = model.INSERTPAGESAFTER
}
conf.Cmd = cmdMode
return &Command{
Mode: cmdMode,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
PageConf: pageConf,
Conf: conf}
}
// RemovePagesCommand creates a new command to remove selected pages.
func RemovePagesCommand(inFile, outFile string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEPAGES
return &Command{
Mode: model.REMOVEPAGES,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
Conf: conf}
}
// RotateCommand creates a new command to rotate pages.
func RotateCommand(inFile, outFile string, rotation int, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ROTATE
return &Command{
Mode: model.ROTATE,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
IntVal: rotation,
Conf: conf}
}
// NUpCommand creates a new command to render PDFs or image files in n-up fashion.
func NUpCommand(inFiles []string, outFile string, pageSelection []string, nUp *model.NUp, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.NUP
return &Command{
Mode: model.NUP,
InFiles: inFiles,
OutFile: &outFile,
PageSelection: pageSelection,
NUp: nUp,
Conf: conf}
}
// BookletCommand creates a new command to render PDFs or image files in booklet fashion.
func BookletCommand(inFiles []string, outFile string, pageSelection []string, nup *model.NUp, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.BOOKLET
return &Command{
Mode: model.BOOKLET,
InFiles: inFiles,
OutFile: &outFile,
PageSelection: pageSelection,
NUp: nup,
Conf: conf}
}
// InfoCommand creates a new command to output information about inFile.
func InfoCommand(inFiles []string, pageSelection []string, json bool, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTINFO
return &Command{
Mode: model.LISTINFO,
InFiles: inFiles,
PageSelection: pageSelection,
BoolVal1: json,
Conf: conf}
}
// ListFontsCommand returns a list of supported fonts.
func ListFontsCommand(conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTFONTS
return &Command{
Mode: model.LISTFONTS,
Conf: conf}
}
// InstallFontsCommand installs true type fonts for embedding.
func InstallFontsCommand(fontFiles []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.INSTALLFONTS
return &Command{
Mode: model.INSTALLFONTS,
InFiles: fontFiles,
Conf: conf}
}
// CreateCheatSheetsFontsCommand creates single page PDF cheat sheets in current dir.
func CreateCheatSheetsFontsCommand(fontFiles []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.CHEATSHEETSFONTS
return &Command{
Mode: model.CHEATSHEETSFONTS,
InFiles: fontFiles,
Conf: conf}
}
// ListKeywordsCommand create a new command to list keywords.
func ListKeywordsCommand(inFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTKEYWORDS
return &Command{
Mode: model.LISTKEYWORDS,
InFile: &inFile,
Conf: conf}
}
// AddKeywordsCommand creates a new command to add keywords.
func AddKeywordsCommand(inFile, outFile string, keywords []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ADDKEYWORDS
return &Command{
Mode: model.ADDKEYWORDS,
InFile: &inFile,
OutFile: &outFile,
StringVals: keywords,
Conf: conf}
}
// RemoveKeywordsCommand creates a new command to remove keywords.
func RemoveKeywordsCommand(inFile, outFile string, keywords []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEKEYWORDS
return &Command{
Mode: model.REMOVEKEYWORDS,
InFile: &inFile,
OutFile: &outFile,
StringVals: keywords,
Conf: conf}
}
// ListPropertiesCommand creates a new command to list document properties.
func ListPropertiesCommand(inFile string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTPROPERTIES
return &Command{
Mode: model.LISTPROPERTIES,
InFile: &inFile,
Conf: conf}
}
// AddPropertiesCommand creates a new command to add document properties.
func AddPropertiesCommand(inFile, outFile string, properties map[string]string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ADDPROPERTIES
return &Command{
Mode: model.ADDPROPERTIES,
InFile: &inFile,
OutFile: &outFile,
StringMap: properties,
Conf: conf}
}
// RemovePropertiesCommand creates a new command to remove document properties.
func RemovePropertiesCommand(inFile, outFile string, propKeys []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEPROPERTIES
return &Command{
Mode: model.REMOVEPROPERTIES,
InFile: &inFile,
OutFile: &outFile,
StringVals: propKeys,
Conf: conf}
}
// CollectCommand creates a new command to create a custom PDF page sequence.
func CollectCommand(inFile, outFile string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.COLLECT
return &Command{
Mode: model.COLLECT,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
Conf: conf}
}
// ListBoxesCommand creates a new command to list page boundaries for selected pages.
func ListBoxesCommand(inFile string, pageSelection []string, pb *model.PageBoundaries, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTBOXES
return &Command{
Mode: model.LISTBOXES,
InFile: &inFile,
PageSelection: pageSelection,
PageBoundaries: pb,
Conf: conf}
}
// AddBoxesCommand creates a new command to add page boundaries for selected pages.
func AddBoxesCommand(inFile, outFile string, pageSelection []string, pb *model.PageBoundaries, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.ADDBOXES
return &Command{
Mode: model.ADDBOXES,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
PageBoundaries: pb,
Conf: conf}
}
// RemoveBoxesCommand creates a new command to remove page boundaries for selected pages.
func RemoveBoxesCommand(inFile, outFile string, pageSelection []string, pb *model.PageBoundaries, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEBOXES
return &Command{
Mode: model.REMOVEBOXES,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
PageBoundaries: pb,
Conf: conf}
}
// CropCommand creates a new command to apply a cropBox to selected pages.
func CropCommand(inFile, outFile string, pageSelection []string, box *model.Box, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.CROP
return &Command{
Mode: model.CROP,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
Box: box,
Conf: conf}
}
// ListAnnotationsCommand creates a new command to list annotations for selected pages.
func ListAnnotationsCommand(inFile string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTANNOTATIONS
return &Command{
Mode: model.LISTANNOTATIONS,
InFile: &inFile,
PageSelection: pageSelection,
Conf: conf}
}
// RemoveAnnotationsCommand creates a new command to remove annotations for selected pages.
func RemoveAnnotationsCommand(inFile, outFile string, pageSelection []string, idsAndTypes []string, objNrs []int, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEANNOTATIONS
return &Command{
Mode: model.REMOVEANNOTATIONS,
InFile: &inFile,
OutFile: &outFile,
PageSelection: pageSelection,
StringVals: idsAndTypes,
IntVals: objNrs,
Conf: conf}
}
// ListImagesCommand creates a new command to list annotations for selected pages.
func ListImagesCommand(inFiles []string, pageSelection []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTIMAGES
return &Command{
Mode: model.LISTIMAGES,
InFiles: inFiles,
PageSelection: pageSelection,
Conf: conf}
}
// UpdateImagesCommand creates a new command to update images.
func UpdateImagesCommand(inFile, imageFile, outFile string, objNrOrPageNr int, id string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.UPDATEIMAGES
return &Command{
Mode: model.UPDATEIMAGES,
InFiles: []string{inFile, imageFile},
OutFile: &outFile,
IntVal: objNrOrPageNr,
StringVal: id,
Conf: conf}
}
// DumpCommand creates a new command to dump objects on stdout.
func DumpCommand(inFilePDF string, vals []int, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.DUMP
return &Command{
Mode: model.DUMP,
InFile: &inFilePDF,
IntVals: vals,
Conf: conf}
}
// CreateCommand creates a new command to create a PDF file.
func CreateCommand(inFilePDF, inFileJSON, outFilePDF string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.CREATE
return &Command{
Mode: model.CREATE,
InFile: &inFilePDF,
InFileJSON: &inFileJSON,
OutFile: &outFilePDF,
Conf: conf}
}
// ListFormFieldsCommand creates a new command to list the field ids from a PDF form.
func ListFormFieldsCommand(inFiles []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LISTFORMFIELDS
return &Command{
Mode: model.LISTFORMFIELDS,
InFiles: inFiles,
Conf: conf}
}
// RemoveFormFieldsCommand creates a new command to remove fields from a PDF form.
func RemoveFormFieldsCommand(inFile, outFile string, fieldIDs []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.REMOVEFORMFIELDS
return &Command{
Mode: model.REMOVEFORMFIELDS,
InFile: &inFile,
OutFile: &outFile,
StringVals: fieldIDs,
Conf: conf}
}
// LockFormCommand creates a new command to lock PDF form fields.
func LockFormCommand(inFile, outFile string, fieldIDs []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.LOCKFORMFIELDS
return &Command{
Mode: model.LOCKFORMFIELDS,
InFile: &inFile,
OutFile: &outFile,
StringVals: fieldIDs,
Conf: conf}
}
// UnlockFormCommand creates a new command to unlock PDF form fields.
func UnlockFormCommand(inFile, outFile string, fieldIDs []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.UNLOCKFORMFIELDS
return &Command{
Mode: model.UNLOCKFORMFIELDS,
InFile: &inFile,
OutFile: &outFile,
StringVals: fieldIDs,
Conf: conf}
}
// ResetFormCommand creates a new command to lock PDF form fields.
func ResetFormCommand(inFile, outFile string, fieldIDs []string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.RESETFORMFIELDS
return &Command{
Mode: model.RESETFORMFIELDS,
InFile: &inFile,
OutFile: &outFile,
StringVals: fieldIDs,
Conf: conf}
}
// ExportFormCommand creates a new command to export a PDF form.
func ExportFormCommand(inFilePDF, outFileJSON string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.EXPORTFORMFIELDS
return &Command{
Mode: model.EXPORTFORMFIELDS,
InFile: &inFilePDF,
OutFileJSON: &outFileJSON,
Conf: conf}
}
// FillFormCommand creates a new command to fill a PDF form with data.
func FillFormCommand(inFilePDF, inFileJSON, outFilePDF string, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.FILLFORMFIELDS
return &Command{
Mode: model.FILLFORMFIELDS,
InFile: &inFilePDF,
InFileJSON: &inFileJSON,
OutFile: &outFilePDF,
Conf: conf}
}
// MultiFillFormCommand creates a new command to fill multiple PDF forms with JSON or CSV data.
func MultiFillFormCommand(inFilePDF, inFileData, outDir, outFilePDF string, merge bool, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.MULTIFILLFORMFIELDS
return &Command{
Mode: model.MULTIFILLFORMFIELDS,
InFile: &inFilePDF,
InFileJSON: &inFileData, // TODO Fix name clash.
OutDir: &outDir,
OutFile: &outFilePDF,
BoolVal1: merge,
Conf: conf}
}
// ResizeCommand creates a new command to scale selected pages.
func ResizeCommand(inFile, outFile string, pageSelection []string, resize *model.Resize, conf *model.Configuration) *Command {
if conf == nil {
conf = model.NewDefaultConfiguration()
}
conf.Cmd = model.RESIZE