-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
662 lines (559 loc) · 17.1 KB
/
api.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
package main
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"
"os"
"path/filepath"
"strings"
"github.com/gin-gonic/gin"
"github.com/joho/godotenv"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
const (
APIEntryPoint1 = "https://api.ilovepdf.com/v1/auth"
APIEntryPoint2 = "https://api.ilovepdf.com/v1/start"
)
type App struct {
mongoclient *mongo.Client
}
// Usuario
type User struct {
ID primitive.ObjectID `json:"_id,omitempty" bson:"_id,omitempty"`
Name string `json:"name" bson:"name" `
Last_name string `json:"last_name" bson:"last_name"`
Rut string `json:"rut" bson:"rut"`
Email string `json:"email" bson:"email"`
Password string `json:"password" bson:"password"`
}
func (app *App) LoginUsuario(c *gin.Context) {
var credenciales User
c.ShouldBind(&credenciales)
coll := app.mongoclient.Database("tarea1").Collection("users")
var doc User
// Filtro para encontrar usuario.
filter := bson.D{{Key: "email", Value: credenciales.Email}}
// Buscamos en la coleccion si existe y lo recuperamos
err := coll.FindOne(context.TODO(), filter).Decode(&doc)
if err != nil {
if err == mongo.ErrNoDocuments {
c.JSON(404, map[string]interface{}{"message": "Usuario no encontrado"})
}
return
}
// Revisar credenciales
if credenciales.Password == doc.Password {
response := map[string]interface{}{
"data": map[string]interface{}{
"_id": doc.ID.Hex(),
"email": doc.Email,
"name": doc.Name,
"last_name": doc.Last_name,
"rut": doc.Rut,
},
}
c.JSON(200, response)
return
}
c.Status(500)
}
func (app *App) RegistrarUsuario(c *gin.Context) {
// Respuesta predeterminada
response := map[string]interface{}{"message": "Error al registrar cliente"}
// Recuperamos payload usuario
var nuevoUsuario User
if err := c.ShouldBind(&nuevoUsuario); err != nil {
return
}
coll := app.mongoclient.Database("tarea1").Collection("users")
// Filtro para revisar si usuario esta registrado.
// No puede repetirse ni el rut ni el correo.
filtroR := bson.D{{Key: "rut", Value: nuevoUsuario.Rut}}
filtroE := bson.D{{Key: "email", Value: nuevoUsuario.Email}}
// Revisamos si ya esta registrado el rut
if err := coll.FindOne(context.TODO(), filtroR).Err(); err != nil {
if err == mongo.ErrNoDocuments {
if err := coll.FindOne(context.TODO(), filtroE).Err(); err != nil {
if err == mongo.ErrNoDocuments {
result, err := coll.InsertOne(context.TODO(), nuevoUsuario)
if err != nil {
c.JSON(400, response)
return
}
oid, _ := result.InsertedID.(primitive.ObjectID)
response := map[string]interface{}{
"data": map[string]interface{}{
"_id": oid.Hex(),
"email": nuevoUsuario.Email,
"name": nuevoUsuario.Name,
"last_name": nuevoUsuario.Last_name,
"rut": nuevoUsuario.Rut,
},
}
c.JSON(200, response)
return
}
}
}
}
c.JSON(400, response)
}
// Clientes
type Client struct {
ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"`
Name string `bson:"name,omitempty" json:"name,omitempty"`
Last_name string `bson:"last_name,omitempty" json:"last_name,omitempty"`
Rut string `bson:"rut,omitempty" json:"rut,omitempty"`
Email string `bson:"email,omitempty" json:"email,omitempty"`
}
func (app *App) RegistarCliente(c *gin.Context) {
// Respuesta predeterminada
response := map[string]interface{}{"message": "Error al registrar cliente"}
// Recuperamos payload cliente
var nuevoCliente Client
if err := c.ShouldBind(&nuevoCliente); err != nil {
c.JSON(400, response)
return
}
// Buscamos en la base de datos si el cliente existe
// No puede repetirse ni el rut ni el correo.
filter := bson.D{{Key: "rut", Value: nuevoCliente.Rut}, {Key: "email", Value: nuevoCliente.Email}}
coll := app.mongoclient.Database("tarea1").Collection("clients")
err := coll.FindOne(context.TODO(), filter).Err()
if err != nil {
if err == mongo.ErrNoDocuments {
// Si no existe podemos registrar el cliente
result, err := coll.InsertOne(context.TODO(), nuevoCliente)
if err != nil {
c.JSON(400, response)
return
}
oid, _ := result.InsertedID.(primitive.ObjectID)
response := map[string]interface{}{
"data": map[string]interface{}{
"_id": oid.Hex(),
"email": nuevoCliente.Email,
"name": nuevoCliente.Name,
"last_name": nuevoCliente.Last_name,
"rut": nuevoCliente.Rut,
},
}
c.JSON(200, response)
return
}
}
c.JSON(400, response)
}
type FormGetClient struct {
Rut string `form:"rut"`
}
func (f FormGetClient) toFilter() bson.D {
filter := bson.D{}
// Aqui podemos personalizar los filtros
if f.Rut != "" {
filter = append(filter, bson.E{Key: "rut", Value: f.Rut})
}
return filter
}
func (app *App) getClients(c *gin.Context) {
// Respuesta predeterminada
response := map[string]interface{}{"message": "Error al obtener los clientes"}
var form FormGetClient
if err := c.ShouldBind(&form); err != nil {
}
// Obtenemos de la base de datos todos los clientes o lo que coincida con el filtro.
// El filtro depende de lo parseado del url.
coll := app.mongoclient.Database("tarea1").Collection("clients")
cursor, err := coll.Find(context.TODO(), form.toFilter())
if err != nil {
c.JSON(400, response)
return
}
// Aqui recuperamos los clientes
var results []Client
err = cursor.All(context.TODO(), &results)
if err != nil {
response["message"] = "Error al procesar los clientes"
c.JSON(400, response)
return
}
// Preparamos la respuesta
data := []map[string]interface{}{}
for _, client := range results {
cliente := map[string]interface{}{
"_id": client.ID.Hex(),
"email": client.Email,
"name": client.Name,
"last_name": client.Last_name,
"rut": client.Rut,
}
data = append(data, cliente)
}
response = map[string]interface{}{"data": data}
c.JSON(200, response)
return
}
func (app *App) getClientByID(c *gin.Context) {
// Respuesta predeterminada
response := map[string]interface{}{"message": "Cliente no encontrado"}
// Parseamos el id
id := c.Param("id")
// Convertimos a ObjectID
oid, err := primitive.ObjectIDFromHex(id)
if err != nil {
// El id proporcionado no es correcto
response["message"] = "El ID proporcionado no es correcto."
c.JSON(400, response)
return
}
coll := app.mongoclient.Database("tarea1").Collection("clients")
filter := bson.D{{Key: "_id", Value: oid}}
var cliente Client
err = coll.FindOne(context.TODO(), filter).Decode(&cliente)
if err != nil {
if err == mongo.ErrNoDocuments {
// Cliente no encontrado
c.JSON(404, response)
}
return
}
// Preparamos la respuesta
response = map[string]interface{}{
"data": map[string]interface{}{
"_id": id,
"email": cliente.Email,
"name": cliente.Name,
"last_name": cliente.Last_name,
"rut": cliente.Rut,
},
}
c.JSON(200, response)
return
}
func (app *App) putClientByID(c *gin.Context) {
// Respuesta predeterminada
response := map[string]interface{}{"message": "Error al actualizar el cliente"}
// Parseamos y convertimos el ID
id := c.Param("id")
oid, err := primitive.ObjectIDFromHex(id)
// Parseamos el payload con los cambios a realizar al cliente
var cambios Client
if err := c.ShouldBind(&cambios); err != nil {
response["message"] = "Formato incorrecto"
c.JSON(400, response)
}
coll := app.mongoclient.Database("tarea1").Collection("clients")
// Verificamos si existe el cliente y lo obtenemos para luego mostrarlo sin los cambios
var cliente Client
filter := bson.D{{Key: "_id", Value: oid}}
err = coll.FindOne(context.TODO(), filter).Decode(&cliente)
if err != nil {
if err == mongo.ErrNoDocuments {
c.JSON(404, response)
}
return
}
update := bson.M{"$set": cambios}
result, err := coll.UpdateOne(context.TODO(), filter, update)
if err != nil {
c.JSON(400, response)
}
var zero int64 = 0
if result.MatchedCount == zero {
c.JSON(404, response)
return
}
if result.ModifiedCount == 1 || result.MatchedCount == 1 {
response = map[string]interface{}{
"data": map[string]interface{}{
"_id": id,
"email": cliente.Email,
"name": cliente.Name,
"last_name": cliente.Last_name,
"rut": cliente.Rut,
},
}
c.JSON(200, response)
return
}
c.JSON(400, response)
}
func (app *App) delClientByID(c *gin.Context) {
// Respuesta predeterminada
response := map[string]interface{}{"message": "Cliente no encontrado"}
// Parseamos el id y lo convertimos en ObjectID
id := c.Param("id")
oid, _ := primitive.ObjectIDFromHex(id)
coll := app.mongoclient.Database("tarea1").Collection("clients")
// Buscamos en la db al cliente y lo guardamos para luego mostrarlo
filter := bson.D{{Key: "_id", Value: oid}}
var cliente Client
err := coll.FindOne(context.TODO(), filter).Decode(&cliente)
if err != nil {
if err == mongo.ErrNoDocuments {
c.JSON(404, response)
return
}
}
result, err := coll.DeleteOne(context.TODO(), filter)
if err != nil {
response["message"] = "Error al eliminar el cliente"
c.JSON(400, response)
return
}
if result.DeletedCount == 1 {
response = map[string]interface{}{
"data": map[string]interface{}{
"_id": id,
"email": cliente.Email,
"name": cliente.Name,
"last_name": cliente.Last_name,
"rut": cliente.Rut,
},
}
c.JSON(200, response)
return
}
}
type ILovePdf struct {
PublicKey string
Token string
}
func NewILovePdf(publicKey string) *ILovePdf {
resp, _ := http.PostForm(APIEntryPoint1, map[string][]string{
"public_key": {publicKey},
})
var result map[string]string
json.NewDecoder(resp.Body).Decode(&result)
resp.Body.Close()
return &ILovePdf{PublicKey: publicKey, Token: result["token"]}
}
type Operations struct {
*ILovePdf
Token string
TaskID string
Tool string
Server string
Files []map[string]string
}
func NewOperations(publicKey string) *Operations {
op := &Operations{ILovePdf: NewILovePdf(publicKey)}
op.retrieveToken()
return op
}
// Metodo para guardar el token
func (op *Operations) retrieveToken() {
if op.Token == "" {
resp, err := http.PostForm(APIEntryPoint1, map[string][]string{
"public_key": {op.PublicKey},
})
if err != nil {
return
}
var result map[string]string
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
resp.Body.Close()
return
}
resp.Body.Close()
op.Token = result["token"]
}
}
func (op *Operations) startTask(tool string) {
op.Tool = tool
op.retrieveToken() //Recibir token
req, _ := http.NewRequest("GET", APIEntryPoint2+"/"+tool, nil)
req.Header.Set("Authorization", "Bearer "+op.Token)
resp, _ := http.DefaultClient.Do(req)
var result map[string]interface{}
json.NewDecoder(resp.Body).Decode(&result)
resp.Body.Close()
op.TaskID, op.Server = result["task"].(string), result["server"].(string)
}
func (op *Operations) addFile(filename string) error {
// Verificar si el archivo existe
if _, err := os.Stat(filename); os.IsNotExist(err) {
return fmt.Errorf("el archivo especificado no existe: %s", filename)
}
// Construir la URL de la solicitud
url := fmt.Sprintf("https://%s/v1/upload", op.Server)
// Abrir el archivo
file, err := os.Open(filename)
if err != nil {
return fmt.Errorf("error al abrir el archivo: %v", err)
}
defer file.Close()
// Crear un buffer para el cuerpo del formulario
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
// Agregar el archivo al formulario
part, err := writer.CreateFormFile("file", filepath.Base(filename))
if err != nil {
return fmt.Errorf("error al crear la parte del formulario: %v", err)
}
if _, err = io.Copy(part, file); err != nil {
return fmt.Errorf("error al copiar el contenido del archivo: %v", err)
}
// Agregar el parámetro "task" al formulario
writer.WriteField("task", op.TaskID)
// Cerrar el escritor multipart
if err := writer.Close(); err != nil {
return fmt.Errorf("error al cerrar el escritor multipart: %v", err)
}
// Crear la solicitud HTTP POST
req, err := http.NewRequest("POST", url, body)
if err != nil {
return fmt.Errorf("error al crear la solicitud http: %v", err)
}
// Establecer el tipo de contenido en la solicitud
req.Header.Set("Content-Type", writer.FormDataContentType())
// Agregar el encabezado de autorización
req.Header.Set("Authorization", "Bearer "+op.Token)
// Realizar la solicitud HTTP
resp, err := http.DefaultClient.Do(req)
if err != nil {
return fmt.Errorf("error al realizar la solicitud http: %v", err)
}
defer resp.Body.Close()
// Decodificar la respuesta JSON
var response map[string]interface{}
if err := json.NewDecoder(resp.Body).Decode(&response); err != nil {
return fmt.Errorf("error al decodificar la respuesta json: %v", err)
}
// Verificar si el archivo se agregó correctamente
if serverFilename, ok := response["server_filename"].(string); ok {
op.Files = append(op.Files, map[string]string{
"server_filename": serverFilename,
"filename": filename,
})
return nil
}
return fmt.Errorf("error al agregar el archivo: %v", response)
}
func (op *Operations) execute(password string) {
url := fmt.Sprintf("https://%s/v1/process", op.Server)
params := map[string]interface{}{
"task": op.TaskID,
"tool": op.Tool,
"files": op.Files,
"password": password,
}
jsonData, _ := json.Marshal(params)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header.Set("Authorization", "Bearer "+op.Token)
req.Header.Set("Content-Type", "application/json")
// Enviar la solicitud HTTP
resp, err := http.DefaultClient.Do(req)
if err != nil {
fmt.Println("Error executing task:", err)
return
}
defer resp.Body.Close()
}
func (op *Operations) download(outputFilename string, inputPath string) string {
url := fmt.Sprintf("https://%s/v1/download/%s", op.Server, op.TaskID)
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Authorization", "Bearer "+op.Token)
resp, _ := http.DefaultClient.Do(req)
if resp.StatusCode != http.StatusOK {
fmt.Println("Error:", resp.Status) // Imprime cualquier mensaje de error en la respuesta
return ""
}
// Obtener el directorio del archivo de entrada
outputDir := filepath.Dir(inputPath)
// Concatenar el directorio y el nombre de archivo de salida
outputPath := filepath.Join(outputDir, outputFilename)
out, _ := os.Create(outputPath)
defer out.Close()
io.Copy(out, resp.Body)
resp.Body.Close()
return outputPath
}
type BindFile struct {
ID string `form:"id" binding:"required"`
File *multipart.FileHeader `form:"file" binding:"required"`
}
func (app *App) Protect(c *gin.Context) {
var bind BindFile
if err := c.ShouldBind(&bind); err != nil {
}
// Guardamos el archivo pdf en ./files
file := bind.File
path := "files/" + file.Filename
err := c.SaveUploadedFile(file, path)
if err != nil {
}
// Buscamos al cliente con su ID para obtener su rut
oid, err := primitive.ObjectIDFromHex(bind.ID)
coll := app.mongoclient.Database("tarea1").Collection("clients")
var cliente Client
err = coll.FindOne(context.TODO(), bson.D{{Key: "_id", Value: oid}}).Decode(&cliente)
if err != nil {
if err == mongo.ErrNoDocuments {
response := map[string]interface{}{"message": "Cliente no encontrado"}
c.JSON(404, response)
return
}
}
// jiji
password := cliente.Rut
publicKey := os.Getenv("PUBLIC_KEY")
op := NewOperations(publicKey)
op.startTask("protect")
op.addFile(path)
op.execute(password)
fileName := strings.TrimSuffix(filepath.Base(path), filepath.Ext(path)) + "_protegido.pdf"
targetPath := op.download(fileName, path)
if targetPath == "" {
response := map[string]interface{}{"message": "Error al procesar archivo"}
c.JSON(400, response)
return
}
c.Header("Content-Description", "File Transfer")
c.Header("Content-Transfer-Encoding", "binary")
c.Header("Content-Disposition", "attachment; filename="+fileName)
c.Header("Content-Type", "application/octet-stream")
c.File(targetPath)
}
func main() {
// Cargar variables de entorno
if err := godotenv.Load(); err != nil {
log.Fatal("Error al leer el archivo .env")
}
// Conexion con MongoDB
opts := options.Client().ApplyURI(os.Getenv("MONGODB_URI")).SetServerAPIOptions(options.ServerAPI(options.ServerAPIVersion1))
mongoclient, err := mongo.Connect(context.TODO(), opts)
if err != nil {
panic(err)
}
defer func() {
if err = mongoclient.Disconnect(context.TODO()); err != nil {
panic(err)
}
}()
app := App{
mongoclient: mongoclient,
}
// Gin
r := gin.Default()
r.Static("/files", "./files")
r.MaxMultipartMemory = 8 << 20
//r.POST("/api/protect", app.Protect)
r.POST("/login", app.LoginUsuario)
r.POST("/register", app.RegistrarUsuario)
r.POST("/api/clients", app.RegistarCliente)
r.GET("/api/clients", app.getClients)
r.GET("/api/clients/:id", app.getClientByID)
r.PUT("/api/clients/:id", app.putClientByID)
r.DELETE("/api/clients/:id", app.delClientByID)
r.POST("/api/protect", app.Protect)
r.Run(fmt.Sprintf("%s:%s", os.Getenv("HOST"), os.Getenv("PORT")))
}