Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compat: v4 Acacia #3

Merged
merged 14 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ export GO111MODULE = on

all: lint test-unit

install:
@go install

.PHONY: install


###############################################################################
### Tools & Dependencies ###
###############################################################################
Expand Down
6 changes: 2 additions & 4 deletions api/data.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
package api

import (
"encoding/json"
"net/http"

"github.com/JackalLabs/sequoia/api/types"
"github.com/JackalLabs/sequoia/file_system"
"github.com/dgraph-io/badger/v4"
"github.com/rs/zerolog/log"
)

func DumpDBHandler(db *badger.DB) func(http.ResponseWriter, *http.Request) {
func DumpDBHandler(f *file_system.FileSystem) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, req *http.Request) {
dump, err := file_system.Dump(db)
dump, err := f.Dump()
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
Expand Down
156 changes: 93 additions & 63 deletions api/file_handler.go
Original file line number Diff line number Diff line change
@@ -1,115 +1,145 @@
package api

import (
"encoding/json"
"context"
"encoding/hex"
"fmt"
"net/http"
"strconv"
"time"

"github.com/JackalLabs/sequoia/proofs"

"github.com/desmos-labs/cosmos-go-wallet/wallet"

"github.com/JackalLabs/sequoia/api/types"
"github.com/JackalLabs/sequoia/file_system"
"github.com/JackalLabs/sequoia/queue"
"github.com/dgraph-io/badger/v4"
"github.com/gorilla/mux"
storageTypes "github.com/jackalLabs/canine-chain/v3/x/storage/types"
"github.com/rs/zerolog/log"
)

const MaxFileSize = 32 << 30
// const MaxFileSize = 32 << 30
const MaxFileSize = 0

func handleErr(err error, w http.ResponseWriter, code int) {
v := types.ErrorResponse{
Error: err.Error(),
}
w.WriteHeader(code)
err = json.NewEncoder(w).Encode(v)
if err != nil {
log.Error().Err(err)
}
}

func PostFileHandler(db *badger.DB, q *queue.Queue, address string) func(http.ResponseWriter, *http.Request) {
func PostFileHandler(fio *file_system.FileSystem, prover *proofs.Prover, wl *wallet.Wallet, chunkSize int64) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, req *http.Request) {
err := req.ParseMultipartForm(MaxFileSize) // MAX file size lives here
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
}
w.WriteHeader(http.StatusInternalServerError)
err = json.NewEncoder(w).Encode(v)
if err != nil {
log.Error().Err(err)
}
handleErr(fmt.Errorf("cannot parse form %w", err), w, http.StatusBadRequest)
return
}
sender := req.Form.Get("sender")
merkleString := req.Form.Get("merkle")
merkle, err := hex.DecodeString(merkleString)
if err != nil {
handleErr(fmt.Errorf("cannot parse merkle: %w", err), w, http.StatusBadRequest)
return
}

file, _, err := req.FormFile("file") // Retrieve the file from form data
startBlockString := req.Form.Get("start")
startBlock, err := strconv.ParseInt(startBlockString, 10, 64)
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
}
w.WriteHeader(http.StatusInternalServerError)
err = json.NewEncoder(w).Encode(v)
if err != nil {
log.Error().Err(err)
}
handleErr(fmt.Errorf("cannot parse start block: %w", err), w, http.StatusBadRequest)
return
}

merkle, fid, cid, size, err := file_system.WriteFile(db, file, sender, address, "")
file, fh, err := req.FormFile("file") // Retrieve the file from form data
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
}
w.WriteHeader(http.StatusInternalServerError)
err = json.NewEncoder(w).Encode(v)
if err != nil {
log.Error().Err(err)
}
handleErr(fmt.Errorf("cannot get file from form: %w", err), w, http.StatusBadRequest)
return
}

msg := storageTypes.NewMsgPostContract(
address,
sender,
fmt.Sprintf("%d", size),
fid,
merkle,
)
readSize := fh.Size
if readSize == 0 {
handleErr(fmt.Errorf("file cannot be empty"), w, http.StatusBadRequest)
return
}

