Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
bec347d871
|
|||
|
04e0fcdc64
|
|||
|
1c3dcd1cbe
|
|||
|
4fa656c614
|
|||
|
c54adabf5e
|
|||
|
f22f9faf4b
|
|||
|
23c65dcd04
|
|||
|
bddc2d2bdd
|
|||
|
c3eabd4d76
|
|||
|
49150af2fa
|
|||
|
4e55bb2d27
|
|||
|
e5499c7c0d
|
|||
|
23d67dccfe
|
|||
|
0b09b24301
|
|||
|
cc1e40921e
|
|||
|
9cf66797da
|
|||
|
e1776d0c30
|
|||
|
caa69574dd
|
|||
|
b7fe72b613
|
|||
|
50024737a4
|
|||
|
211d6251f4
|
|||
|
3f8ecc0cc8
|
@@ -1,27 +0,0 @@
|
|||||||
name: Build Proto
|
|
||||||
description: Install buf CLI, run buf lint and buf build
|
|
||||||
inputs:
|
|
||||||
buf_ref:
|
|
||||||
description: Git ref of actions/buf-bin to checkout
|
|
||||||
required: false
|
|
||||||
default: "main"
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Checkout Buf CLI
|
|
||||||
uses: https://git.darano.ir/actions/checkout@v5
|
|
||||||
with:
|
|
||||||
repository: actions/buf-bin
|
|
||||||
ref: ${{ inputs.buf_ref }}
|
|
||||||
path: buf-bin
|
|
||||||
- name: Setup Buf CLI
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
cp buf-bin/buf /usr/local/bin/buf
|
|
||||||
chmod +x /usr/local/bin/buf
|
|
||||||
- name: Lint
|
|
||||||
shell: bash
|
|
||||||
run: buf lint
|
|
||||||
- name: Build
|
|
||||||
shell: bash
|
|
||||||
run: buf build
|
|
||||||
@@ -1,151 +0,0 @@
|
|||||||
name: Setup package mirrors
|
|
||||||
description: Benchmark package mirrors and export the fastest reachable registry for each ecosystem
|
|
||||||
inputs:
|
|
||||||
npm_mirrors:
|
|
||||||
description: Newline-separated npm-compatible registries
|
|
||||||
required: false
|
|
||||||
default: |
|
|
||||||
https://npm.reg.darano.ir/
|
|
||||||
pypi_mirrors:
|
|
||||||
required: false
|
|
||||||
default: |
|
|
||||||
https://package-mirror.liara.ir/repository/pypi/simple
|
|
||||||
https://pypi.reg.darano.ir
|
|
||||||
https://pypi-iran.ir/simple/
|
|
||||||
https://pypi.org/simple/
|
|
||||||
go_mirrors:
|
|
||||||
description: Newline-separated Go module proxies
|
|
||||||
required: false
|
|
||||||
default: |
|
|
||||||
https://go.devneeds.ir/
|
|
||||||
https://package-mirror.liara.ir/repository/go/
|
|
||||||
https://go.reg.darano.ir/
|
|
||||||
https://proxy.golang.org/
|
|
||||||
debian_mirrors:
|
|
||||||
description: Newline-separated Debian package repository base URLs
|
|
||||||
required: false
|
|
||||||
default: |
|
|
||||||
http://repo.iut.ac.ir/debian/
|
|
||||||
http://deb.debian.org/debian/
|
|
||||||
connect_timeout:
|
|
||||||
description: curl connection timeout in seconds
|
|
||||||
required: false
|
|
||||||
default: "3"
|
|
||||||
max_time:
|
|
||||||
description: curl request timeout in seconds
|
|
||||||
required: false
|
|
||||||
default: "10"
|
|
||||||
outputs:
|
|
||||||
npm_registry:
|
|
||||||
description: Fastest reachable npm registry
|
|
||||||
value: ${{ steps.select.outputs.npm_registry }}
|
|
||||||
pypi_index:
|
|
||||||
description: Fastest reachable Python package index
|
|
||||||
value: ${{ steps.select.outputs.pypi_index }}
|
|
||||||
go_proxy:
|
|
||||||
description: Fastest reachable Go module proxy
|
|
||||||
value: ${{ steps.select.outputs.go_proxy }}
|
|
||||||
debian_mirror:
|
|
||||||
description: Fastest reachable Debian package repository
|
|
||||||
value: ${{ steps.select.outputs.debian_mirror }}
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Rate mirrors and export package environments
|
|
||||||
id: select
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
NPM_MIRRORS: ${{ inputs.npm_mirrors }}
|
|
||||||
PYPI_MIRRORS: ${{ inputs.pypi_mirrors }}
|
|
||||||
GO_MIRRORS: ${{ inputs.go_mirrors }}
|
|
||||||
DEBIAN_MIRRORS: ${{ inputs.debian_mirrors }}
|
|
||||||
CONNECT_TIMEOUT: ${{ inputs.connect_timeout }}
|
|
||||||
MAX_TIME: ${{ inputs.max_time }}
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
if [[ ! "$CONNECT_TIMEOUT" =~ ^[0-9]+([.][0-9]+)?$ ]] ||
|
|
||||||
[[ ! "$MAX_TIME" =~ ^[0-9]+([.][0-9]+)?$ ]]; then
|
|
||||||
echo "Mirror timeouts must be positive numbers" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
select_fastest() {
|
|
||||||
local ecosystem="$1"
|
|
||||||
local mirrors="$2"
|
|
||||||
local scores mirror result status duration fallback
|
|
||||||
scores="$(mktemp)"
|
|
||||||
fallback=""
|
|
||||||
|
|
||||||
while IFS= read -r mirror; do
|
|
||||||
mirror="$(printf '%s' "$mirror" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
|
|
||||||
[[ -z "$mirror" || "$mirror" == \#* ]] && continue
|
|
||||||
|
|
||||||
if [[ ! "$mirror" =~ ^https?:// ]]; then
|
|
||||||
echo "[$ecosystem] skipped invalid URL: $mirror" >&2
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
[[ -z "$fallback" ]] && fallback="$mirror"
|
|
||||||
|
|
||||||
if result="$(curl \
|
|
||||||
--location \
|
|
||||||
--silent \
|
|
||||||
--show-error \
|
|
||||||
--output /dev/null \
|
|
||||||
--connect-timeout "$CONNECT_TIMEOUT" \
|
|
||||||
--max-time "$MAX_TIME" \
|
|
||||||
--write-out '%{http_code} %{time_total}' \
|
|
||||||
"$mirror" 2>/dev/null)"; then
|
|
||||||
read -r status duration <<< "$result"
|
|
||||||
if [[ "$status" =~ ^[0-9]{3}$ ]] &&
|
|
||||||
(((10#$status >= 200 && 10#$status < 400) || 10#$status == 404)) &&
|
|
||||||
[[ "$duration" =~ ^[0-9]+([.][0-9]+)?$ ]]; then
|
|
||||||
printf '%s\t%s\t%s\n' "$duration" "$status" "$mirror" >> "$scores"
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "[$ecosystem] unavailable: $mirror" >&2
|
|
||||||
done <<< "$mirrors"
|
|
||||||
|
|
||||||
if [[ ! -s "$scores" ]]; then
|
|
||||||
rm -f "$scores"
|
|
||||||
if [[ -z "$fallback" ]]; then
|
|
||||||
echo "No valid $ecosystem mirror was configured" >&2
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
echo "[$ecosystem] no mirror responded; falling back to $fallback" >&2
|
|
||||||
printf '%s\n' "$fallback"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "[$ecosystem] mirror ranking (seconds, HTTP status, URL):" >&2
|
|
||||||
sort -n -k1,1 "$scores" >&2
|
|
||||||
sort -n -k1,1 "$scores" | head -n 1 | cut -f3-
|
|
||||||
rm -f "$scores"
|
|
||||||
}
|
|
||||||
|
|
||||||
npm_registry="$(select_fastest npm "$NPM_MIRRORS")"
|
|
||||||
pypi_index="$(select_fastest pypi "$PYPI_MIRRORS")"
|
|
||||||
go_proxy="$(select_fastest go "$GO_MIRRORS")"
|
|
||||||
debian_mirror="$(select_fastest debian "$DEBIAN_MIRRORS")"
|
|
||||||
|
|
||||||
{
|
|
||||||
echo "NPM_CONFIG_REGISTRY=$npm_registry"
|
|
||||||
echo "npm_config_registry=$npm_registry"
|
|
||||||
echo "COREPACK_NPM_REGISTRY=$npm_registry"
|
|
||||||
echo "YARN_REGISTRY=$npm_registry"
|
|
||||||
echo "PNPM_CONFIG_REGISTRY=$npm_registry"
|
|
||||||
echo "BUN_CONFIG_REGISTRY=$npm_registry"
|
|
||||||
echo "PIP_INDEX_URL=$pypi_index"
|
|
||||||
echo "UV_DEFAULT_INDEX=$pypi_index"
|
|
||||||
echo "GOPROXY=$go_proxy"
|
|
||||||
echo "DEBIAN_MIRROR=$debian_mirror"
|
|
||||||
} >> "$GITHUB_ENV"
|
|
||||||
|
|
||||||
{
|
|
||||||
echo "npm_registry=$npm_registry"
|
|
||||||
echo "pypi_index=$pypi_index"
|
|
||||||
echo "go_proxy=$go_proxy"
|
|
||||||
echo "debian_mirror=$debian_mirror"
|
|
||||||
} >> "$GITHUB_OUTPUT"
|
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
name: Buf CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
|
jobs:
|
||||||
|
buf:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
echo ${{ gitea.action }}
|
||||||
|
echo ${{ gitea.event_name }}
|
||||||
|
echo ${{ gitea.ref }}
|
||||||
|
echo ${{ gitea.base_ref }}
|
||||||
|
echo ${{ gitea.ref_name }}
|
||||||
|
echo ${{ gitea.repository }}
|
||||||
|
echo ${{ gitea.server_url }}
|
||||||
|
echo
|
||||||
|
echo ${{ gitea.api_url }}
|
||||||
|
|
||||||
|
- uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version: '>=1.18.0'
|
||||||
|
- uses: bufbuild/buf-setup-action@v1.47.2
|
||||||
|
- run: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||||||
|
- run: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
|
||||||
|
- run: npm install --save-dev
|
||||||
|
- run: buf --version
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
token: ${{ gitea.token }}
|
||||||
|
path: ./
|
||||||
|
- run: npx buf generate
|
||||||
|
- run: |
|
||||||
|
if [ -z ${{ gitea.ref }} ]; then
|
||||||
|
mkdir .res
|
||||||
|
for out in go ts docs; do
|
||||||
|
tar czf .res/${out}.tar.gz ./stub/${out}/ .
|
||||||
|
curl --user gitea:${{ gitea.token }} \
|
||||||
|
--upload-file .res/${out}.tar.gz \
|
||||||
|
${{ gitea.api_url }}/packages/kahroba/generic/proto/${{ gitea.ref }}/${out}.tar.gz
|
||||||
|
done
|
||||||
|
fi
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
name: CI/CD Stage
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- stage
|
|
||||||
jobs:
|
|
||||||
stage:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Git
|
|
||||||
uses: https://git.darano.ir/actions/checkout@v5
|
|
||||||
with:
|
|
||||||
token: ${{ gitea.token }}
|
|
||||||
path: ./
|
|
||||||
submodules: recursive
|
|
||||||
- name: Checkout Buf CLI
|
|
||||||
uses: https://git.darano.ir/actions/checkout@v5
|
|
||||||
with:
|
|
||||||
repository: actions/buf-bin
|
|
||||||
ref: main
|
|
||||||
path: buf-bin
|
|
||||||
- name: Setup package mirrors
|
|
||||||
uses: ./.gitea/actions/setup-mirrors
|
|
||||||
- name: Setup Buf CLI
|
|
||||||
run: |
|
|
||||||
cp buf-bin/buf /usr/local/bin/buf
|
|
||||||
chmod +x /usr/local/bin/buf
|
|
||||||
- name: Lint
|
|
||||||
run: buf lint
|
|
||||||
- name: Build
|
|
||||||
run: buf build
|
|
||||||
- name: Notify Telegram
|
|
||||||
if: always()
|
|
||||||
uses: ./.gitea/actions/notify-telegram
|
|
||||||
with:
|
|
||||||
bot_token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
|
|
||||||
chat_id: ${{ secrets.TELEGRAM_CHAT_ID }}
|
|
||||||
status: ${{ job.status }}
|
|
||||||
repository: ${{ gitea.repository }}
|
|
||||||
sha: ${{ gitea.sha }}
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
.idea
|
||||||
|
gen/go
|
||||||
|
stub
|
||||||
|
node_modules
|
||||||
|
yarn.lock
|
||||||
|
package-lock.json
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# Protobuf with fangs
|
||||||
|
|
||||||
|

|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package authorization;
|
package auth.v1;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Internal
|
Internal
|
||||||
@@ -19,7 +19,7 @@ message InternalRoute {
|
|||||||
message Role {
|
message Role {
|
||||||
int64 id = 1;
|
int64 id = 1;
|
||||||
string title = 2;
|
string title = 2;
|
||||||
string Key = 3;
|
string key = 3;
|
||||||
string type = 4;
|
string type = 4;
|
||||||
}
|
}
|
||||||
message Permission {
|
message Permission {
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package authorization;
|
package auth.v1;
|
||||||
|
|
||||||
import "authorization_message.proto";
|
import "auth/v1/msg.proto";
|
||||||
import "base_message.proto";
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
service AuthorizationService {
|
service AuthorizationService {
|
||||||
rpc InternalAuthorizationDeleteCache(base.Empty) returns (base.StatusRes);
|
rpc InternalAuthorizationDeleteCache(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
rpc InternalInitRoutes(InternalInitRoutesReq) returns (base.StatusRes) {}
|
rpc InternalInitRoutes(InternalInitRoutesReq) returns (base.v1.StatusRes) {}
|
||||||
rpc InternalGetUserIdentityBasic(GetUserReq) returns (UserIdentityBasic) {}
|
rpc InternalGetUserIdentityBasic(GetUserReq) returns (UserIdentityBasic) {}
|
||||||
rpc InternalGetUserIAM(GetUserReq) returns (InternalIAM) {}
|
rpc InternalGetUserIAM(GetUserReq) returns (InternalIAM) {}
|
||||||
rpc CheckIAM(CheckIAMReq) returns (InternalIAM) {}
|
rpc CheckIAM(CheckIAMReq) returns (InternalIAM) {}
|
||||||
@@ -20,19 +20,19 @@ service AuthorizationService {
|
|||||||
rpc UserGetUserPermission(InternalIAM) returns (PermissionList) {}
|
rpc UserGetUserPermission(InternalIAM) returns (PermissionList) {}
|
||||||
|
|
||||||
rpc UserGetIdentity(InternalIAM) returns (Identity) {}
|
rpc UserGetIdentity(InternalIAM) returns (Identity) {}
|
||||||
rpc UserUpdateIdentity(UserUpdateIdentityReq) returns (base.StatusRes) {}
|
rpc UserUpdateIdentity(UserUpdateIdentityReq) returns (base.v1.StatusRes) {}
|
||||||
|
|
||||||
rpc UserGetBankInfoList(ReqWithIAMAndParams) returns (BankInfoList) {}
|
rpc UserGetBankInfoList(ReqWithIAMAndParams) returns (BankInfoList) {}
|
||||||
rpc UserUpdateBankInfo(UserUpdateBankInfoReq) returns (base.StatusRes) {}
|
rpc UserUpdateBankInfo(UserUpdateBankInfoReq) returns (base.v1.StatusRes) {}
|
||||||
rpc UserRemoveBankInfo(IdReqWithIAM) returns (base.StatusRes) {}
|
rpc UserRemoveBankInfo(IdReqWithIAM) returns (base.v1.StatusRes) {}
|
||||||
|
|
||||||
rpc GetUser(GetUserReq) returns (User) {}
|
rpc GetUser(GetUserReq) returns (User) {}
|
||||||
|
|
||||||
// Two Factor Authentication
|
// Two Factor Authentication
|
||||||
// For now it's only SMS-OTP - later will be Email-OTP or other methods can be
|
// For now it's only SMS-OTP - later will be Email-OTP or other methods can be
|
||||||
// added For HMAC-OTP there won't be a need to call this api
|
// added For HMAC-OTP there won't be a need to call this api
|
||||||
rpc SendTFAReq(TFAReq) returns (base.StatusRes) {}
|
rpc SendTFAReq(TFAReq) returns (base.v1.StatusRes) {}
|
||||||
// For HMAC-OTP an initialization step must be added to exchange keys
|
// For HMAC-OTP an initialization step must be added to exchange keys
|
||||||
rpc InitTFAReq(InternalIAM) returns (TFAExRes) {}
|
rpc InitTFAReq(InternalIAM) returns (TFAExRes) {}
|
||||||
rpc CheckTFACode(CheckTFAReq) returns (base.StatusRes) {}
|
rpc CheckTFACode(CheckTFAReq) returns (base.v1.StatusRes) {}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package base;
|
package base.v1;
|
||||||
|
|
||||||
message Empty {}
|
message Empty {}
|
||||||
|
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
version: v2
|
||||||
|
clean: true
|
||||||
|
managed:
|
||||||
|
enabled: true
|
||||||
|
override:
|
||||||
|
- file_option: go_package_prefix
|
||||||
|
# FIXME: Change this to you're go.mod package name
|
||||||
|
value: github.com/nfel
|
||||||
|
plugins:
|
||||||
|
# NOTE: golang
|
||||||
|
# - remote: buf.build/grpc/go
|
||||||
|
# NOTE: grpc
|
||||||
|
# go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
|
||||||
|
- local: protoc-gen-go-grpc
|
||||||
|
out: stub/go
|
||||||
|
# NOTE: PB files
|
||||||
|
# go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
|
||||||
|
- local: protoc-gen-go
|
||||||
|
# - remote: buf.build/protocolbuffers/go:v1.30.0
|
||||||
|
out: stub/go
|
||||||
|
# NOTE: doc
|
||||||
|
# - local: protoc-gen-doc
|
||||||
|
# opt: html,index.html,source_relative
|
||||||
|
# out: stub/doc
|
||||||
|
# # NOTE: Gateway
|
||||||
|
# # - remote: buf.build/grpc-ecosystem/gateway:v2.16.2
|
||||||
|
# - local: protoc-gen-grpc-gateway
|
||||||
|
# out: stub/go
|
||||||
|
# # NOTE: SWAGGER json files
|
||||||
|
# # - remote: buf.build/grpc-ecosystem/openapiv2:v2.16.2
|
||||||
|
# - local: protoc-gen-openapiv2
|
||||||
|
# opt: import_prefix=github.com/nfel
|
||||||
|
# out: stub/go
|
||||||
|
# - local: protoc-gen-go-gin
|
||||||
|
# opt:
|
||||||
|
# # - plugin=handler
|
||||||
|
# # - plugin=service
|
||||||
|
# # - plugin=mix
|
||||||
|
# out: stub/go
|
||||||
|
# NOTE: Typescript
|
||||||
|
# - remote: buf.build/bufbuild/es:v2.2.2
|
||||||
|
# # opt: import_prefix=github.com/nfel
|
||||||
|
# out: stub/ts
|
||||||
|
- local: protoc-gen-es
|
||||||
|
out: stub/ts
|
||||||
|
opt: target=ts
|
||||||
|
|
||||||
|
# - local: protobuf-ts
|
||||||
|
# # opt: import_prefix=github.com/nfel
|
||||||
|
# out: stub/ts
|
||||||
|
inputs:
|
||||||
|
- directory: ./
|
||||||
|
# - git_repo: ssh://git@5.34.204.11/Kahroba/proto
|
||||||
|
# branch: v2
|
||||||
|
|
||||||
@@ -1,12 +1,14 @@
|
|||||||
---
|
---
|
||||||
version: v1
|
version: v2
|
||||||
|
breaking:
|
||||||
|
use:
|
||||||
|
- FILE
|
||||||
|
- PACKAGE
|
||||||
lint:
|
lint:
|
||||||
use:
|
use:
|
||||||
- DEFAULT
|
- BASIC
|
||||||
# disallow_comment_ignores: false
|
- PACKAGE_SAME_GO_PACKAGE
|
||||||
# # The default behavior of this key has changed from v1
|
- PACKAGE_NO_IMPORT_CYCLE
|
||||||
# enum_zero_value_suffix: _UNSPECIFIED
|
- IMPORT_USED
|
||||||
# rpc_allow_same_request_response: true
|
modules:
|
||||||
# rpc_allow_google_protobuf_empty_requests: false
|
- path: ./
|
||||||
# rpc_allow_google_protobuf_empty_responses: false
|
|
||||||
# service_suffix: Service
|
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"devDependencies": {
|
||||||
|
"@bufbuild/buf": "^1.47.2",
|
||||||
|
"@bufbuild/protobuf": "^2.2.2",
|
||||||
|
"@bufbuild/protoc-gen-es": "^2.2.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
version: v2
|
||||||
|
clean: true
|
||||||
|
managed:
|
||||||
|
enabled: true
|
||||||
|
override:
|
||||||
|
- file_option: go_package_prefix
|
||||||
|
value: <pkg_name>
|
||||||
|
plugins:
|
||||||
|
- remote: buf.build/grpc/go
|
||||||
|
out: stub/go
|
||||||
|
- remote: buf.build/protocolbuffers/go:v1.30.0
|
||||||
|
out: stub/go
|
||||||
|
- local: protoc-gen-doc
|
||||||
|
opt: html,index.html,source_relative
|
||||||
|
out: stub/doc
|
||||||
|
- local: protoc-gen-grpc-gateway
|
||||||
|
out: stub/go
|
||||||
|
- local: protoc-gen-openapiv2
|
||||||
|
out: stub/go
|
||||||
|
inputs:
|
||||||
|
- git_repo: ssh://git@5.34.204.11/Kahroba/proto
|
||||||
|
branch: v2
|
||||||
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package wallet;
|
|
||||||
|
|
||||||
import "authorization_message.proto";
|
|
||||||
import "base_message.proto";
|
|
||||||
import "wallet_message.proto";
|
|
||||||
|
|
||||||
service WalletService {
|
|
||||||
rpc InternalWalletDeleteCache(base.Empty) returns (base.StatusRes);
|
|
||||||
rpc InternalCreateFederation(authorization.InternalIAM) returns (base.StatusRes);
|
|
||||||
|
|
||||||
rpc AdminGetFederation(GetFederationReq) returns (Federation);
|
|
||||||
rpc UserGetFederation(authorization.InternalIAM) returns (Federation);
|
|
||||||
|
|
||||||
rpc UserGetAssetList(base.Empty) returns (AssetList);
|
|
||||||
rpc AdminGetAssetList(base.Empty) returns (AssetList);
|
|
||||||
rpc GetAsset(GetAssetReq) returns (Asset);
|
|
||||||
|
|
||||||
rpc UserInitWallet(UserInitWalletReq) returns (base.StatusRes);
|
|
||||||
rpc UserGetWalletList(authorization.InternalIAM) returns (WalletList);
|
|
||||||
rpc UserTransferAsset(UserTransferAssetReq) returns (UserTransferRes);
|
|
||||||
|
|
||||||
rpc UserGetTransactionList(UserGetTransactionListReq) returns (TransactionList);
|
|
||||||
|
|
||||||
rpc SaleGetToken(SaleGetTokenReq) returns (SaleGetTokenRes);
|
|
||||||
rpc SaleConfirm(SaleConfirmReq) returns (SaleConfirmRes);
|
|
||||||
rpc AdminManualSaleDeposit(SaleManualReq) returns (base.StatusRes);
|
|
||||||
|
|
||||||
// BNPL
|
|
||||||
rpc GetBNPLList(base.Empty) returns (BNPLList);
|
|
||||||
rpc GetBNPLInfo(base.IdReq) returns (BNPLInfo);
|
|
||||||
rpc GetUserBNPLInfo(GetUserBNPLInfoReq) returns (UserBNPLResp);
|
|
||||||
rpc SubmitBNPLForm(UserBNPLReq) returns (base.StatusRes);
|
|
||||||
rpc UpdateBNPL(UserBNPLReq) returns (base.StatusRes);
|
|
||||||
rpc CancleBNPL(authorization.IdReqWithIAM) returns (base.StatusRes);
|
|
||||||
|
|
||||||
// Redeem Token
|
|
||||||
rpc CalculateRedeemToken(RedeemTokenReq) returns (CalculateRedeemTokenRes);
|
|
||||||
rpc RedeemToken(RedeemTokenReq) returns (base.StatusRes);
|
|
||||||
rpc RedeemTokenList(authorization.ReqWithIAMAndParams) returns (RedeemTokenResList);
|
|
||||||
}
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package wallet;
|
package wallet.v1;
|
||||||
|
|
||||||
import "authorization_message.proto";
|
import "auth/v1/msg.proto";
|
||||||
import "base_message.proto";
|
import "base/v1/msg.proto";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
INTERNAL DATA
|
INTERNAL DATA
|
||||||
@@ -109,17 +109,17 @@ message PropertyMeta {
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
message GetUserBNPLInfoReq {
|
message GetUserBNPLInfoReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
base.IdReq id = 2;
|
base.v1.IdReq id = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum BNPLPaymentsStatus {
|
enum BNPLPaymentsStatus {
|
||||||
PENDING = 0;
|
PENDING_PAYMENT = 0;
|
||||||
PAYED = 1;
|
PAYED = 1;
|
||||||
OVER_DUE = 2;
|
OVER_DUE = 2;
|
||||||
NOT_STARTED = 3;
|
NOT_STARTED = 3;
|
||||||
NOT_YET_DUE = 4;
|
NOT_YET_DUE = 4;
|
||||||
CANCLED = 5;
|
CANCELED = 5;
|
||||||
}
|
}
|
||||||
message BNPLPayments {
|
message BNPLPayments {
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
@@ -140,8 +140,8 @@ message UserBNPLResp {
|
|||||||
optional bool accepted_terms = 6;
|
optional bool accepted_terms = 6;
|
||||||
repeated BNPLPayments payments = 7;
|
repeated BNPLPayments payments = 7;
|
||||||
optional string employee_id = 8;
|
optional string employee_id = 8;
|
||||||
optional authorization.Company company = 10;
|
optional auth.v1.Company company = 10;
|
||||||
authorization.InternalIAM iam = 11;
|
auth.v1.InternalIAM iam = 11;
|
||||||
optional string updated_at = 12;
|
optional string updated_at = 12;
|
||||||
optional string created_at = 13;
|
optional string created_at = 13;
|
||||||
Asset selected_asset = 14;
|
Asset selected_asset = 14;
|
||||||
@@ -150,7 +150,7 @@ message UserBNPLResp {
|
|||||||
message UserBNPLReq {
|
message UserBNPLReq {
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
int64 bnpl_id = 2;
|
int64 bnpl_id = 2;
|
||||||
authorization.InternalIAM iam = 6;
|
auth.v1.InternalIAM iam = 6;
|
||||||
optional string created_at = 3;
|
optional string created_at = 3;
|
||||||
optional string employee_id = 4;
|
optional string employee_id = 4;
|
||||||
optional int64 company_id = 5;
|
optional int64 company_id = 5;
|
||||||
@@ -175,7 +175,7 @@ message BNPLInfo {
|
|||||||
float amount_end = 6;
|
float amount_end = 6;
|
||||||
float amount_steps = 7;
|
float amount_steps = 7;
|
||||||
repeated PaymentPeriodInfo payment_period = 8;
|
repeated PaymentPeriodInfo payment_period = 8;
|
||||||
repeated authorization.Company possible_companies = 11;
|
repeated auth.v1.Company possible_companies = 11;
|
||||||
string updated_at = 12;
|
string updated_at = 12;
|
||||||
string created_at = 13;
|
string created_at = 13;
|
||||||
string expires_at = 14;
|
string expires_at = 14;
|
||||||
@@ -206,7 +206,7 @@ message Wallet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message UserInitWalletReq {
|
message UserInitWalletReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -220,19 +220,19 @@ message TransactionList {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum TransactionType {
|
enum TransactionType {
|
||||||
Unknown = 0;
|
UNKNOWN = 0;
|
||||||
Buy = 1;
|
BUY = 1;
|
||||||
Sell = 2;
|
SELL = 2;
|
||||||
Transfer = 3;
|
TRANSFER = 3;
|
||||||
Redeem = 4;
|
REDEEM = 4;
|
||||||
}
|
}
|
||||||
enum TransactionStatus {
|
enum TransactionStatus {
|
||||||
Undetermined = 0;
|
UNDETERMINED = 0;
|
||||||
Failed = -10;
|
FAILED = -10;
|
||||||
Suspended = -9;
|
SUSPENDED = -9;
|
||||||
Created = -1;
|
CREATED = -1;
|
||||||
Pending = 1;
|
PENDING_TRX = 1;
|
||||||
Successful = 2;
|
SUCCESSFUL = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Transaction {
|
message Transaction {
|
||||||
@@ -240,11 +240,11 @@ message Transaction {
|
|||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
// Asset asset_info = 3; //Causing network overloading
|
// Asset asset_info = 3; //Causing network overloading
|
||||||
optional int64 from_user_id = 4;
|
optional int64 from_user_id = 4;
|
||||||
optional authorization.UserIdentityBasic from_user_info = 5;
|
optional auth.v1.UserIdentityBasic from_user_info = 5;
|
||||||
optional int64 from_federation_id = 6;
|
optional int64 from_federation_id = 6;
|
||||||
optional Federation from_federation_info = 7;
|
optional Federation from_federation_info = 7;
|
||||||
optional int64 to_user_id = 8;
|
optional int64 to_user_id = 8;
|
||||||
optional authorization.UserIdentityBasic to_user_info = 9;
|
optional auth.v1.UserIdentityBasic to_user_info = 9;
|
||||||
optional int64 to_federation_id = 10;
|
optional int64 to_federation_id = 10;
|
||||||
optional Federation to_federation_info = 11;
|
optional Federation to_federation_info = 11;
|
||||||
double amount = 12;
|
double amount = 12;
|
||||||
@@ -256,7 +256,7 @@ message Transaction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message UserGetTransactionListReq {
|
message UserGetTransactionListReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
optional int32 page_index = 2;
|
optional int32 page_index = 2;
|
||||||
optional int32 page_size = 3;
|
optional int32 page_size = 3;
|
||||||
optional int64 id = 4;
|
optional int64 id = 4;
|
||||||
@@ -276,7 +276,7 @@ message UserGetTransactionListReq {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
message UserBuyAssetReq {
|
message UserBuyAssetReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
}
|
}
|
||||||
@@ -290,7 +290,7 @@ message UserBuyAssetReq {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
message UserTransferAssetReq {
|
message UserTransferAssetReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
string to_wallet_address = 4;
|
string to_wallet_address = 4;
|
||||||
@@ -304,7 +304,7 @@ message UserTransferRes {
|
|||||||
|
|
||||||
// represent the information regarding the sale of the token
|
// represent the information regarding the sale of the token
|
||||||
message SaleGetTokenReq {
|
message SaleGetTokenReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
}
|
}
|
||||||
@@ -319,21 +319,21 @@ message SaleGetTokenRes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message SaleConfirmReq {
|
message SaleConfirmReq {
|
||||||
string RefId = 1;
|
string ref_id = 1;
|
||||||
string ResCode = 2;
|
string res_code = 2;
|
||||||
string SaleOrderId = 3;
|
string sale_order_id = 3;
|
||||||
string SaleReferenceId = 4;
|
string sale_reference_id = 4;
|
||||||
string CardHolderInfo = 5;
|
string card_holder_info = 5;
|
||||||
string CardHolderPan = 6;
|
string card_holder_pan = 6;
|
||||||
string FinalAmount = 7;
|
string final_amount = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SaleConfirmRes {
|
message SaleConfirmRes {
|
||||||
string receiptLink = 1;
|
string receipt_link = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SaleManualReq {
|
message SaleManualReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
double amount = 3;
|
double amount = 3;
|
||||||
string paid_at = 4;
|
string paid_at = 4;
|
||||||
@@ -345,7 +345,7 @@ message SaleManualReq {
|
|||||||
Redeem Token
|
Redeem Token
|
||||||
*/
|
*/
|
||||||
message RedeemTokenReq {
|
message RedeemTokenReq {
|
||||||
authorization.InternalIAM iam = 1;
|
auth.v1.InternalIAM iam = 1;
|
||||||
int64 asset_id = 2;
|
int64 asset_id = 2;
|
||||||
uint64 bank_info_id = 3;
|
uint64 bank_info_id = 3;
|
||||||
double amount = 4;
|
double amount = 4;
|
||||||
@@ -358,7 +358,7 @@ message CalculateRedeemTokenRes {
|
|||||||
double request_amount = 4;
|
double request_amount = 4;
|
||||||
double profit_capital = 5;
|
double profit_capital = 5;
|
||||||
double user_capital = 6;
|
double user_capital = 6;
|
||||||
optional authorization.BankInfo bank_info = 7;
|
optional auth.v1.BankInfo bank_info = 7;
|
||||||
}
|
}
|
||||||
message RedeemTokenRes {
|
message RedeemTokenRes {
|
||||||
uint64 id = 1;
|
uint64 id = 1;
|
||||||
@@ -371,7 +371,7 @@ message RedeemTokenRes {
|
|||||||
bool is_paied = 8;
|
bool is_paied = 8;
|
||||||
// receipt.Receipt receipt = 8;
|
// receipt.Receipt receipt = 8;
|
||||||
double calculated_profit = 9;
|
double calculated_profit = 9;
|
||||||
optional authorization.BankInfo bank_info = 10;
|
optional auth.v1.BankInfo bank_info = 10;
|
||||||
optional string receipt = 11;
|
optional string receipt = 11;
|
||||||
}
|
}
|
||||||
message RedeemTokenResList {
|
message RedeemTokenResList {
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package wallet.v1;
|
||||||
|
|
||||||
|
import "auth/v1/msg.proto";
|
||||||
|
import "base/v1/msg.proto";
|
||||||
|
import "wallet/v1/msg.proto";
|
||||||
|
|
||||||
|
service WalletService {
|
||||||
|
rpc InternalWalletDeleteCache(base.v1.Empty) returns (base.v1.StatusRes);
|
||||||
|
rpc InternalCreateFederation(auth.v1.InternalIAM) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
|
rpc AdminGetFederation(GetFederationReq) returns (Federation);
|
||||||
|
rpc UserGetFederation(auth.v1.InternalIAM) returns (Federation);
|
||||||
|
|
||||||
|
rpc UserGetAssetList(base.v1.Empty) returns (AssetList);
|
||||||
|
rpc AdminGetAssetList(base.v1.Empty) returns (AssetList);
|
||||||
|
rpc GetAsset(GetAssetReq) returns (Asset);
|
||||||
|
|
||||||
|
rpc UserInitWallet(UserInitWalletReq) returns (base.v1.StatusRes);
|
||||||
|
rpc UserGetWalletList(auth.v1.InternalIAM) returns (WalletList);
|
||||||
|
rpc UserTransferAsset(UserTransferAssetReq) returns (UserTransferRes);
|
||||||
|
|
||||||
|
rpc UserGetTransactionList(UserGetTransactionListReq) returns (TransactionList);
|
||||||
|
|
||||||
|
rpc SaleGetToken(SaleGetTokenReq) returns (SaleGetTokenRes);
|
||||||
|
rpc SaleConfirm(SaleConfirmReq) returns (SaleConfirmRes);
|
||||||
|
rpc AdminManualSaleDeposit(SaleManualReq) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
|
// BNPL
|
||||||
|
rpc GetBNPLList(base.v1.Empty) returns (BNPLList);
|
||||||
|
rpc GetBNPLInfo(base.v1.IdReq) returns (BNPLInfo);
|
||||||
|
rpc GetUserBNPLInfo(GetUserBNPLInfoReq) returns (UserBNPLResp);
|
||||||
|
rpc SubmitBNPLForm(UserBNPLReq) returns (base.v1.StatusRes);
|
||||||
|
rpc UpdateBNPL(UserBNPLReq) returns (base.v1.StatusRes);
|
||||||
|
rpc CancleBNPL(auth.v1.IdReqWithIAM) returns (base.v1.StatusRes);
|
||||||
|
|
||||||
|
// Redeem Token
|
||||||
|
rpc CalculateRedeemToken(RedeemTokenReq) returns (CalculateRedeemTokenRes);
|
||||||
|
rpc RedeemToken(RedeemTokenReq) returns (base.v1.StatusRes);
|
||||||
|
rpc RedeemTokenList(auth.v1.ReqWithIAMAndParams) returns (RedeemTokenResList);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user