惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
小众软件
小众软件
量子位
月光博客
月光博客
P
Proofpoint News Feed
IT之家
IT之家
腾讯CDC
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
雷峰网
雷峰网
V
Visual Studio Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: split slack client option imports · openclaw/opencl...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,98 +1,11 @@

1-

import { type RetryOptions, type WebClientOptions, WebClient } from "@slack/web-api";

2-

import { HttpsProxyAgent } from "https-proxy-agent";

3-

import { resolveEnvHttpProxyUrl } from "openclaw/plugin-sdk/infra-runtime";

4-5-

export const SLACK_DEFAULT_RETRY_OPTIONS: RetryOptions = {

6-

retries: 2,

7-

factor: 2,

8-

minTimeout: 500,

9-

maxTimeout: 3000,

10-

randomize: true,

11-

};

12-13-

export const SLACK_WRITE_RETRY_OPTIONS: RetryOptions = {

14-

retries: 0,

15-

};

16-17-

/**

18-

* Check whether a hostname is excluded from proxying by `NO_PROXY` / `no_proxy`.

19-

* Supports comma-separated entries with optional leading dots (e.g. `.slack.com`).

20-

*/

21-

function isHostExcludedByNoProxy(hostname: string, env: NodeJS.ProcessEnv = process.env): boolean {

22-

const raw = env.no_proxy ?? env.NO_PROXY;

23-

if (!raw) {

24-

return false;

25-

}

26-

const entries = raw

27-

.split(/[,\s]+/)

28-

.map((e) => e.trim().toLowerCase())

29-

.filter(Boolean);

30-

const lower = hostname.toLowerCase();

31-

for (const entry of entries) {

32-

if (entry === "*") {

33-

return true;

34-

}

35-

// Strip optional wildcard/leading dot so `*.slack.com` and `.slack.com`

36-

// match both `slack.com` (apex) and Slack subdomains.

37-

const bare = entry.startsWith("*.")

38-

? entry.slice(2)

39-

: entry.startsWith(".")

40-

? entry.slice(1)

41-

: entry;

42-

if (lower === bare || lower.endsWith(`.${bare}`)) {

43-

return true;

44-

}

45-

}

46-

return false;

47-

}

48-49-

/**

50-

* Build an HTTPS proxy agent from env vars (HTTPS_PROXY, HTTP_PROXY, etc.)

51-

* for use as the `agent` option in Slack WebClient and Socket Mode connections.

52-

*

53-

* When set, this agent is forwarded through @slack/bolt → @slack/socket-mode →

54-

* SlackWebSocket as the `httpAgent`, which the `ws` library uses to tunnel the

55-

* WebSocket upgrade request through the proxy. This fixes Socket Mode in

56-

* environments where outbound traffic must go through an HTTP CONNECT proxy.

57-

*

58-

* Respects `NO_PROXY` / `no_proxy` — if `*.slack.com` (or a matching pattern)

59-

* appears in the exclusion list, returns `undefined` so the connection is direct.

60-

*

61-

* Returns `undefined` when no proxy env var is configured or when Slack hosts

62-

* are excluded by `NO_PROXY`.

63-

*/

64-

function resolveSlackProxyAgent(): HttpsProxyAgent<string> | undefined {

65-

const proxyUrl = resolveEnvHttpProxyUrl("https");

66-

if (!proxyUrl) {

67-

return undefined;

68-

}

69-

// Slack Socket Mode connects to these hosts; skip proxy if excluded.

70-

if (isHostExcludedByNoProxy("slack.com")) {

71-

return undefined;

72-

}

73-

try {

74-

return new HttpsProxyAgent(proxyUrl);

75-

} catch {

76-

// Malformed proxy URL — degrade gracefully to direct connection.

77-

return undefined;

78-

}

79-

}

80-81-

export function resolveSlackWebClientOptions(options: WebClientOptions = {}): WebClientOptions {

82-

return {

83-

...options,

84-

agent: options.agent ?? resolveSlackProxyAgent(),

85-

retryConfig: options.retryConfig ?? SLACK_DEFAULT_RETRY_OPTIONS,

86-

};

87-

}

88-89-

export function resolveSlackWriteClientOptions(options: WebClientOptions = {}): WebClientOptions {

90-

return {

91-

...options,

92-

agent: options.agent ?? resolveSlackProxyAgent(),

93-

retryConfig: options.retryConfig ?? SLACK_WRITE_RETRY_OPTIONS,

94-

};

95-

}

1+

import { type WebClientOptions, WebClient } from "@slack/web-api";

2+

import { resolveSlackWebClientOptions, resolveSlackWriteClientOptions } from "./client-options.js";

3+

export {

4+

resolveSlackWebClientOptions,

5+

resolveSlackWriteClientOptions,

6+

SLACK_DEFAULT_RETRY_OPTIONS,

7+

SLACK_WRITE_RETRY_OPTIONS,

8+

} from "./client-options.js";

9699710

export function createSlackWebClient(token: string, options: WebClientOptions = {}) {

9811

return new WebClient(token, resolveSlackWebClientOptions(options));