if err := msg.ValidateBasic(); err != nil {
v := types.ErrorResponse{
Error: err.Error(),
}
w.WriteHeader(http.StatusInternalServerError)
err = json.NewEncoder(w).Encode(v)
if err != nil {
log.Error().Err(err)
}
cl := storageTypes.NewQueryClient(wl.Client.GRPCConn)
queryParams := storageTypes.QueryFile{
Merkle: merkle,
Owner: sender,
Start: startBlock,
}
res, err := cl.File(context.Background(), &queryParams)
if err != nil {
handleErr(fmt.Errorf("failed to find file on chain: %w", err), w, http.StatusInternalServerError)
return
}

m, wg := q.Add(msg)
f := res.File

wg.Wait() // wait for queue to process
if readSize != f.FileSize {
handleErr(fmt.Errorf("cannot accept form file that doesn't match the chain data %d != %d", readSize, f.FileSize), w, http.StatusInternalServerError)
return
}

if m.Error() != nil {
v := types.ErrorResponse{
Error: m.Error().Error(),
}
w.WriteHeader(http.StatusInternalServerError)
err = json.NewEncoder(w).Encode(v)
if err != nil {
log.Error().Err(err)
if hex.EncodeToString(f.Merkle) != merkleString {
handleErr(fmt.Errorf("cannot accept file that doesn't match the chain data %x != %x", f.Merkle, merkle), w, http.StatusInternalServerError)
return
}

if len(f.Proofs) == int(f.MaxProofs) {
if !f.ContainsProver(wl.AccAddress()) {
handleErr(fmt.Errorf("cannot accept file that I cannot claim"), w, http.StatusInternalServerError)
return
}
}

size, err := fio.WriteFile(file, merkle, sender, startBlock, wl.AccAddress(), chunkSize)
if err != nil {
handleErr(fmt.Errorf("failed to write file to disk: %w", err), w, http.StatusInternalServerError)
return
}

if int64(size) != f.FileSize {
handleErr(fmt.Errorf("cannot accept file that doesn't match the chain data %d != %d", int64(size), f.FileSize), w, http.StatusInternalServerError)
return
}

resp := types.UploadResponse{
CID: cid,
FID: fid,
Merkle: merkle,
Owner: sender,
Start: startBlock,
}

err = json.NewEncoder(w).Encode(resp)
if err != nil {
log.Error().Err(err)
log.Error().Err(fmt.Errorf("can't encode json : %w", err))
}

_ = prover.PostProof(merkle, sender, startBlock, startBlock, time.Now())
}
}

func DownloadFileHandler(db *badger.DB) func(http.ResponseWriter, *http.Request) {
func DownloadFileHandler(f *file_system.FileSystem) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, req *http.Request) {
vars := mux.Vars(req)

fid := vars["fid"]
merkleString := vars["merkle"]
merkle, err := hex.DecodeString(merkleString)
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
}
w.WriteHeader(http.StatusInternalServerError)
_ = json.NewEncoder(w).Encode(v)

}

file, err := file_system.GetFileDataByFID(db, fid)
file, err := f.GetFileDataByMerkle(merkle)
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
Expand Down
28 changes: 16 additions & 12 deletions api/files.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
package api

import (
"encoding/json"
"fmt"
"net/http"

"github.com/JackalLabs/sequoia/api/types"
"github.com/JackalLabs/sequoia/file_system"
"github.com/dgraph-io/badger/v4"
"github.com/rs/zerolog/log"
)

func ListFilesHandler(db *badger.DB) func(http.ResponseWriter, *http.Request) {
func ListFilesHandler(f *file_system.FileSystem) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, req *http.Request) {
files, err := file_system.ListFiles(db)
merkles, _, _, err := f.ListFiles()
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
Expand All @@ -25,9 +24,14 @@ func ListFilesHandler(db *badger.DB) func(http.ResponseWriter, *http.Request) {
return
}

mm := make([]string, len(merkles))
for i, merkle := range merkles {
mm[i] = fmt.Sprintf("%x", merkle)
}

f := types.ListResponse{
Files: files,
Count: len(files),
Files: mm,
Count: len(mm),
}

err = json.NewEncoder(w).Encode(f)
Expand All @@ -37,9 +41,9 @@ func ListFilesHandler(db *badger.DB) func(http.ResponseWriter, *http.Request) {
}
}

