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
|
// dbasik provides a service with which to convert spreadsheets containing
// data to JSON for further processing.
// Copyright (C) 2024 M R Lemon
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package main
import (
"database/sql"
"encoding/csv"
"encoding/json"
"errors"
"fmt"
"net/http"
"strconv"
"time"
)
// A custom err to return from our Get() method when looking up a datamap
// that doesn't exist
var (
ErrRecordNotFound = errors.New("record not found")
)
// A Models struct wraps the DatmapModel. We can add other models to this as
// we progress
type Models struct {
Datamaps datamapModel
DatamapLines datamapLineModel
}
// datamapLine holds the data parsed from each line of a submitted datamap CSV file.
// The fields need to be exported otherwise they won't be included when encoding
// the struct to json.
type datamapLine struct {
ID int64 `json:"id"`
Key string `json:"key"`
Sheet string `json:"sheet"`
DataType string `json:"datatype"`
Cellref string `json:"cellref"`
}
type datamapLineModel struct {
DB *sql.DB
}
// datamap includes a slice of datamapLine objects alongside header metadata
type datamap struct {
ID int64 `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Created time.Time `json:"created"`
DMLs []datamapLine `json:"datamap_lines"`
}
type datamapModel struct {
DB *sql.DB
}
func NewModels(db *sql.DB) Models {
return Models{
Datamaps: datamapModel{DB: db},
DatamapLines: datamapLineModel{DB: db},
}
}
func (m *datamapLineModel) Insert(dm datamap, dmls []datamapLine) (int, error) {
var datamapID int64
tx, err := m.DB.Begin()
if err != nil {
return 0, err
}
err = m.DB.QueryRow(`INSERT INTO datamaps (name, description, created)
VALUES ($1, $2, CURRENT_TIMESTAMP)
RETURNING id`, dm.Name, dm.Description).Scan(&datamapID)
if err != nil {
return 0, err
}
stmt, err := tx.Prepare(`INSERT INTO datamap_lines
(datamap_id, key, sheet, data_type, cellref)
VALUES ($1, $2, $3, $4, $5)`)
if err != nil {
return 0, err
}
defer stmt.Close()
for _, line := range dmls {
_, err := stmt.Exec(
int64(datamapID),
line.Key,
line.Sheet,
line.DataType,
line.Cellref)
if err != nil {
tx.Rollback()
return 0, err
}
}
tx.Commit()
return int(datamapID), nil
}
func (app *application) createDatamapHandler(w http.ResponseWriter, r *http.Request) {
// Parse the multipart form
err := r.ParseMultipartForm(10 << 20) // 10Mb max
if err != nil {
app.serverErrorResponse(w, r, err)
}
// Get form values
dmName := r.FormValue("name")
app.logger.Info("obtain value from form", "name", dmName)
dmDesc := r.FormValue("description")
app.logger.Info("obtain value from form", "description", dmDesc)
// Get the uploaded file and name
file, _, err := r.FormFile("file")
if err != nil {
http.Error(w, "Missing file", http.StatusBadRequest)
return
}
defer file.Close()
// parse the csv
reader := csv.NewReader(file)
var dmls []datamapLine
var dm datamap
for {
line, err := reader.Read()
if err != nil {
if err.Error() == "EOF" {
break // end of file
}
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if len(line) != 4 {
http.Error(w, "Invalid CSV Format", http.StatusBadRequest)
return
}
dmls = append(dmls, datamapLine{
Key: line[0],
Sheet: line[1],
DataType: line[2],
Cellref: line[3],
})
}
dm = datamap{Name: dmName, Description: dmDesc, Created: time.Now(), DMLs: dmls}
err = app.writeJSONPretty(w, http.StatusOK, envelope{"datamap": dm}, nil)
if err != nil {
app.logger.Debug("writing out csv", "err", err)
app.serverErrorResponse(w, r, err)
}
fmt.Fprintf(w, "file successfully uploaded")
}
func (app *application) saveDatamapHandler(w http.ResponseWriter, r *http.Request) {
// Parse the multipart form
err := r.ParseMultipartForm(10 << 20) // 10Mb max
if err != nil {
app.serverErrorResponse(w, r, err)
}
// Get form values
dmName := r.FormValue("name")
app.logger.Info("obtain value from form", "name", dmName)
dmDesc := r.FormValue("description")
app.logger.Info("obtain value from form", "description", dmDesc)
// Get the uploaded file and name
file, _, err := r.FormFile("file")
if err != nil {
http.Error(w, "Missing file", http.StatusBadRequest)
return
}
defer file.Close()
// parse the csv
reader := csv.NewReader(file)
var dmls []datamapLine
var dm datamap
for {
line, err := reader.Read()
if err != nil {
if err.Error() == "EOF" {
break // end of file
}
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if len(line) != 4 {
http.Error(w, "Invalid CSV Format", http.StatusBadRequest)
return
}
dmls = append(dmls, datamapLine{
ID: 0,
Key: line[0],
Sheet: line[1],
DataType: line[2],
Cellref: line[3],
})
}
dm = datamap{Name: dmName, Description: dmDesc, Created: time.Now(), DMLs: dmls}
// save to the database
_, err = app.models.DatamapLines.Insert(dm, dmls)
if err != nil {
http.Error(w, "Cannot save to database", http.StatusBadRequest)
return
}
}
func (app *application) getJSONForDatamap(w http.ResponseWriter, r *http.Request) {
// Get the DM out of the database
// dm = datamap{Name: dmName, Description: dmDesc, Created: time.Now(), DMLs: dmls}
// err = app.writeJSONPretty(w, http.StatusOK, envelope{"datamap": dm}, nil)
// if err != nil {
// app.logger.Debug("writing out csv", "err", err)
// app.serverErrorResponse(w, r, err)
// }
// fmt.Fprintf(w, "file successfully uploaded")
}
func (app *application) showDatamapHandler(w http.ResponseWriter, r *http.Request) {
id := r.PathValue("id")
app.logger.Info("the id requested", "id", id)
id_int, err := strconv.ParseInt(id, 10, 64)
if err != nil || id_int < 1 {
app.notFoundResponse(w, r)
}
fmt.Fprintf(w, "show the details for datamap %d\n", id_int)
}
func (app *application) createDatamapLine(w http.ResponseWriter, r *http.Request) {
var input datamapLine
err := json.NewDecoder(r.Body).Decode(&input)
if err != nil {
app.errorResponse(w, r, http.StatusBadRequest, err.Error())
return
}
fmt.Fprintf(w, "%v\n", input)
}
|