* feat(backend): implemented azure blob storage support * feat(backend): added azure implementation to backend services * feat(backend): added azure blob storage support to chalice service * fix(backend): removed prev version of s3 * feat(backend): moved azure support to ee subfolder * feat(backend): prepared ee code for new utils.objects package * feat(backend): added missed modules to go.mod * feat(backend): added missed modules to go.sum * feat(backend): go mod tidy * feat(backend): temporary made s3 vars are not required * feat(backend): added azure lib to ee chalice * feat(api): changed azure env var name * feat(api): added new object store and extra methods to chalice ee * fix(api): added azure blob lib to alerts * fix(api): fixed incorrect call in sessions_devtool * fix(crons): added azure blob storage library to requirements list * chore(build): Error message for not providing flag. Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * feat(backend): removed ios headers and object store for ios messages * feat(backend): object config refactoring * chore(helm): Update BUCKET_NAME * fix(backend): removed object storage usage in http * feat(backend): added debug logs to azure upload method * fix(backend): fixed empty folder issue * fix(backend): removed extra debug log * chore(helm): Adding global variables for crons * chore(helm): Remove clickhouse resource limit Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * fix(backend): removed assets debug log * feat(api): use ABC class instead of empty interface * feat(api): renamed helpers to generators * feat(api): changed prep/clean dev scripts * feat(api): changed name obj_store -> StorageClient * feat(api): some changes after code review * fix(api): removed unnecesery packages in oss api * feat(backend): moved azure implementation to ee folder --------- Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> Co-authored-by: rjshrjndrn <rjshrjndrn@gmail.com>
77 lines
3.3 KiB
Modula-2
77 lines
3.3 KiB
Modula-2
module openreplay/backend
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
cloud.google.com/go/logging v1.4.2
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0
|
|
github.com/ClickHouse/clickhouse-go/v2 v2.2.0
|
|
github.com/Masterminds/semver v1.5.0
|
|
github.com/andybalholm/brotli v1.0.5
|
|
github.com/aws/aws-sdk-go v1.44.98
|
|
github.com/btcsuite/btcutil v1.0.2
|
|
github.com/confluentinc/confluent-kafka-go v1.9.2
|
|
github.com/elastic/go-elasticsearch/v7 v7.13.1
|
|
github.com/go-redis/redis v6.15.9+incompatible
|
|
github.com/google/uuid v1.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/jackc/pgconn v1.6.0
|
|
github.com/jackc/pgerrcode v0.0.0-20201024163028-a0d42d470451
|
|
github.com/jackc/pgtype v1.3.0
|
|
github.com/jackc/pgx/v4 v4.6.0
|
|
github.com/klauspost/compress v1.15.15
|
|
github.com/klauspost/pgzip v1.2.5
|
|
github.com/oschwald/maxminddb-golang v1.7.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.12.1
|
|
github.com/sethvargo/go-envconfig v0.7.0
|
|
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce
|
|
github.com/ua-parser/uap-go v0.0.0-20200325213135-e1c09f13e2fe
|
|
golang.org/x/net v0.8.0
|
|
google.golang.org/api v0.81.0
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.100.2 // indirect
|
|
cloud.google.com/go/compute v1.6.1 // indirect
|
|
cloud.google.com/go/iam v0.3.0 // indirect
|
|
cloud.google.com/go/storage v1.14.0 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.4.0 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.2 // indirect
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.2.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.0.2 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8 // indirect
|
|
github.com/jackc/puddle v1.2.2-0.20220404125616-4e959849469a // indirect
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/paulmach/orb v0.7.1 // indirect
|
|
github.com/pierrec/lz4/v4 v4.1.15 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
github.com/shopspring/decimal v1.3.1 // indirect
|
|
github.com/stretchr/testify v1.8.2 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
go.opentelemetry.io/otel v1.7.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.7.0 // indirect
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
|
|
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad // indirect
|
|
google.golang.org/grpc v1.47.0 // indirect
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|