-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
221 lines (190 loc) · 5.36 KB
/
main.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
package main
import (
"database/sql"
"flag"
"fmt"
"log"
"strconv"
gorncs "github.com/signaux-faibles/gorncs-api/lib"
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
_ "github.com/mattn/go-sqlite3" // sqlite3 driver
)
var db string
var path string
var scanner bool
var initdb bool
var bind string
var download bool
var user string
var password string
var verbose bool
var limit int
var siren string
var database *sql.DB
func init() {
flag.StringVar(&db, "DB", "./bilan.db", "chemin de la base sqlite3")
flag.StringVar(&path, "path", ".", "chemin où sont stockés les fichiers RNCS")
flag.StringVar(&bind, "bind", "127.0.0.1:3000", "port d'écoute de l'api")
flag.BoolVar(&scanner, "scan", false, "importer les fichiers")
flag.BoolVar(&initdb, "initdb", false, "créer une nouvelle base sqlite")
flag.BoolVar(&verbose, "verbose", false, "afficher les informations d'importation")
flag.BoolVar(&download, "download", false, "synchroniser le dépôt RNCS dans (voir -path, -user et -password)")
flag.StringVar(&user, "user", "", "utilisateur FTPS RNCS/inpi")
flag.StringVar(&password, "password", "", "mot de passe FTPS RNCS/inpi")
flag.IntVar(&limit, "limit", 0, "limiter l'import à n bilans")
flag.StringVar(&siren, "siren", "", "restreint l'importation au siren")
}
func main() {
flag.Parse()
if scanner {
scan()
} else if initdb {
initDB()
} else if download {
err := gorncs.DownloadFolder(
"ftp://opendata-rncs.inpi.fr/public/Bilans_Donnees_Saisies/",
user,
password,
path)
if err != nil {
log.Print("Interruption du téléchargement: " + err.Error())
}
} else {
var err error
database, err = sql.Open("sqlite3", db)
if err != nil {
panic(err)
}
fmt.Println("gorncs-api écoute " + bind)
fmt.Println("Pour plus d'information: gorncs-api --help")
gin.SetMode(gin.ReleaseMode)
r := gin.Default()
r.Use(cors.Default())
r.GET("/bilan/:siren", search)
r.GET("/fields/:field", fields)
r.GET("/fields", fields)
r.GET("/schema", schema)
r.Run(bind)
}
}
func schema(c *gin.Context) {
c.JSON(200, gorncs.Kb)
}
func fields(c *gin.Context) {
field := c.Params.ByName("field")
if field == "" {
c.JSON(200, gorncs.PostesDetail)
} else {
if detail, ok := gorncs.PostesDetail[field]; ok {
c.JSON(200, detail)
} else {
c.JSON(404, "champ non référencé")
}
}
}
type query struct {
Siren string `json:"siren"`
}
func search(c *gin.Context) {
siren := c.Params.ByName("siren")
rows, err := database.Query("select * from bilan where siren = $1", siren)
cols, _ := rows.Columns()
if err != nil {
c.JSON(500, "wtf")
}
var result []interface{}
for rows.Next() {
columns := make([]interface{}, len(cols))
columnPointers := make([]interface{}, len(cols))
for i := range columns {
columnPointers[i] = &columns[i]
}
if err := rows.Scan(columnPointers...); err != nil {
fmt.Println(err)
}
m := make(map[string]interface{})
for i, colName := range cols {
val := columnPointers[i].(*interface{})
if *val != nil {
m[colName] = *val
}
}
result = append(result, m)
}
c.JSON(200, result)
}
func initDB() {
log.Print("initialisation de la base de données Sqlite pour gorncs: " + db)
database, err := sql.Open("sqlite3", db)
if err != nil {
log.Fatal("Erreur d'accès au fichier " + db + ": " + err.Error())
}
createTableQuery := gorncs.GetCreateTableQuery()
_, err = database.Exec(createTableQuery)
if err != nil {
log.Fatal("interruption lors de la création de la table: " + err.Error())
} else {
log.Print("creation de la table bilan (" + strconv.Itoa(len(gorncs.Postes)) + " champs): ok")
}
_, err = database.Exec("create unique index idx_lookup_bilan on bilan (nom_fichier, siren, date_cloture_exercice, code_activite, date_depot, denomination);")
if err != nil {
log.Print("creation index: " + err.Error())
} else {
log.Print("creation index: ok")
}
// log.Print("creation vue synthetique: not yet implemented")
// log.Print("creation vue actif: not yet implemented")
// log.Print("creation vue passif: not yet implemented")
// log.Print("creation vue compte_de_resultat: not yet implemented")
// log.Print("creation vue ratio: not yet implemented")
}
func scan() {
log.Print("gorncs - analyse de l'arborescence INPI dans " + path)
database, err := sql.Open("sqlite3", db)
if err != nil {
panic(err)
}
// options d'optimisation dangereuses
// _, err = database.Exec("PRAGMA journal_mode = OFF")
// _, err = database.Exec("PRAGMA synchronous = OFF")
queryString := gorncs.GetQueryString()
tx, _ := database.Begin()
stmt, err := tx.Prepare(queryString)
if err != nil {
panic(err)
}
n := 0
for bilan := range gorncs.BilanWorker(path) {
if bilan.Siren == siren || siren == "" {
if bilan.Siren != "" && len(bilan.Lignes) > 0 {
_, err := stmt.Exec(bilan.ToQueryParams()...)
if err != nil {
if verbose {
if err.Error()[0:6] == "UNIQUE" {
log.Print("bilan déjà présent " + bilan.NomFichier)
} else {
log.Print("probleme à l'insert de " + bilan.NomFichier + ": " + err.Error())
}
}
} else {
n++
}
if verbose {
log.Print("scan: " + bilan.NomFichier)
}
} else {
if verbose {
log.Print("aucune donnée: " + bilan.NomFichier)
}
}
}
if n == limit && limit != 0 {
break
}
}
stmt.Close()
tx.Commit()
database.Close()
log.Print("Bilans importés: " + strconv.Itoa(n))
}