forked from in-toto/archivista
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactoring: testifysec/archivista-api as a pkg
The current "github.com/testifysec/archivista-api" was detached from the Archivista from the historical strategy by TestifySec. TestifySec donated the Archivista project to the in-toto project, which makes more sense to the API package being part of the Archivista source code. This commit adds "github.com/testifysec/archivista-api" as pkg in Archivista. Closes in-toto#113 Signed-off-by: Kairo de Araujo <[email protected]>
- Loading branch information
1 parent
a63661d
commit 57cc1cb
Showing
7 changed files
with
257 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
// Copyright 2023 The Witness Contributors | ||
// | ||
// 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 api | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"encoding/json" | ||
"errors" | ||
"io" | ||
"net/http" | ||
"net/url" | ||
|
||
"github.com/testifysec/go-witness/dsse" | ||
) | ||
|
||
func Download(ctx context.Context, baseUrl string, gitoid string) (dsse.Envelope, error) { | ||
buf := &bytes.Buffer{} | ||
if err := DownloadWithWriter(ctx, baseUrl, gitoid, buf); err != nil { | ||
return dsse.Envelope{}, err | ||
} | ||
|
||
env := dsse.Envelope{} | ||
dec := json.NewDecoder(buf) | ||
if err := dec.Decode(&env); err != nil { | ||
return env, err | ||
} | ||
|
||
return env, nil | ||
} | ||
|
||
func DownloadWithWriter(ctx context.Context, baseUrl, gitoid string, dst io.Writer) error { | ||
downloadUrl, err := url.JoinPath(baseUrl, "download", gitoid) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
req, err := http.NewRequestWithContext(ctx, "GET", downloadUrl, nil) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
req.Header.Set("Content-Type", "application/json") | ||
hc := &http.Client{} | ||
resp, err := hc.Do(req) | ||
if err != nil { | ||
return nil | ||
} | ||
|
||
defer resp.Body.Close() | ||
if resp.StatusCode != http.StatusOK { | ||
errMsg, err := io.ReadAll(resp.Body) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return errors.New(string(errMsg)) | ||
} | ||
|
||
_, err = io.Copy(dst, resp.Body) | ||
return err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// Copyright 2023 The Witness Contributors | ||
// | ||
// 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 api | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"io" | ||
"net/http" | ||
"net/url" | ||
) | ||
|
||
type graphQLError struct { | ||
Message string `json:"message"` | ||
} | ||
|
||
type graphQLResponse[T any] struct { | ||
Data T `json:"data,omitempty"` | ||
Errors []graphQLError `json:"errors,omitempty"` | ||
} | ||
|
||
type graphQLRequestBody[TVars any] struct { | ||
Query string `json:"query"` | ||
Variables TVars `json:"variables,omitempty"` | ||
} | ||
|
||
func GraphQlQuery[TRes any, TVars any](ctx context.Context, baseUrl, query string, vars TVars) (TRes, error) { | ||
var response TRes | ||
queryUrl, err := url.JoinPath(baseUrl, "query") | ||
if err != nil { | ||
return response, err | ||
} | ||
|
||
requestBody := graphQLRequestBody[TVars]{ | ||
Query: query, | ||
Variables: vars, | ||
} | ||
|
||
reqBody, err := json.Marshal(requestBody) | ||
if err != nil { | ||
return response, err | ||
} | ||
|
||
req, err := http.NewRequestWithContext(ctx, "POST", queryUrl, bytes.NewReader(reqBody)) | ||
if err != nil { | ||
return response, err | ||
} | ||
|
||
req.Header.Set("Content-Type", "application/json") | ||
hc := &http.Client{} | ||
res, err := hc.Do(req) | ||
if err != nil { | ||
return response, err | ||
} | ||
|
||
defer res.Body.Close() | ||
if res.StatusCode != http.StatusOK { | ||
errMsg, err := io.ReadAll(res.Body) | ||
if err != nil { | ||
return response, err | ||
} | ||
|
||
return response, errors.New(string(errMsg)) | ||
} | ||
|
||
dec := json.NewDecoder(res.Body) | ||
gqlRes := graphQLResponse[TRes]{} | ||
if err := dec.Decode(&gqlRes); err != nil { | ||
return response, err | ||
} | ||
|
||
if len(gqlRes.Errors) > 0 { | ||
return response, fmt.Errorf("graph ql query failed: %v", gqlRes.Errors) | ||
} | ||
|
||
return gqlRes.Data, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Copyright 2023 The Witness Contributors | ||
// | ||
// 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 api | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"encoding/json" | ||
"errors" | ||
"io" | ||
"net/http" | ||
"net/url" | ||
|
||
"github.com/testifysec/go-witness/dsse" | ||
) | ||
|
||
type StoreResponse struct { | ||
Gitoid string `json:"gitoid"` | ||
} | ||
|
||
func Store(ctx context.Context, baseUrl string, envelope dsse.Envelope) (StoreResponse, error) { | ||
buf := &bytes.Buffer{} | ||
enc := json.NewEncoder(buf) | ||
if err := enc.Encode(envelope); err != nil { | ||
return StoreResponse{}, err | ||
} | ||
|
||
return StoreWithReader(ctx, baseUrl, buf) | ||
} | ||
|
||
func StoreWithReader(ctx context.Context, baseUrl string, r io.Reader) (StoreResponse, error) { | ||
uploadPath, err := url.JoinPath(baseUrl, "upload") | ||
if err != nil { | ||
return StoreResponse{}, err | ||
} | ||
|
||
req, err := http.NewRequestWithContext(ctx, "POST", uploadPath, r) | ||
if err != nil { | ||
return StoreResponse{}, err | ||
} | ||
|
||
req.Header.Set("Content-Type", "application/json") | ||
hc := &http.Client{} | ||
resp, err := hc.Do(req) | ||
if err != nil { | ||
return StoreResponse{}, err | ||
} | ||
|
||
defer resp.Body.Close() | ||
bodyBytes, err := io.ReadAll(resp.Body) | ||
if err != nil { | ||
return StoreResponse{}, err | ||
} | ||
|
||
if resp.StatusCode != http.StatusOK { | ||
return StoreResponse{}, errors.New(string(bodyBytes)) | ||
} | ||
|
||
storeResp := StoreResponse{} | ||
if err := json.Unmarshal(bodyBytes, &storeResp); err != nil { | ||
return StoreResponse{}, err | ||
} | ||
|
||
return storeResp, nil | ||
} |