// Copyright 2014 The Cayley Authors. All rights reserved. // // 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 http import ( "encoding/json" "fmt" "io" "io/ioutil" "net/http" "strconv" "github.com/barakmich/glog" "github.com/julienschmidt/httprouter" "github.com/google/cayley/graph" "github.com/google/cayley/nquads" ) func ParseJsonToTripleList(jsonBody []byte) ([]*graph.Triple, error) { var tripleList []*graph.Triple err := json.Unmarshal(jsonBody, &tripleList) if err != nil { return nil, err } for i, t := range tripleList { if !t.IsValid() { return nil, fmt.Errorf("Invalid triple at index %d. %s", i, t) } } return tripleList, nil } func (api *Api) ServeV1Write(w http.ResponseWriter, r *http.Request, _ httprouter.Params) int { if api.config.ReadOnly { return FormatJson400(w, "Database is read-only.") } bodyBytes, err := ioutil.ReadAll(r.Body) if err != nil { return FormatJson400(w, err) } tripleList, terr := ParseJsonToTripleList(bodyBytes) if terr != nil { return FormatJson400(w, terr) } api.ts.AddTripleSet(tripleList) fmt.Fprintf(w, "{\"result\": \"Successfully wrote %d triples.\"}", len(tripleList)) return 200 } func (api *Api) ServeV1WriteNQuad(w http.ResponseWriter, r *http.Request, params httprouter.Params) int { if api.config.ReadOnly { return FormatJson400(w, "Database is read-only.") } formFile, _, err := r.FormFile("NQuadFile") if err != nil { glog.Errorln(err) return FormatJsonError(w, 500, "Couldn't read file: "+err.Error()) } defer formFile.Close() blockSize, blockErr := strconv.ParseInt(r.URL.Query().Get("block_size"), 10, 64) if blockErr != nil { blockSize = int64(api.config.LoadSize) } dec := nquads.NewDecoder(formFile) var ( n int block = make([]*graph.Triple, 0, blockSize) ) for { t, err := dec.Unmarshal() if err != nil { if err == io.EOF { break } panic("what can do this here?") // FIXME(kortschak) } block = append(block, t) n++ if len(block) == cap(block) { api.ts.AddTripleSet(block) block = block[:0] } } api.ts.AddTripleSet(block) fmt.Fprintf(w, "{\"result\": \"Successfully wrote %d triples.\"}", n) return 200 } func (api *Api) ServeV1Delete(w http.ResponseWriter, r *http.Request, params httprouter.Params) int { if api.config.ReadOnly { return FormatJson400(w, "Database is read-only.") } bodyBytes, err := ioutil.ReadAll(r.Body) if err != nil { return FormatJson400(w, err) } tripleList, terr := ParseJsonToTripleList(bodyBytes) if terr != nil { return FormatJson400(w, terr) } count := 0 for _, triple := range tripleList { api.ts.RemoveTriple(triple) count++ } fmt.Fprintf(w, "{\"result\": \"Successfully deleted %d triples.\"}", count) return 200 }