Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add trusted_domains variable to code-server module for link protection#435

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
Foorack wants to merge2 commits intocoder:main
base:main
Choose a base branch
Loading
fromFoorack:link-protection-trusted-domains

Conversation

Foorack
Copy link

Description

This PR adds support for configuring trusted domains in the code-server module through a newtrusted_domains variable.

This allows users to specify domains that should be trusted for link protection using code-server's--link-protection-trusted-domains option.

Type of Change

  • New module
  • Bug fix
  • Feature/enhancement
  • Documentation
  • Other

Module Information

Path:registry/coder/modules/code-server
New version: N/A
Breaking change: [ ] Yes [X] No

Related Issues

microsoft/vscode#82794

coder/coder#19995

@CopilotCopilotAI review requested due to automatic review settingsSeptember 27, 2025 16:56
Copy link
Contributor

@CopilotCopilotAI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Pull Request Overview

This PR adds support for configuring trusted domains in the code-server module to enable link protection functionality. Users can now specify a list of domains that should be trusted when code-server validates external links.

  • Adds a newtrusted_domains variable to accept a list of trusted domain strings
  • Updates the run script to process the domains and pass them to code-server via--link-protection-trusted-domains flags
  • Integrates the trusted domains configuration into the coder_script resource environment

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.

FileDescription
main.tfAddstrusted_domains variable definition and passes it to the script environment
run.shImplements domain processing logic and adds trusted domains arguments to code-server command

@Foorack
Copy link
Author

If I understand these logs correctly, the error has nothing to do with this change?

registry/coder/modules/agentapi/main.test.ts:registry/thezoker/modules/nodejs/main.test.ts:7 tests failed:(fail) jfrog-oauth > can run apply with required variables(fail) jfrog-token > can run apply with required variables(fail) github-upload-public-key > creates new key if one does not exist [15002.08ms]  ^ this test timed out after 15000ms.(fail) github-upload-public-key > does nothing if one already exists [5001.03ms]  ^ this test timed out after 5000ms.(fail) code-server > required variables [135.00ms](fail) code-server > use_cached and offline can not be used together [133.00ms](fail) code-server > offline and extensions can not be used together [136.00ms] 376 pass 7 fail 2 errors 1083 expect() callsRan 383 tests across 50 files. [453.11s]

@Foorack
Copy link
Author

Will look into testing more this week, as well as adding tests specifically for this new feature.

#1)* Initial plan* Add trusted_domains variable to code-server module for link protectionCo-authored-by: Foorack <5008081+Foorack@users.noreply.github.com>* Remove temporary plan files from commitCo-authored-by: Foorack <5008081+Foorack@users.noreply.github.com>* Refactor TRUSTED_DOMAINS_ARG to match EXTENSION_ARG patternCo-authored-by: Foorack <5008081+Foorack@users.noreply.github.com>* Remove trusted domains tests as requestedCo-authored-by: Foorack <5008081+Foorack@users.noreply.github.com>* Fix trusted domains to use multiple flag instances instead of comma-separated valuesCo-authored-by: Foorack <5008081+Foorack@users.noreply.github.com>* Update registry/coder/modules/code-server/run.shCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>* Update registry/coder/modules/code-server/run.shCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>---------Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>Co-authored-by: Foorack <5008081+Foorack@users.noreply.github.com>Co-authored-by: Foorack / Max Faxälv <max@foorack.com>Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
@FoorackFoorackforce-pushed thelink-protection-trusted-domains branch fromccf5b22 to52099eaCompareSeptember 30, 2025 21:24
@FoorackFoorack changed the titleAdd trusted_domains variable to code-server module for link protectionDraft: Add trusted_domains variable to code-server module for link protectionSep 30, 2025
@FoorackFoorack changed the titleDraft: Add trusted_domains variable to code-server module for link protectionAdd trusted_domains variable to code-server module for link protectionSep 30, 2025
@FoorackFoorack marked this pull request as draftSeptember 30, 2025 21:24
Comment on lines +16 to +23
# Set trusted domains argument
TRUSTED_DOMAINS_ARG=""
if [-n"${TRUSTED_DOMAINS}" ];then
# Split comma-separated domains and create multiple --link-protection-trusted-domains arguments
IFS=','read -r -a DOMAINS_ARRAY<<<"${TRUSTED_DOMAINS}"
fordomainin"${DOMAINS_ARRAY[@]}";do
if [-n"$domain" ];then
TRUSTED_DOMAINS_ARG="$TRUSTED_DOMAINS_ARG --link-protection-trusted-domains=${domain}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

@Foorack Have you tested this module to make sure it works after the update?

This doesn't interpret correctly.

Suggested change
# Set trusted domains argument
TRUSTED_DOMAINS_ARG=""
if [-n"${TRUSTED_DOMAINS}" ];then
# Split comma-separated domains and create multiple --link-protection-trusted-domains arguments
IFS=','read -r -a DOMAINS_ARRAY<<<"${TRUSTED_DOMAINS}"
fordomainin"${DOMAINS_ARRAY[@]}";do
if [-n"$domain" ];then
TRUSTED_DOMAINS_ARG="$TRUSTED_DOMAINS_ARG --link-protection-trusted-domains=${domain}"
# Set trusted domains argument
TRUSTED_DOMAINS_ARG=""
if [-n"${TRUSTED_DOMAINS}" ];then
# Split comma-separated domains and create multiple --link-protection-trusted-domains arguments
fordomainin$(echo"${TRUSTED_DOMAINS}"| tr',''');do
if [-n"$domain" ];then
TRUSTED_DOMAINS_ARG="$TRUSTED_DOMAINS_ARG --link-protection-trusted-domains=$domain"

@DevelopmentCatsDevelopmentCats marked this pull request as ready for reviewOctober 2, 2025 21:53
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

Copilot code reviewCopilotCopilot left review comments

@DevelopmentCatsDevelopmentCatsDevelopmentCats left review comments

At least 1 approving review is required to merge this pull request.

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

2 participants
@Foorack@DevelopmentCats

[8]ページ先頭

©2009-2025 Movatter.jp