-
Notifications
You must be signed in to change notification settings - Fork 2
/
handlerVerify.go
83 lines (78 loc) · 2.43 KB
/
handlerVerify.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
/* ****************************************************************************
* Copyright 2020 51 Degrees Mobile Experts Limited (51degrees.com)
*
* 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 owid
import (
"encoding/json"
"fmt"
"net/http"
"strings"
)
type verify struct {
Valid bool `json:"valid"`
}
// HandlerVerify verifies the signature in the incoming OWID. If the method is
// POST and the content is binary data then the OWID is created using the
// FromByteArray method. Otherwise the OWID is constructed form the base 64
// encoded string in the owid parameter.
// Returns true if the OWID is valid, otherwise false.
func HandlerVerify(s *Services) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var v verify
p, o, err := verifyGetOWIDs(r)
if err != nil {
returnAPIError(s, w, err, http.StatusBadRequest)
return
}
c, err := getCreatorFromRequest(s, r)
if err != nil {
returnAPIError(s, w, err, http.StatusInternalServerError)
return
}
v.Valid, err = c.Verify(o, p)
if err != nil && strings.Contains(err.Error(), "verification error") {
returnAPIError(s, w, err, http.StatusInternalServerError)
return
}
j, err := json.Marshal(v)
if err != nil {
returnAPIError(s, w, err, http.StatusInternalServerError)
return
}
w.Header().Set("Cache-Control", "no-cache")
sendResponse(s, w, "application/json; charset=utf-8", j)
}
}
func verifyGetOWIDs(r *http.Request) (*OWID, *OWID, error) {
err := r.ParseForm()
if err != nil {
return nil, nil, err
}
if r.FormValue("owid") == "" {
return nil, nil, fmt.Errorf("owid parameter must be provided")
}
var p *OWID
if r.FormValue("parent") != "" {
p, err = FromBase64(r.FormValue("parent"))
if err != nil {
return nil, nil, err
}
}
o, err := FromBase64(r.FormValue("owid"))
if err != nil {
return nil, nil, err
}
return p, o, nil
}