mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-24 00:55:35 +00:00
Some checks are pending
Deploy Docs / build (push) Waiting to run
Deploy Docs / Deploy (push) Blocked by required conditions
Security / Dependency Review (push) Waiting to run
Security / CodeQL (java-kotlin) (push) Waiting to run
Security / CodeQL (javascript-typescript) (push) Waiting to run
Security / CodeQL (python) (push) Waiting to run
* feat(auth): let providers override OAuth userinfo loading
Some providers do not return a flat, standard userinfo payload, so
DefaultOAuth2UserService cannot read them. Add ProviderOAuth2UserService
so a provider can claim its own registration id and supply the loading
step, while everything after it stays shared.
The override runs inside the RemoteIdentityIoExecutor boundary added in
R1-A, so a provider's HTTP call does not hold the surrounding
transaction open. Registrations without an override keep using the
default user service unchanged.
Part of R1-A2 (public Provider adapters) per
openspec/changes/enterprise-identity-platform/rollout-plan.md.
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* feat(auth): add Feishu as a public login provider
Adds Feishu (Lark) as a public sign-in option: it authenticates a
SkillHub platform account and nothing more. No Organization membership,
no directory sync, no Namespace grants.
Feishu deviates from standard OAuth in two ways this handles:
its userinfo response is wrapped in a {code, msg, data} envelope, and it
reports errors with HTTP 200. FeishuOAuth2UserService unwraps that
envelope into flat attributes; FeishuClaimsExtractor maps them to the
shared OAuthClaims, so account decisions still run through the unified
identity core added in R1-A.
Subject and email semantics, which decide whether a login can reach an
existing account:
- open_id is the only subject. union_id stays in extra rather than
acting as a fallback: a subject that can change between logins would
split one person across two platform accounts. Promoting union_id
later needs an explicit alias migration.
- A blank or missing open_id fails the login instead of binding the
literal string "null".
- emailVerified is always false. Feishu emails are imported by an
organization admin and never confirmed with the user, so they carry no
verification signal and cannot be used to join an existing account.
Operational bounds: the userinfo call has connect and read timeouts so an
unresponsive Feishu endpoint cannot hold a login thread, and the
OAuth2Error description carries only the provider error code, because an
upstream message can quote the request URI and with it the access token.
Like the GitHub and GitLab extractors, the claims extractor logs nothing.
The login button follows the existing config-driven catalog: with no
client id configured, /api/v1/auth/methods does not list Feishu and no
button renders. No frontend code change is needed; the icon resolves by
provider name.
Adapted from the implementation in #696 by @yhd4711499, re-extracted onto
current main with the subject, logging and timeout changes above.
Part of R1-A2 (public Provider adapters) per
openspec/changes/enterprise-identity-platform/rollout-plan.md.
Co-authored-by: yhd4711499 <yhd4711499@users.noreply.github.com>
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* fix(auth): bound Feishu userinfo response and stop subject leaking into displayName
Three defects found reviewing this batch against the R1-A2 spec.
Response size limit. The spec's scope line asks for "远程 I/O 超时与响应大小
限制"; only the timeouts were implemented, so a misconfigured or hostile
OAUTH2_FEISHU_BASE_URI could stream an unbounded body into the parser.
Reads at most 64 KB before parsing, mirroring the 10 MB cap the shared
WebClientConfig already applies. Uses InputStream.readNBytes rather than
adding commons-io or guava, neither of which skillhub-auth declares.
Synthesized displayName. Falling back to "feishu-<open_id>" wrote the
external subject into UserAccount.displayName and into
UserActivatedEvent, carrying it somewhere event consumers may log it --
against the R1-A gate that logs must not contain the subject. Now stops
at name -> en_name like the GitHub and GitLab extractors.
Unused mobile attribute. A phone number was extracted into the principal
attributes and read by nothing. It is PII the spec did not ask for and it
widened the redaction surface for free.
Also drops a constructor overload that only passed List.of() through, and
a test that duplicated the blank-subject path.
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* docs(auth): document the provider adapter contract and Feishu operator setup
AGENTS.md and CONTRIBUTING.md both require docs updates when auth flows or
deployment config change; this batch changed both and touched no docs.
03-authentication-design.md described adding a provider as "branch on
registrationId inside CustomOAuth2UserService", which the
ProviderOAuth2UserService strategy supersedes. Rewrites that recipe:
register an OAuthClaimsExtractor bean per provider, add a
ProviderOAuth2UserService only when the userinfo response is non-standard,
and note that the login page needs no code change. Also records the
provider-side obligations that are easy to get wrong -- stable subject with
no fallback, emailVerified only on proven ownership, bounded remote calls,
no subject in logs -- and un-comments the config example, which still
listed GitLab as a future possibility.
faq.md told operators to delete "the github and gitlab blocks" to hide SSO
buttons. That advice was already incomplete and gets worse per provider, so
it now explains the config-driven mechanism: an empty client id keeps the
entry off the login page, no file edit needed.
09-deployment.md listed only the GitHub credentials. Adds GitLab and Feishu,
and flags a deployment trap: Feishu emails are admin-imported so
emailVerified is always false, and skillhub.access-policy.mode=EMAIL_DOMAIN
denies every unverified email, which would reject all Feishu logins.
Squares the Feishu logo viewBox. It was 407.87x324.19 while login-button
renders it in a square w-5 h-5 box, so the mark was distorted.
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* feat(deploy): wire Feishu credentials into the release surfaces
.env.release.example advertised OAUTH2_FEISHU_* knobs that no deployment
path could actually deliver. compose.release.yml has no env_file, so every
variable must be listed explicitly, and the Helm chart and k8s base only
mapped the GitHub secret keys. Setting the documented variables therefore
did nothing.
Adds Feishu to compose.release.yml, the Helm secret template and values,
the k8s deployment and its secret example. GitLab had the identical gap, so
it is wired at the same time rather than leaving the example file half true.
validate-release-config.sh only checked that GitHub's id and secret appear
together. A half-configured provider renders a login button whose exchange
then fails, so the check now loops over all three providers. Its test gained
both-directions cases per provider plus a fully configured pass; reverting
the loop to GitHub-only makes them fail.
Also adds the provider's only failure log. Nothing downstream records a
Feishu userinfo failure -- OAuth2LoginFailureHandler does not log either --
so the previous code was silent on error. Logs the exception class and
Feishu's own error code, never the upstream msg, which can quote the access
token; a test asserts the code is present and the token is not.
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* fix(auth): use JSON token exchange for Feishu OAuth
Made-with: Proma
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* fix(auth): preserve Feishu OAuth browser redirect
Add safe phase-level OAuth diagnostics and redact callback credentials from request logs.
Made-with: Proma
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* docs(deploy): clarify Feishu OAuth configuration and validation
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* fix(deploy): pass Feishu redirect URI through releases
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* fix(deploy): pass S3 chunked encoding setting
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
* fix(deploy): preserve default Feishu callback derivation
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
---------
Signed-off-by: XiaoSeS <87064762+XiaoSeS@users.noreply.github.com>
Co-authored-by: yhd4711499 <yhd4711499@users.noreply.github.com>
414 lines
12 KiB
Bash
Executable file
414 lines
12 KiB
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
ENV_FILE="${1:-.env.release}"
|
|
|
|
if [ ! -f "$ENV_FILE" ]; then
|
|
echo "ERROR: env file not found: $ENV_FILE" >&2
|
|
exit 1
|
|
fi
|
|
|
|
while IFS= read -r raw_line || [ -n "$raw_line" ]; do
|
|
line=$(printf '%s' "$raw_line" | tr -d '\r')
|
|
case "$line" in
|
|
""|\#*) continue ;;
|
|
esac
|
|
export "$line"
|
|
done < "$ENV_FILE"
|
|
|
|
errors=0
|
|
warnings=0
|
|
|
|
error() {
|
|
errors=$((errors + 1))
|
|
echo "ERROR: $*" >&2
|
|
}
|
|
|
|
warn() {
|
|
warnings=$((warnings + 1))
|
|
echo "WARN: $*" >&2
|
|
}
|
|
|
|
require_non_empty() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
error "$var_name is required"
|
|
fi
|
|
}
|
|
|
|
reject_values() {
|
|
var_name="$1"
|
|
shift
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
return 0
|
|
fi
|
|
for bad in "$@"; do
|
|
if [ "$var_value" = "$bad" ]; then
|
|
error "$var_name still uses placeholder/default value: $bad"
|
|
return 0
|
|
fi
|
|
done
|
|
}
|
|
|
|
reject_patterns() {
|
|
var_name="$1"
|
|
shift
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
return 0
|
|
fi
|
|
for pattern in "$@"; do
|
|
case "$var_value" in
|
|
$pattern)
|
|
error "$var_name still uses placeholder/default pattern: $var_value"
|
|
return 0
|
|
;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
validate_url() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
return 0
|
|
fi
|
|
case "$var_value" in
|
|
http://*|https://*) ;;
|
|
*) error "$var_name must start with http:// or https://" ;;
|
|
esac
|
|
# A query or fragment corrupts these base URLs: they are string-concatenated
|
|
# with paths (e.g. ${SKILLHUB_PUBLIC_BASE_URL}/cli/auth), so a trailing
|
|
# ?query/#fragment would swallow the appended path.
|
|
case "$var_value" in
|
|
*'?'*|*'#'*) error "$var_name must not contain a query ('?') or fragment ('#')" ;;
|
|
esac
|
|
# Reject a scheme with no host (e.g. https://), which would concatenate into an
|
|
# invalid URL such as https:///cli/auth.
|
|
case "$var_value" in
|
|
http://*|https://*)
|
|
rest=${var_value#*://}
|
|
host=${rest%%[/?#]*}
|
|
if [ -z "$host" ]; then
|
|
error "$var_name must include a host (e.g. https://skills.example.com): $var_value"
|
|
fi
|
|
;;
|
|
esac
|
|
}
|
|
|
|
validate_web_api_base_url() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
return 0
|
|
fi
|
|
case "$var_value" in
|
|
http://*|https://*) ;;
|
|
//*) error "$var_name must be an absolute http(s) URL or a root-relative path" ;;
|
|
/*) ;;
|
|
*) error "$var_name must be an absolute http(s) URL or a root-relative path" ;;
|
|
esac
|
|
}
|
|
|
|
validate_no_trailing_slash() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
case "$var_value" in
|
|
*/) error "$var_name must not have a trailing slash" ;;
|
|
esac
|
|
}
|
|
|
|
validate_web_base_path_format() {
|
|
# Mirror the runtime check in web/docker-entrypoint.d/20-base-path.sh so invalid
|
|
# values are rejected here instead of only failing at container start.
|
|
value="${SKILLHUB_WEB_BASE_PATH:-}"
|
|
[ -z "$value" ] && return 0
|
|
case "$value" in
|
|
/|/*/) ;;
|
|
*) error "SKILLHUB_WEB_BASE_PATH must be '/' or start and end with '/': $value"; return ;;
|
|
esac
|
|
case "$value" in
|
|
*//*|*[!A-Za-z0-9._~/-]*) error "SKILLHUB_WEB_BASE_PATH contains unsupported characters: $value"; return ;;
|
|
esac
|
|
case "$value" in
|
|
*/./*|*/../*) error "SKILLHUB_WEB_BASE_PATH must not contain '.' or '..' path segments: $value" ;;
|
|
esac
|
|
if [ "$value" != / ]; then
|
|
first_segment=${value#/}
|
|
first_segment=${first_segment%%/*}
|
|
case "$first_segment" in
|
|
api|oauth2|login|assets|registry|nginx-health|.well-known|runtime-config.js)
|
|
error "SKILLHUB_WEB_BASE_PATH must not start with a segment reserved by the SkillHub server ($first_segment); it would shadow the server's own Nginx location: $value"
|
|
;;
|
|
esac
|
|
fi
|
|
}
|
|
|
|
validate_api_base_path_alignment() {
|
|
web_base_path="${SKILLHUB_WEB_BASE_PATH:-/}"
|
|
api_base="${SKILLHUB_WEB_API_BASE_URL:-}"
|
|
if [ "$web_base_path" = / ] || [ -z "$api_base" ]; then
|
|
return 0
|
|
fi
|
|
# An absolute API URL points at a separate host and is allowed to differ.
|
|
case "$api_base" in
|
|
http://* | https://*) return 0 ;;
|
|
esac
|
|
expected="${web_base_path%/}"
|
|
if [ "$api_base" != "$expected" ]; then
|
|
error "SKILLHUB_WEB_API_BASE_URL ($api_base) must equal SKILLHUB_WEB_BASE_PATH without its trailing slash ($expected) for same-origin sub-path routing, or be an absolute URL for a separate API host"
|
|
fi
|
|
}
|
|
|
|
validate_public_base_path_alignment() {
|
|
web_base_path="${SKILLHUB_WEB_BASE_PATH:-/}"
|
|
public_base_url="${SKILLHUB_PUBLIC_BASE_URL:-}"
|
|
if [ "$web_base_path" = / ] || [ -z "$public_base_url" ]; then
|
|
return 0
|
|
fi
|
|
|
|
# Compare the URL path component exactly, not just the suffix: https://host/other/skillhub
|
|
# ends with /skillhub but serves the app at /other/skillhub, which would not match.
|
|
rest="${public_base_url#*://}"
|
|
case "$rest" in
|
|
*/*) public_path="/${rest#*/}" ;;
|
|
*) public_path="" ;;
|
|
esac
|
|
public_path="${public_path%/}"
|
|
required="${web_base_path%/}"
|
|
if [ "$public_path" != "$required" ]; then
|
|
error "SKILLHUB_PUBLIC_BASE_URL path ($public_path) must equal SKILLHUB_WEB_BASE_PATH without its trailing slash ($required)"
|
|
fi
|
|
}
|
|
|
|
validate_boolean() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
case "$var_value" in
|
|
""|true|false) ;;
|
|
*) error "$var_name must be true or false" ;;
|
|
esac
|
|
}
|
|
|
|
validate_port() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
return 0
|
|
fi
|
|
case "$var_value" in
|
|
*[!0-9]*|"") error "$var_name must be numeric" ;;
|
|
*)
|
|
if [ "$var_value" -lt 1 ] || [ "$var_value" -gt 65535 ]; then
|
|
error "$var_name must be between 1 and 65535"
|
|
fi
|
|
;;
|
|
esac
|
|
}
|
|
|
|
validate_min_length() {
|
|
var_name="$1"
|
|
min_length="$2"
|
|
eval "var_value=\${$var_name:-}"
|
|
if [ -z "$var_value" ]; then
|
|
return 0
|
|
fi
|
|
if [ "${#var_value}" -lt "$min_length" ]; then
|
|
error "$var_name must be at least $min_length characters"
|
|
fi
|
|
}
|
|
|
|
validate_non_negative_integer() {
|
|
var_name="$1"
|
|
eval "var_value=\${$var_name:-}"
|
|
case "$var_value" in
|
|
"") ;;
|
|
*[!0-9]*) error "$var_name must be a non-negative integer" ;;
|
|
esac
|
|
}
|
|
|
|
validate_redis_nodes() {
|
|
var_name="$1"
|
|
eval "nodes=\${$var_name:-}"
|
|
if [ -z "$nodes" ]; then
|
|
return 0
|
|
fi
|
|
|
|
old_ifs="$IFS"
|
|
IFS=","
|
|
for node in $nodes; do
|
|
host=${node%:*}
|
|
port=${node##*:}
|
|
if [ -z "$host" ] || [ "$host" = "$node" ]; then
|
|
error "$var_name entries must use host:port"
|
|
continue
|
|
fi
|
|
case "$host" in
|
|
*[!A-Za-z0-9._-]*)
|
|
error "$var_name contains an invalid host: $host"
|
|
;;
|
|
esac
|
|
case "$port" in
|
|
*[!0-9]*|"")
|
|
error "$var_name contains an invalid port: $node"
|
|
;;
|
|
*)
|
|
if [ "$port" -lt 1 ] || [ "$port" -gt 65535 ]; then
|
|
error "$var_name port must be between 1 and 65535: $node"
|
|
fi
|
|
;;
|
|
esac
|
|
done
|
|
IFS="$old_ifs"
|
|
}
|
|
|
|
validate_redis_sentinel_configuration() {
|
|
master="${SPRING_DATA_REDIS_SENTINEL_MASTER:-}"
|
|
nodes="${SPRING_DATA_REDIS_SENTINEL_NODES:-}"
|
|
|
|
if [ -n "$master" ] && [ -z "$nodes" ]; then
|
|
error "SPRING_DATA_REDIS_SENTINEL_NODES is required when SPRING_DATA_REDIS_SENTINEL_MASTER is set"
|
|
fi
|
|
if [ -n "$nodes" ] && [ -z "$master" ]; then
|
|
error "SPRING_DATA_REDIS_SENTINEL_MASTER is required when SPRING_DATA_REDIS_SENTINEL_NODES is set"
|
|
fi
|
|
validate_redis_nodes SPRING_DATA_REDIS_SENTINEL_NODES
|
|
}
|
|
|
|
validate_redis_cluster_database() {
|
|
if [ -z "${SPRING_DATA_REDIS_CLUSTER_NODES:-}" ]; then
|
|
return 0
|
|
fi
|
|
|
|
case "${SPRING_DATA_REDIS_DATABASE:-0}" in
|
|
0) ;;
|
|
*) error "SPRING_DATA_REDIS_DATABASE must be 0 when SPRING_DATA_REDIS_CLUSTER_NODES is set" ;;
|
|
esac
|
|
}
|
|
|
|
require_non_empty SKILLHUB_PUBLIC_BASE_URL
|
|
validate_url SKILLHUB_PUBLIC_BASE_URL
|
|
validate_no_trailing_slash SKILLHUB_PUBLIC_BASE_URL
|
|
|
|
require_non_empty SKILLHUB_DOWNLOAD_ANON_COOKIE_SECRET
|
|
reject_values SKILLHUB_DOWNLOAD_ANON_COOKIE_SECRET "change-me-in-production" "replace-me" "replace-with-random-download-secret-32-bytes"
|
|
reject_patterns SKILLHUB_DOWNLOAD_ANON_COOKIE_SECRET "TODO_*" "todo_*" "replace*"
|
|
validate_min_length SKILLHUB_DOWNLOAD_ANON_COOKIE_SECRET 32
|
|
|
|
reject_values POSTGRES_PASSWORD "change-this-postgres-password" "skillhub_demo" "skillhub_dev"
|
|
reject_patterns POSTGRES_PASSWORD "TODO_*" "todo_*"
|
|
reject_values BOOTSTRAP_ADMIN_PASSWORD "replace-this-admin-password" "ChangeMe!2026" "Admin@2026"
|
|
reject_patterns BOOTSTRAP_ADMIN_PASSWORD "TODO_*" "todo_*" "replace*"
|
|
if [ "${BOOTSTRAP_ADMIN_ENABLED:-false}" = "true" ]; then
|
|
require_non_empty BOOTSTRAP_ADMIN_PASSWORD
|
|
fi
|
|
reject_values SKILLHUB_STORAGE_S3_ACCESS_KEY "replace-me"
|
|
reject_values SKILLHUB_STORAGE_S3_SECRET_KEY "replace-me"
|
|
reject_patterns SKILLHUB_STORAGE_S3_ACCESS_KEY "TODO_*" "todo_*" "replace*"
|
|
reject_patterns SKILLHUB_STORAGE_S3_SECRET_KEY "TODO_*" "todo_*" "replace*"
|
|
reject_patterns SPRING_MAIL_USERNAME "TODO_*" "todo_*" "replace*"
|
|
reject_patterns SPRING_MAIL_PASSWORD "TODO_*" "todo_*" "replace*"
|
|
|
|
validate_boolean SESSION_COOKIE_SECURE
|
|
validate_boolean BOOTSTRAP_ADMIN_ENABLED
|
|
validate_boolean SKILLHUB_TRUST_FORWARDED_PROTO
|
|
validate_boolean SKILLHUB_BUILTIN_SKILLS_ENABLED
|
|
validate_boolean SKILLHUB_STORAGE_S3_FORCE_PATH_STYLE
|
|
validate_boolean SKILLHUB_STORAGE_S3_AUTO_CREATE_BUCKET
|
|
validate_boolean SPRING_DATA_REDIS_SSL_ENABLED
|
|
validate_boolean SKILLHUB_REDIS_SENTINEL_CHECK_SENTINELS_LIST
|
|
|
|
validate_port POSTGRES_PORT
|
|
validate_port REDIS_PORT
|
|
validate_port API_PORT
|
|
validate_port WEB_PORT
|
|
validate_non_negative_integer SPRING_DATA_REDIS_CLUSTER_MAX_REDIRECTS
|
|
validate_redis_nodes SPRING_DATA_REDIS_CLUSTER_NODES
|
|
validate_redis_cluster_database
|
|
validate_redis_sentinel_configuration
|
|
|
|
require_non_empty POSTGRES_DB
|
|
require_non_empty POSTGRES_USER
|
|
require_non_empty POSTGRES_PASSWORD
|
|
|
|
storage_provider="${SKILLHUB_STORAGE_PROVIDER:-}"
|
|
case "$storage_provider" in
|
|
s3)
|
|
require_non_empty SKILLHUB_STORAGE_S3_ENDPOINT
|
|
require_non_empty SKILLHUB_STORAGE_S3_BUCKET
|
|
require_non_empty SKILLHUB_STORAGE_S3_ACCESS_KEY
|
|
require_non_empty SKILLHUB_STORAGE_S3_SECRET_KEY
|
|
require_non_empty SKILLHUB_STORAGE_S3_REGION
|
|
validate_url SKILLHUB_STORAGE_S3_ENDPOINT
|
|
validate_url SKILLHUB_STORAGE_S3_PUBLIC_ENDPOINT
|
|
;;
|
|
local)
|
|
warn "SKILLHUB_STORAGE_PROVIDER=local is only suitable for non-production or temporary validation"
|
|
;;
|
|
"")
|
|
error "SKILLHUB_STORAGE_PROVIDER is required"
|
|
;;
|
|
*)
|
|
error "SKILLHUB_STORAGE_PROVIDER must be either local or s3"
|
|
;;
|
|
esac
|
|
|
|
if [ -n "${SKILLHUB_WEB_API_BASE_URL:-}" ]; then
|
|
validate_web_api_base_url SKILLHUB_WEB_API_BASE_URL
|
|
validate_no_trailing_slash SKILLHUB_WEB_API_BASE_URL
|
|
fi
|
|
|
|
validate_web_base_path_format
|
|
validate_public_base_path_alignment
|
|
validate_api_base_path_alignment
|
|
|
|
if [ -n "${DEVICE_AUTH_VERIFICATION_URI:-}" ]; then
|
|
validate_url DEVICE_AUTH_VERIFICATION_URI
|
|
fi
|
|
|
|
if [ "${SESSION_COOKIE_SECURE:-true}" != "true" ]; then
|
|
warn "SESSION_COOKIE_SECURE is not true; only acceptable behind plain HTTP during temporary local verification"
|
|
fi
|
|
|
|
if [ "${POSTGRES_BIND_ADDRESS:-127.0.0.1}" != "127.0.0.1" ]; then
|
|
warn "POSTGRES_BIND_ADDRESS is not 127.0.0.1; confirm database exposure is intended"
|
|
fi
|
|
|
|
if [ "${REDIS_BIND_ADDRESS:-127.0.0.1}" != "127.0.0.1" ]; then
|
|
warn "REDIS_BIND_ADDRESS is not 127.0.0.1; confirm Redis exposure is intended"
|
|
fi
|
|
|
|
for provider in GITHUB GITLAB FEISHU; do
|
|
eval "oauth_id=\"\${OAUTH2_${provider}_CLIENT_ID:-}\""
|
|
eval "oauth_secret=\"\${OAUTH2_${provider}_CLIENT_SECRET:-}\""
|
|
if [ -n "$oauth_id" ] && [ -z "$oauth_secret" ]; then
|
|
error "OAUTH2_${provider}_CLIENT_SECRET is required when OAUTH2_${provider}_CLIENT_ID is set"
|
|
fi
|
|
if [ -n "$oauth_secret" ] && [ -z "$oauth_id" ]; then
|
|
error "OAUTH2_${provider}_CLIENT_ID is required when OAUTH2_${provider}_CLIENT_SECRET is set"
|
|
fi
|
|
done
|
|
|
|
feishu_protocol="${OAUTH2_FEISHU_PROTOCOL_VERSION:-v3}"
|
|
case "$feishu_protocol" in
|
|
v2|v3) ;;
|
|
*) error "OAUTH2_FEISHU_PROTOCOL_VERSION must be either v2 or v3" ;;
|
|
esac
|
|
|
|
# OAuth endpoints are sent directly to the provider. Validate them here so a
|
|
# typo fails before the release container starts.
|
|
for feishu_endpoint in OAUTH2_FEISHU_AUTHORIZATION_URI OAUTH2_FEISHU_TOKEN_URI OAUTH2_FEISHU_USER_INFO_URI OAUTH2_FEISHU_REDIRECT_URI; do
|
|
eval "feishu_endpoint_value=\${$feishu_endpoint:-}"
|
|
if [ -n "$feishu_endpoint_value" ]; then
|
|
validate_url "$feishu_endpoint"
|
|
fi
|
|
done
|
|
|
|
if [ "$errors" -gt 0 ]; then
|
|
echo "Release config validation failed: $errors error(s), $warnings warning(s)." >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "Release config validation passed with $warnings warning(s)."
|