func LegacyListFilesHandler(db *badger.DB) func(http.ResponseWriter, *http.Request) {
func LegacyListFilesHandler(f *file_system.FileSystem) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, req *http.Request) {
files, err := file_system.ListFiles(db)
merkles, owners, _, err := f.ListFiles()
if err != nil {
v := types.ErrorResponse{
Error: err.Error(),
Expand All @@ -52,12 +56,12 @@ func LegacyListFilesHandler(db *badger.DB) func(http.ResponseWriter, *http.Reque
return
}

cids := make([]types.LegacyAPIListValue, len(files))
cids := make([]types.LegacyAPIListValue, len(merkles))

for i, file := range files {
for i, m := range merkles {
cids[i] = types.LegacyAPIListValue{
CID: file,
FID: "",
CID: fmt.Sprintf("%x", m),
FID: owners[i],
}
}

Expand Down
1 change: 0 additions & 1 deletion api/index.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package api

import (
"encoding/json"
"net/http"

"github.com/JackalLabs/sequoia/api/types"
Expand Down
41 changes: 30 additions & 11 deletions api/server.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
package api

import (
"errors"
"fmt"
"net/http"
"time"

"github.com/JackalLabs/sequoia/queue"
"github.com/JackalLabs/sequoia/file_system"

"github.com/prometheus/client_golang/prometheus/promhttp"

"github.com/JackalLabs/sequoia/proofs"
"github.com/rs/zerolog/log"

"github.com/desmos-labs/cosmos-go-wallet/wallet"
"github.com/dgraph-io/badger/v4"
"github.com/gorilla/mux"
)
import jsoniter "github.com/json-iterator/go"

var json = jsoniter.ConfigCompatibleWithStandardLibrary

type API struct {
port int64
srv *http.Server
}

func NewAPI(port int64) *API {
Expand All @@ -21,29 +31,38 @@ func NewAPI(port int64) *API {
}
}

func (a *API) Serve(db *badger.DB, q *queue.Queue, wallet *wallet.Wallet) {
func (a *API) Close() error {
return a.srv.Close()
}

func (a *API) Serve(f *file_system.FileSystem, p *proofs.Prover, wallet *wallet.Wallet, chunkSize int64) {
r := mux.NewRouter()
r.HandleFunc("/", IndexHandler(wallet.AccAddress()))
r.HandleFunc("/upload", PostFileHandler(db, q, wallet.AccAddress()))
r.HandleFunc("/download/{fid}", DownloadFileHandler(db))
r.HandleFunc("/upload", PostFileHandler(f, p, wallet, chunkSize))
r.HandleFunc("/download/{fid}", DownloadFileHandler(f))

r.HandleFunc("/list", ListFilesHandler(db))
r.HandleFunc("/api/data/fids", LegacyListFilesHandler(db))
r.HandleFunc("/list", ListFilesHandler(f))
r.HandleFunc("/api/data/fids", LegacyListFilesHandler(f))

r.HandleFunc("/dump", DumpDBHandler(db))
r.HandleFunc("/dump", DumpDBHandler(f))

r.HandleFunc("/version", VersionHandler(wallet))

srv := &http.Server{
r.Handle("/metrics", promhttp.Handler())

a.srv = &http.Server{
Handler: r,
Addr: fmt.Sprintf("0.0.0.0:%d", a.port),
// Good practice: enforce timeouts for servers you create!
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}

err := srv.ListenAndServe()
log.Logger.Info().Msg(fmt.Sprintf("Sequoia API now listening on %s", a.srv.Addr))
err := a.srv.ListenAndServe()
if err != nil {
panic(err)
if !errors.Is(err, http.ErrServerClosed) {
panic(err)
}
}
}
Loading
Loading