mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 08:01:38 +00:00
433341b295
* assets migration * parse assets (duckdb) * iterate on assets * S3 object Preview * remove pagination * filterText * better occurence list * tweak * assets in JobPreview * clone impl * AssetsDetectedBadge * improve DbManagerButton + asset dropdown button * edit resource btn * warning when incorrect resource * +Resource in DuckDB * +S3 Object editor bar * nit fix rename * flow asset badge * More Generic OnChange * Highlight assets used in modules * Show occurence count in flow * Better UX, avoid moving parts * nit * Asset nodes * move to dedicated Asset ctx * fix layoutNodes not handling first assetsMap * explore asset btn in flow asset node * correct offset * single computeAssetNodes function * Fix y positioning of nodes with assets * resource editor * write mode node (ui) * accessType in ctx + fix insert button positioning * right positioning when mixing read and write nodes * right positioning when mixing R and W assets * Better layout fix algorithm * listAssetsByUsage and asset nodes on transitive usages * refactor + remove linkAssets * Refactor to allow for custom R/W modes * AssetsDropdownButton in flow script editor * R/W/RW selection and changes node pos in flow * layoutNodes doesnt need recompute now * fix wrong assumption that nodes recompute when assets change * r/w/rw multi toggle * MultiToggle cool animation + clearable * rename + 1px nit * remove mini toggle button group, use ToggleButtonGroup * Combinator parser that detects R / W asset context * nit fix missing flex-1 * missing order by * better ui indication for access type * special x offset case when only one asset node for clarity * parse getResource in TS with swc ecma parser * support load and write s3 detection in TS * Python asset parser * support wmill api calls without special $res: or s3:// syntax * detect out of context asset uris python * do not use access type override when not ambiguous in flow graph * parse_assets match case in rust * AsRef<str> refactor * From impl * Save flow assets * Save script asset usages + fixes + save fallback access types * asset sub icon * max total asset node width to avoid overlap * small refactor * don't parse comments in duckdb assets * fix assets clearing on parse error * fix script asset save in wrong place * load initial asset fallback access types * support variables * ui fixes * Support S3Object as URI in TS client * support new syntax in python client * Support +S3Object in EditorBar for TS and python * Reduce resource requests in assets page * import windmill client when necessary * update s3Types.d.ts * nit fix * Show input resources and s3 objects as assets * improve asset icons * DarkModeObserver refactor * asset page tabs * Moved resource variables and s3object pages to assets tabs * fetch resource usages * Get variables usages * move assets usage dropdown to component * Revert "move assets usage dropdown to component" This reverts commit622ea4ab12. * Revert "Get variables usages" This reverts commitb11ced4e29. * Revert "fetch resource usages" This reverts commitaa5187ad4b. * Revert "Moved resource variables and s3object pages to assets tabs" This reverts commit4430487be4. * Revert "asset page tabs" This reverts commitdacc2f0da5. * move assets usage dropdown to component * asset icon in asset pages * tooltip * details * Storage selector in S3 File Picker * make edge less opaque * Refactor computeAssetNodes to separate in and out nodes * AssetsOverflowedNode * nits * fix assets not being parsed in flows sometimes * show asset kind and resource_type * ui nits * support res:// in duckdb * add banner for old deployments * Fix permissionning * fix broken disable /enable all * assets page view permission for operators * Disable ExploreAssetButton for operators * asset kind as subtitle * do not spam getResource in assets page. prob. revert fail * update assets page on workspace change * reload storage names on ws change * delete assets on archive / deletion * sqlx prepare * missing update when updating user * add indexes on asset * better message * missing loadInit: false * dead code * use transaction * typo * update package.json * update package.json --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
643 lines
19 KiB
Rust
643 lines
19 KiB
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2022
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
|
|
use std::{
|
|
fmt::{self, Display},
|
|
hash::{Hash, Hasher},
|
|
str::FromStr,
|
|
};
|
|
|
|
use crate::{
|
|
assets::AssetWithAccessType,
|
|
error::{to_anyhow, Error},
|
|
utils::http_get_from_hub,
|
|
DB, DEFAULT_HUB_BASE_URL, HUB_BASE_URL,
|
|
};
|
|
|
|
use crate::worker::HUB_CACHE_DIR;
|
|
use anyhow::Context;
|
|
use backon::ConstantBuilder;
|
|
use backon::{BackoffBuilder, Retryable};
|
|
use itertools::Itertools;
|
|
use serde::de::Error as _;
|
|
use serde::{ser::SerializeSeq, Deserialize, Deserializer, Serialize};
|
|
|
|
use crate::utils::StripPath;
|
|
|
|
#[derive(Serialize, Deserialize, Debug, PartialEq, Copy, Clone, Hash, Eq, sqlx::Type, Default)]
|
|
#[sqlx(type_name = "SCRIPT_LANG", rename_all = "lowercase")]
|
|
#[serde(rename_all(serialize = "lowercase", deserialize = "lowercase"))]
|
|
pub enum ScriptLang {
|
|
Nativets,
|
|
#[default]
|
|
Deno,
|
|
Python3,
|
|
Go,
|
|
Bash,
|
|
Powershell,
|
|
Postgresql,
|
|
Bun,
|
|
Bunnative,
|
|
Mysql,
|
|
Bigquery,
|
|
Snowflake,
|
|
Graphql,
|
|
Mssql,
|
|
OracleDB,
|
|
DuckDb,
|
|
Php,
|
|
Rust,
|
|
Ansible,
|
|
CSharp,
|
|
Nu,
|
|
Java, // for related places search: ADD_NEW_LANG
|
|
}
|
|
|
|
impl ScriptLang {
|
|
pub fn as_str(&self) -> &'static str {
|
|
match self {
|
|
ScriptLang::Bun => "bun",
|
|
ScriptLang::Bunnative => "bunnative",
|
|
ScriptLang::Nativets => "nativets",
|
|
ScriptLang::Deno => "deno",
|
|
ScriptLang::Python3 => "python3",
|
|
ScriptLang::Go => "go",
|
|
ScriptLang::Bash => "bash",
|
|
ScriptLang::Powershell => "powershell",
|
|
ScriptLang::Postgresql => "postgresql",
|
|
ScriptLang::Mysql => "mysql",
|
|
ScriptLang::Bigquery => "bigquery",
|
|
ScriptLang::Snowflake => "snowflake",
|
|
ScriptLang::Mssql => "mssql",
|
|
ScriptLang::Graphql => "graphql",
|
|
ScriptLang::OracleDB => "oracledb",
|
|
ScriptLang::DuckDb => "duckdb",
|
|
ScriptLang::Php => "php",
|
|
ScriptLang::Rust => "rust",
|
|
ScriptLang::Ansible => "ansible",
|
|
ScriptLang::CSharp => "csharp",
|
|
ScriptLang::Nu => "nu",
|
|
ScriptLang::Java => "java",
|
|
// for related places search: ADD_NEW_LANG
|
|
}
|
|
}
|
|
}
|
|
|
|
impl FromStr for ScriptLang {
|
|
type Err = Error;
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
let language = match s.to_lowercase().as_str() {
|
|
"bun" => ScriptLang::Bun,
|
|
"bunnative" => ScriptLang::Bunnative,
|
|
"nativets" => ScriptLang::Nativets,
|
|
"deno" => ScriptLang::Deno,
|
|
"python3" => ScriptLang::Python3,
|
|
"go" => ScriptLang::Go,
|
|
"bash" => ScriptLang::Bash,
|
|
"powershell" => ScriptLang::Powershell,
|
|
"postgresql" => ScriptLang::Postgresql,
|
|
"mysql" => ScriptLang::Mysql,
|
|
"bigquery" => ScriptLang::Bigquery,
|
|
"snowflake" => ScriptLang::Snowflake,
|
|
"mssql" => ScriptLang::Mssql,
|
|
"graphql" => ScriptLang::Graphql,
|
|
"oracledb" => ScriptLang::OracleDB,
|
|
"php" => ScriptLang::Php,
|
|
"rust" => ScriptLang::Rust,
|
|
"ansible" => ScriptLang::Ansible,
|
|
"csharp" => ScriptLang::CSharp,
|
|
"nu" => ScriptLang::Nu,
|
|
"java" => ScriptLang::Java,
|
|
language => {
|
|
return Err(anyhow::anyhow!("{} is currently not supported", language).into())
|
|
}
|
|
};
|
|
|
|
Ok(language)
|
|
}
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Debug, Hash, Clone, Copy, sqlx::Type)]
|
|
#[sqlx(transparent)]
|
|
pub struct ScriptHash(pub i64);
|
|
|
|
#[derive(PartialEq, sqlx::Type)]
|
|
#[sqlx(transparent, no_pg_array)]
|
|
pub struct ScriptHashes(pub Vec<i64>);
|
|
|
|
impl Display for ScriptHash {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "{}", to_hex_string(&self.0))
|
|
}
|
|
}
|
|
impl Serialize for ScriptHash {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
serializer.serialize_str(to_hex_string(&self.0).as_str())
|
|
}
|
|
}
|
|
impl<'de> Deserialize<'de> for ScriptHash {
|
|
fn deserialize<D>(deserializer: D) -> std::result::Result<ScriptHash, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
let s = String::deserialize(deserializer)?;
|
|
let i = to_i64(&s).map_err(|e| D::Error::custom(format!("{}", e)))?;
|
|
Ok(ScriptHash(i))
|
|
}
|
|
}
|
|
|
|
impl Serialize for ScriptHashes {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
let mut seq = serializer.serialize_seq(Some(self.0.len()))?;
|
|
for element in &self.0 {
|
|
seq.serialize_element(&ScriptHash(*element))?;
|
|
}
|
|
seq.end()
|
|
}
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Debug, Hash, sqlx::Type)]
|
|
#[sqlx(type_name = "SCRIPT_KIND", rename_all = "lowercase")]
|
|
#[serde(rename_all = "lowercase")]
|
|
pub enum ScriptKind {
|
|
Trigger,
|
|
Failure,
|
|
Script,
|
|
Approval,
|
|
Preprocessor,
|
|
}
|
|
|
|
impl Display for ScriptKind {
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
fmt.write_str(match self {
|
|
ScriptKind::Trigger => "trigger",
|
|
ScriptKind::Failure => "failure",
|
|
ScriptKind::Script => "script",
|
|
ScriptKind::Approval => "approval",
|
|
ScriptKind::Preprocessor => "preprocessor",
|
|
})?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
pub const PREVIEW_IS_CODEBASE_HASH: i64 = -42;
|
|
pub const PREVIEW_IS_TAR_CODEBASE_HASH: i64 = -43;
|
|
|
|
#[derive(Serialize, sqlx::FromRow)]
|
|
pub struct Script {
|
|
pub workspace_id: String,
|
|
pub hash: ScriptHash,
|
|
pub path: String,
|
|
pub parent_hashes: Option<ScriptHashes>,
|
|
pub summary: String,
|
|
pub description: String,
|
|
pub content: String,
|
|
pub created_by: String,
|
|
pub created_at: chrono::DateTime<chrono::Utc>,
|
|
pub archived: bool,
|
|
pub schema: Option<Schema>,
|
|
pub deleted: bool,
|
|
pub is_template: bool,
|
|
pub extra_perms: serde_json::Value,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub lock: Option<String>,
|
|
pub lock_error_logs: Option<String>,
|
|
pub language: ScriptLang,
|
|
pub kind: ScriptKind,
|
|
pub tag: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub draft_only: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub envs: Option<Vec<String>>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub concurrent_limit: Option<i32>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub concurrency_time_window_s: Option<i32>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub dedicated_worker: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub ws_error_handler_muted: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub priority: Option<i16>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub cache_ttl: Option<i32>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub timeout: Option<i32>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub delete_after_use: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub restart_unless_cancelled: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub concurrency_key: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub visible_to_runner_only: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub no_main_func: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub codebase: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub has_preprocessor: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub on_behalf_of_email: Option<String>,
|
|
}
|
|
|
|
#[derive(Serialize, sqlx::FromRow)]
|
|
pub struct ScriptWithStarred {
|
|
#[sqlx(flatten)]
|
|
#[serde(flatten)]
|
|
pub script: Script,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub starred: Option<bool>,
|
|
}
|
|
|
|
#[derive(Serialize, sqlx::FromRow)]
|
|
pub struct ListableScript {
|
|
pub hash: ScriptHash,
|
|
pub path: String,
|
|
pub summary: String,
|
|
pub created_at: chrono::DateTime<chrono::Utc>,
|
|
pub archived: bool,
|
|
pub extra_perms: serde_json::Value,
|
|
pub language: ScriptLang,
|
|
pub starred: bool,
|
|
pub tag: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub has_draft: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub draft_only: Option<bool>,
|
|
pub has_deploy_errors: bool,
|
|
pub ws_error_handler_muted: Option<bool>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub no_main_func: Option<bool>,
|
|
#[serde(skip_serializing_if = "is_false")]
|
|
pub use_codebase: bool,
|
|
#[sqlx(default)]
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub deployment_msg: Option<String>,
|
|
pub kind: ScriptKind,
|
|
}
|
|
|
|
fn is_false(x: &bool) -> bool {
|
|
return !x;
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
pub struct ScriptHistory {
|
|
pub script_hash: ScriptHash,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub deployment_msg: Option<String>,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct ScriptHistoryUpdate {
|
|
pub deployment_msg: Option<String>,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Debug, sqlx::Type, Clone)]
|
|
#[sqlx(transparent)]
|
|
#[serde(transparent)]
|
|
pub struct Schema(pub sqlx::types::Json<Box<serde_json::value::RawValue>>);
|
|
|
|
impl Hash for Schema {
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
self.0.get().hash(state);
|
|
}
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Hash)]
|
|
pub struct NewScript {
|
|
pub path: String,
|
|
pub parent_hash: Option<ScriptHash>,
|
|
pub summary: String,
|
|
pub description: String,
|
|
pub content: String,
|
|
pub schema: Option<Schema>,
|
|
pub is_template: Option<bool>,
|
|
#[serde(default = "Option::default")]
|
|
#[serde(deserialize_with = "lock_deserialize")]
|
|
pub lock: Option<String>,
|
|
pub language: ScriptLang,
|
|
pub kind: Option<ScriptKind>,
|
|
pub tag: Option<String>,
|
|
pub draft_only: Option<bool>,
|
|
pub envs: Option<Vec<String>>,
|
|
pub concurrent_limit: Option<i32>,
|
|
pub concurrency_time_window_s: Option<i32>,
|
|
pub cache_ttl: Option<i32>,
|
|
pub dedicated_worker: Option<bool>,
|
|
pub ws_error_handler_muted: Option<bool>,
|
|
pub priority: Option<i16>,
|
|
pub timeout: Option<i32>,
|
|
pub delete_after_use: Option<bool>,
|
|
pub restart_unless_cancelled: Option<bool>,
|
|
pub deployment_message: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub concurrency_key: Option<String>,
|
|
pub visible_to_runner_only: Option<bool>,
|
|
pub no_main_func: Option<bool>,
|
|
pub codebase: Option<String>,
|
|
pub has_preprocessor: Option<bool>,
|
|
pub on_behalf_of_email: Option<String>,
|
|
pub fallback_access_types: Option<Vec<AssetWithAccessType>>,
|
|
}
|
|
|
|
fn lock_deserialize<'de, D>(deserializer: D) -> Result<Option<String>, D::Error>
|
|
where
|
|
D: serde::de::Deserializer<'de>,
|
|
{
|
|
struct StringOrArrayVisitor;
|
|
|
|
impl<'de> serde::de::Visitor<'de> for StringOrArrayVisitor {
|
|
type Value = Option<String>;
|
|
|
|
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
formatter.write_str("either a string or an array of strings")
|
|
}
|
|
|
|
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
|
|
where
|
|
E: serde::de::Error,
|
|
{
|
|
Ok(Some(v.to_string()))
|
|
}
|
|
|
|
fn visit_none<E>(self) -> Result<Self::Value, E>
|
|
where
|
|
E: serde::de::Error,
|
|
{
|
|
Ok(None)
|
|
}
|
|
|
|
fn visit_unit<E>(self) -> Result<Self::Value, E>
|
|
where
|
|
E: serde::de::Error,
|
|
{
|
|
Ok(None)
|
|
}
|
|
|
|
fn visit_seq<A>(self, mut seq: A) -> Result<Self::Value, A::Error>
|
|
where
|
|
A: serde::de::SeqAccess<'de>,
|
|
{
|
|
let mut split_lock: Vec<String> = vec![];
|
|
loop {
|
|
if let Ok(Some(elem)) = seq.next_element::<String>() {
|
|
split_lock.push(elem);
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
let lock = split_lock.join("\n");
|
|
return Ok(Some(lock));
|
|
}
|
|
}
|
|
deserializer.deserialize_any(StringOrArrayVisitor)
|
|
}
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
pub struct ListScriptQuery {
|
|
pub path_start: Option<String>,
|
|
pub path_exact: Option<String>,
|
|
pub created_by: Option<String>,
|
|
pub first_parent_hash: Option<ScriptHash>,
|
|
pub last_parent_hash: Option<ScriptHash>,
|
|
pub parent_hash: Option<ScriptHash>,
|
|
pub show_archived: Option<bool>,
|
|
pub order_by: Option<String>,
|
|
pub order_desc: Option<bool>,
|
|
pub is_template: Option<bool>,
|
|
pub kinds: Option<String>,
|
|
pub starred_only: Option<bool>,
|
|
pub include_without_main: Option<bool>,
|
|
pub include_draft_only: Option<bool>,
|
|
pub with_deployment_msg: Option<bool>,
|
|
#[serde(default, deserialize_with = "from_seq")]
|
|
pub languages: Option<Vec<ScriptLang>>,
|
|
}
|
|
|
|
fn from_seq<'de, D>(deserializer: D) -> Result<Option<Vec<ScriptLang>>, D::Error>
|
|
where
|
|
D: Deserializer<'de>,
|
|
{
|
|
let s = <String>::deserialize(deserializer)?;
|
|
|
|
let languages: Vec<ScriptLang> = s
|
|
.split(",")
|
|
.map(ScriptLang::from_str)
|
|
.try_collect()
|
|
.map_err(|e| serde::de::Error::custom(e.to_string()))?;
|
|
|
|
let languages = if languages.is_empty() {
|
|
None
|
|
} else {
|
|
Some(languages)
|
|
};
|
|
|
|
Ok(languages)
|
|
}
|
|
|
|
pub fn to_i64(s: &str) -> crate::error::Result<i64> {
|
|
let v = hex::decode(s)?;
|
|
if v.len() < 8 {
|
|
return Err(crate::error::Error::BadRequest(format!(
|
|
"hex string did not decode to an u64: {s}",
|
|
)));
|
|
}
|
|
let nb: u64 = u64::from_be_bytes(
|
|
v[0..8]
|
|
.try_into()
|
|
.map_err(|_| hex::FromHexError::InvalidStringLength)?,
|
|
);
|
|
Ok(nb as i64)
|
|
}
|
|
|
|
pub fn to_hex_string(i: &i64) -> String {
|
|
hex::encode(i.to_be_bytes())
|
|
}
|
|
|
|
pub async fn get_hub_script_by_path(
|
|
path: StripPath,
|
|
http_client: &reqwest::Client,
|
|
db: &DB,
|
|
) -> crate::error::Result<String> {
|
|
let path = path
|
|
.to_path()
|
|
.strip_prefix("hub/")
|
|
.ok_or_else(|| Error::BadRequest("Impossible to remove prefix hex".to_string()))?;
|
|
|
|
let hub_base_url = HUB_BASE_URL.read().await.clone();
|
|
|
|
let result = http_get_from_hub(
|
|
http_client,
|
|
&format!("{}/raw/{}.ts", hub_base_url, path),
|
|
true,
|
|
None,
|
|
Some(db),
|
|
)
|
|
.await?
|
|
.error_for_status()
|
|
.map_err(to_anyhow)?
|
|
.text()
|
|
.await
|
|
.map_err(to_anyhow);
|
|
|
|
match result {
|
|
Ok(result) => Ok(result),
|
|
Err(e) => {
|
|
if hub_base_url != DEFAULT_HUB_BASE_URL
|
|
&& path
|
|
.split("/")
|
|
.next()
|
|
.is_some_and(|x| x.parse::<i32>().is_ok_and(|x| x < 10_000_000))
|
|
{
|
|
tracing::info!(
|
|
"Not found on private hub, fallback to default hub for {}",
|
|
path
|
|
);
|
|
let content = http_get_from_hub(
|
|
http_client,
|
|
&format!("{}/raw/{}.ts", DEFAULT_HUB_BASE_URL, path),
|
|
true,
|
|
None,
|
|
Some(db),
|
|
)
|
|
.await?
|
|
.error_for_status()
|
|
.map_err(to_anyhow)?
|
|
.text()
|
|
.await
|
|
.map_err(to_anyhow)?;
|
|
|
|
Ok(content)
|
|
} else {
|
|
Err(e)?
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
pub async fn get_full_hub_script_by_path(
|
|
path: StripPath,
|
|
http_client: &reqwest::Client,
|
|
db: Option<&DB>,
|
|
) -> crate::error::Result<HubScript> {
|
|
let path = path
|
|
.to_path()
|
|
.strip_prefix("hub/")
|
|
.ok_or_else(|| Error::BadRequest("Impossible to remove prefix hex".to_string()))?;
|
|
|
|
let mut path_iterator = path.split("/");
|
|
let version = path_iterator
|
|
.next()
|
|
.ok_or_else(|| Error::internal_err(format!("expected hub path to have version number")))?;
|
|
let cache_path = format!("{HUB_CACHE_DIR}/{version}");
|
|
let script;
|
|
if tokio::fs::metadata(&cache_path).await.is_err() {
|
|
script = get_full_hub_script_by_path_inner(path, http_client, db).await?;
|
|
if let Err(e) = crate::worker::write_file(
|
|
HUB_CACHE_DIR,
|
|
&version,
|
|
&serde_json::to_string(&script).map_err(to_anyhow)?,
|
|
) {
|
|
tracing::error!("failed to write hub script {path} to cache: {e}");
|
|
} else {
|
|
tracing::info!("wrote hub script {path} to cache");
|
|
}
|
|
} else {
|
|
let cache_content = tokio::fs::read_to_string(cache_path).await?;
|
|
script = serde_json::from_str(&cache_content).unwrap();
|
|
tracing::info!("read hub script {path} from cache");
|
|
}
|
|
Ok(script)
|
|
}
|
|
|
|
async fn get_full_hub_script_by_path_inner(
|
|
path: &str,
|
|
http_client: &reqwest::Client,
|
|
db: Option<&DB>,
|
|
) -> crate::error::Result<HubScript> {
|
|
let hub_base_url = HUB_BASE_URL.read().await.clone();
|
|
|
|
let response = (|| async {
|
|
let response = http_get_from_hub(
|
|
http_client,
|
|
&format!("{}/raw2/{}", hub_base_url, path),
|
|
true,
|
|
None,
|
|
db,
|
|
)
|
|
.await
|
|
.and_then(|r| r.error_for_status().map_err(|e| to_anyhow(e).into()));
|
|
|
|
match response {
|
|
Ok(response) => Ok(response),
|
|
Err(e) => {
|
|
if hub_base_url != DEFAULT_HUB_BASE_URL
|
|
&& path
|
|
.split("/")
|
|
.next()
|
|
.is_some_and(|x| x.parse::<i32>().is_ok_and(|x| x < 10_000_000))
|
|
{
|
|
// TODO: should only fallback to default hub if status is 404 (hub returns 500 currently)
|
|
tracing::info!(
|
|
"Not found on private hub, fallback to default hub for {}",
|
|
path
|
|
);
|
|
http_get_from_hub(
|
|
http_client,
|
|
&format!("{}/raw2/{}", DEFAULT_HUB_BASE_URL, path),
|
|
true,
|
|
None,
|
|
db,
|
|
)
|
|
.await?
|
|
.error_for_status()
|
|
.map_err(|e| to_anyhow(e).into())
|
|
} else {
|
|
Err(e)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
.retry(
|
|
ConstantBuilder::default()
|
|
.with_delay(std::time::Duration::from_secs(5))
|
|
.with_max_times(2)
|
|
.build(),
|
|
)
|
|
.notify(|err, dur| {
|
|
tracing::warn!(
|
|
"Could not get hub script at path {path}, retrying in {dur:#?}, err: {err:#?}"
|
|
);
|
|
})
|
|
.sleep(tokio::time::sleep)
|
|
.await?;
|
|
|
|
let script = response
|
|
.json::<HubScript>()
|
|
.await
|
|
.context(format!("Decoding hub response for script at path {path}"))?;
|
|
|
|
Ok(script)
|
|
}
|
|
|
|
#[derive(Deserialize, Serialize)]
|
|
pub struct HubScript {
|
|
pub content: String,
|
|
pub lockfile: Option<String>,
|
|
pub language: ScriptLang,
|
|
pub schema: Box<serde_json::value::RawValue>,
|
|
pub summary: Option<String>,
|
|
}
|