-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: upgrade cobalt v7->v10 #26
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,28 @@ | ||
services: | ||
cobalt-api: | ||
image: ghcr.io/imputnet/cobalt:10 | ||
|
||
init: true | ||
read_only: true | ||
restart: unless-stopped | ||
|
||
ports: | ||
- 9001:9000/tcp | ||
environment: | ||
API_URL: "http://localhost:9001/" | ||
|
||
typesense: | ||
image: typesense/typesense:27.1 | ||
|
||
restart: on-failure | ||
hostname: typesense | ||
|
||
ports: | ||
- "8100:8108" | ||
- "8101:8108" | ||
volumes: | ||
- ./data/typesense-data:/data | ||
command: "--data-dir /data --api-key=xyz --enable-cors" | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:8100/health"] | ||
test: ["CMD", "curl", "-f", "http://localhost:8101/health"] | ||
interval: 30s | ||
timeout: 10s | ||
retries: 5 |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
defmodule SmallSdk.Cobalt do | ||
require Logger | ||
|
||
import SaveIt.SmallHelper.UrlHelper, only: [validate_url!: 1] | ||
|
||
def get_download_url(text) do | ||
url = String.split(text, "?") |> hd() | ||
|
||
req = build_request("/") | ||
res = Req.post(req, json: %{url: url}) | ||
|
||
body = handle_response(res) | ||
|
||
case body do | ||
%{"url" => download_url} -> | ||
{:ok, download_url} | ||
|
||
%{"status" => "picker", "picker" => picker_items} -> | ||
{:ok, url, Enum.map(picker_items, &Map.get(&1, "url"))} | ||
|
||
%{"status" => "error", "text" => msg} -> | ||
Logger.warning("response.body is status error, text: #{msg}") | ||
{:error, msg} | ||
|
||
_ -> | ||
Logger.warning("response.body: #{inspect(body)}") | ||
{:error, "inner service error"} | ||
end | ||
end | ||
|
||
defp get_env() do | ||
api_url = Application.fetch_env!(:save_it, :cobalt_api_url) |> validate_url!() | ||
|
||
{api_url} | ||
end | ||
|
||
defp build_request(path) do | ||
{api_url} = get_env() | ||
|
||
Req.new( | ||
base_url: api_url, | ||
url: path, | ||
headers: [ | ||
{"Accept", "application/json"}, | ||
{"Content-Type", "application/json"} | ||
] | ||
) | ||
end | ||
|
||
@doc """ | ||
Handle response from Cobalt API return body if status is 200..209 | ||
""" | ||
def handle_response({:ok, %{status: status, body: body}}) do | ||
case status do | ||
status when status in 200..209 -> | ||
body | ||
|
||
400 -> | ||
Logger.warning("Bad Request: #{inspect(body)}") | ||
raise "Bad Request" | ||
|
||
401 -> | ||
raise "Unauthorized" | ||
|
||
404 -> | ||
nil | ||
|
||
409 -> | ||
raise "Conflict" | ||
|
||
422 -> | ||
raise "Unprocessable Entity" | ||
|
||
503 -> | ||
raise "Service Unavailable" | ||
|
||
_ -> | ||
Logger.error("Unhandled status code #{status}: #{inspect(body)}") | ||
raise "Unknown error: #{status}" | ||
end | ||
end | ||
|
||
def handle_response({:error, reason}) do | ||
Logger.error("Request failed: #{inspect(reason)}") | ||
raise "Request failed" | ||
end | ||
|
||
def handle_response!(%{status: status, body: body}) do | ||
case status do | ||
status when status in 200..209 -> | ||
body | ||
|
||
status -> | ||
Logger.warning("Request failed with status #{status}: #{inspect(body)}") | ||
raise "Request failed with status #{status}" | ||
end | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# Zeabur | ||
# SaveIt template on zeabur | ||
|
||
## Typesense Template | ||
- zeabur template: https://zeabur.com/templates/FTAONK | ||
- github: https://github.com/ThaddeusJiang/save_it/ | ||
|
||
## Develop | ||
|
||
```sh | ||
npx zeabur template update -c FTAONK -f typesense-template.yaml | ||
npx zeabur template update -c FTAONK -f template.yaml | ||
``` | ||
|
||
docs: | ||
## Docs | ||
|
||
- https://zeabur.com/docs/template/template-in-code | ||
- [zeabur docs | template ](https://zeabur.com/docs/template/template-in-code) |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -5,13 +5,13 @@ metadata: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: SaveIt | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
description: SaveIt is a telegram bot that helps you save photos. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
icon: https://github.com/user-attachments/assets/fae196b8-716e-4be7-a8c2-3b141984c0e5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
icon: https://raw.githubusercontent.com/ThaddeusJiang/save_it/refs/heads/main/docs/assets/savt_it_bot_logo.jpg | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tags: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Bot | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Telegram | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Photos Storage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Search Engine | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
coverImage: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
coverImage: https://raw.githubusercontent.com/ThaddeusJiang/save_it/refs/heads/main/docs/assets/savt_it_demo.gif | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
readme: |- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# SaveIt | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -22,14 +22,11 @@ spec: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Search photos using semantic search | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- Find similar photos by photo | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Learn more | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
https://github.com/ThaddeusJiang/save_it | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<video src="https://github.com/user-attachments/assets/b0dedcc0-3305-42b2-8101-6b0b5d32f17a" controls="controls" width="100%" height="auto" ></video> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[more](https://github.com/ThaddeusJiang/save_it) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
services: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: save_it | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
icon: https://github.com/user-attachments/assets/fae196b8-716e-4be7-a8c2-3b141984c0e5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
icon: https://raw.githubusercontent.com/ThaddeusJiang/save_it/refs/heads/main/docs/assets/savt_it_bot_logo.jpg | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
template: GIT | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
source: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -41,6 +38,9 @@ spec: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TELEGRAM_BOT_TOKEN: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expose: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
COBALT_API_URL: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: http://cobalt-api.zeabur.internal:9000 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expose: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TYPESENSE_URL: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: http://typesense.zeabur.internal:8108 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expose: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -81,3 +81,19 @@ spec: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expose: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configs: [] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: cobalt-api | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
icon: https://github.com/imputnet/cobalt/raw/main/web/static/favicon.png | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
template: PREBUILT_V2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
source: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image: ghcr.io/imputnet/cobalt:10 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ports: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- id: api | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
port: 9000 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: TCP | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
env: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
API_URL: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: undefined | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
expose: false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+84
to
+98
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Several improvements needed for the cobalt-api service configuration.
Here's the suggested improvement: - name: cobalt-api
icon: https://github.com/imputnet/cobalt/raw/main/web/static/favicon.png
template: PREBUILT_V2
spec:
source:
image: ghcr.io/imputnet/cobalt:10
ports:
- id: api
port: 9000
type: TCP
+ resources:
+ limits:
+ cpu: "1"
+ memory: "1Gi"
+ requests:
+ cpu: "200m"
+ memory: "256Mi"
+ healthCheck:
+ httpGet:
+ path: /health
+ port: 9000
+ initialDelaySeconds: 10
+ periodSeconds: 30
+ securityContext:
+ readOnlyRootFilesystem: true
+ runAsNonRoot: true
+ runAsUser: 1000
env:
API_URL:
- default: undefined
+ default: http://0.0.0.0:9000
expose: false 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
configs: [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Please enhance the environment variable documentation.
The new
COBALT_API_URL
environment variable needs more context:http://localhost:9001
📝 Committable suggestion