[Claude Code Desktop 자동 설치 환경]
- setup/CLAUDE.md: 트리거 키워드 + 설치 패키지 설명
- setup/.claude/skills/guardia-install/SKILL.md: 6단계 설치 오케스트레이터
Phase 0: 의도 파악 → Phase 1: OS 감지 → Phase 2: 사전 확인
Phase 3: 설치 실행 → Phase 4: 라이선스 발급 → Phase 5: 검증 → Phase 6: 완료보고
[통합 자동 설치 스크립트]
- setup/install_auto.sh: Linux 통합 (OS 자동 감지 ubuntu/centos/rhel)
- --license trial30|trial7|<key> 파라미터
- 설치 완료 후 GUARDiA 자동 실행 + 브라우저 자동 열기
- --test 검증 모드
- setup/install_auto.ps1: Windows 통합 (ASCII 전용, PS 5.1 호환)
- 설치 후 NSSM 서비스 자동 시작 + 브라우저 자동 열기
- -Test 파라미터로 검증 전용 실행
[라이선스 엔진 개선]
- core/license.py: generate_trial_key(days=None) 파라미터 추가
- TRIAL_DURATION_DAYS = TRIAL_DURATION_DAYS 환경변수로 조정 가능
- routers/license.py: TrialRequest.days 필드 + 30일 체험판 지원
POST /api/license/trial {"days": 30} 로 30일 발급
사용자 경험:
1. setup/ 폴더를 새 PC에 복사
2. Claude Code Desktop 열고 해당 폴더 open
3. "GUARDiA 시스템 1달 사용자로 설치해 줘" 입력
4. 자동으로 OS 감지 → 설치 → 30일 라이선스 → 브라우저 열림
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
139 lines
4.3 KiB
JavaScript
139 lines
4.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = populatePlaceholders;
|
|
var _t = require("@babel/types");
|
|
const {
|
|
blockStatement,
|
|
cloneNode,
|
|
emptyStatement,
|
|
expressionStatement,
|
|
identifier,
|
|
isStatement,
|
|
isStringLiteral,
|
|
stringLiteral,
|
|
validate
|
|
} = _t;
|
|
function populatePlaceholders(metadata, replacements) {
|
|
const ast = cloneNode(metadata.ast);
|
|
if (replacements) {
|
|
metadata.placeholders.forEach(placeholder => {
|
|
if (!hasOwnProperty.call(replacements, placeholder.name)) {
|
|
const placeholderName = placeholder.name;
|
|
throw new Error(`Error: No substitution given for "${placeholderName}". If this is not meant to be a
|
|
placeholder you may want to consider passing one of the following options to @babel/template:
|
|
- { placeholderPattern: false, placeholderWhitelist: new Set(['${placeholderName}'])}
|
|
- { placeholderPattern: /^${placeholderName}$/ }`);
|
|
}
|
|
});
|
|
Object.keys(replacements).forEach(key => {
|
|
if (!metadata.placeholderNames.has(key)) {
|
|
throw new Error(`Unknown substitution "${key}" given`);
|
|
}
|
|
});
|
|
}
|
|
metadata.placeholders.slice().reverse().forEach(placeholder => {
|
|
try {
|
|
var _ref;
|
|
applyReplacement(placeholder, ast, (_ref = replacements && replacements[placeholder.name]) != null ? _ref : null);
|
|
} catch (e) {
|
|
e.message = `@babel/template placeholder "${placeholder.name}": ${e.message}`;
|
|
throw e;
|
|
}
|
|
});
|
|
return ast;
|
|
}
|
|
function applyReplacement(placeholder, ast, replacement) {
|
|
if (placeholder.isDuplicate) {
|
|
if (Array.isArray(replacement)) {
|
|
replacement = replacement.map(node => cloneNode(node));
|
|
} else if (typeof replacement === "object") {
|
|
replacement = cloneNode(replacement);
|
|
}
|
|
}
|
|
const {
|
|
parent,
|
|
key,
|
|
index
|
|
} = placeholder.resolve(ast);
|
|
if (placeholder.type === "string") {
|
|
if (typeof replacement === "string") {
|
|
replacement = stringLiteral(replacement);
|
|
}
|
|
if (!replacement || !isStringLiteral(replacement)) {
|
|
throw new Error("Expected string substitution");
|
|
}
|
|
} else if (placeholder.type === "statement") {
|
|
if (index === undefined) {
|
|
if (!replacement) {
|
|
replacement = emptyStatement();
|
|
} else if (Array.isArray(replacement)) {
|
|
replacement = blockStatement(replacement);
|
|
} else if (typeof replacement === "string") {
|
|
replacement = expressionStatement(identifier(replacement));
|
|
} else if (!isStatement(replacement)) {
|
|
replacement = expressionStatement(replacement);
|
|
}
|
|
} else {
|
|
if (replacement && !Array.isArray(replacement)) {
|
|
if (typeof replacement === "string") {
|
|
replacement = identifier(replacement);
|
|
}
|
|
if (!isStatement(replacement)) {
|
|
replacement = expressionStatement(replacement);
|
|
}
|
|
}
|
|
}
|
|
} else if (placeholder.type === "param") {
|
|
if (typeof replacement === "string") {
|
|
replacement = identifier(replacement);
|
|
}
|
|
if (index === undefined) throw new Error("Assertion failure.");
|
|
} else {
|
|
if (typeof replacement === "string") {
|
|
replacement = identifier(replacement);
|
|
}
|
|
if (Array.isArray(replacement)) {
|
|
throw new Error("Cannot replace single expression with an array.");
|
|
}
|
|
}
|
|
function set(parent, key, value) {
|
|
const node = parent[key];
|
|
parent[key] = value;
|
|
if (node.type === "Identifier" || node.type === "Placeholder") {
|
|
if (node.typeAnnotation) {
|
|
value.typeAnnotation = node.typeAnnotation;
|
|
}
|
|
if (node.optional) {
|
|
value.optional = node.optional;
|
|
}
|
|
if (node.decorators) {
|
|
value.decorators = node.decorators;
|
|
}
|
|
}
|
|
}
|
|
if (index === undefined) {
|
|
validate(parent, key, replacement);
|
|
set(parent, key, replacement);
|
|
} else {
|
|
const items = parent[key].slice();
|
|
if (placeholder.type === "statement" || placeholder.type === "param") {
|
|
if (replacement == null) {
|
|
items.splice(index, 1);
|
|
} else if (Array.isArray(replacement)) {
|
|
items.splice(index, 1, ...replacement);
|
|
} else {
|
|
set(items, index, replacement);
|
|
}
|
|
} else {
|
|
set(items, index, replacement);
|
|
}
|
|
validate(parent, key, items);
|
|
parent[key] = items;
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=populate.js.map
|