Bundle
설치 단계와 이 플러그인에 대한 전체 마크다운 가이드를 포함한 설정 지시를 복사하세요.
Capgo의 각 번들에는 앱의 콘텐츠를 구성하는 웹 자산 (HTML, CSS, JS) 이 포함되어 있습니다. 번들은 API을 통해 관리할 수 있습니다. 이에는 목록 및 삭제를 포함합니다.
번들 이해
“번들 이해”라는 제목의 섹션번들은 앱의 웹 콘텐츠의 특정 버전을 나타내며 다음을 포함합니다.
- 번들 (버전): Semantic 버전 번호 번들의 버전
- 체크섬: __CAPGO_KEEP_0__을 사용하여 번들 무결성을 확인하는 고유한 해시
- Storage Info: 번들이 저장되는 위치와 방법에 대한 세부 정보
- Native Requirements: 최소 네이티브 앱 버전 요구 사항
- Metadata: 생성 시간, 소유권 및 기타 추적 정보
Manual Bundle Creation (Without CLI)
Manual Bundle Creation (Without CLI)이러한 방법으로 Capgo 없이 번들을 수동으로 생성하고 업로드하세요: CLI
Step 1: Build Your App
Step 1: Build Your App애플리케이션의 웹 자산을 먼저 빌드하세요:
npm run build2단계: Capgo CLI와 동일한 패키지를 사용하여 번들 ZIP을 생성하세요.
제목: 2단계: Capgo CLI와 동일한 패키지를 사용하여 번들 ZIP을 생성하세요.중요: Capgo CLI 내부에서 사용하는 정확한 자바스크립트 패키지를 사용하여 호환성을 보장하세요.
필요한 패키지를 설치하세요.
제목: 필요 패키지를 설치하세요.npm install adm-zip @tomasklaen/checksumCapgo CLI와 동일한 자바스크립트를 사용하여 ZIP 번들을 생성하세요.
Capgo와 CLI와 같은 자바스크립트로 ZIP 압축 파일을 생성하는 방법아래 예시에서 사용되는 version API의 버전 이름을 의미합니다.
const fs = require('node:fs');const path = require('node:path');const os = require('node:os');const AdmZip = require('adm-zip');const { checksum: getChecksum } = require('@tomasklaen/checksum');
// Exact same implementation as Capgo CLIfunction zipFileUnix(filePath) { const zip = new AdmZip(); zip.addLocalFolder(filePath); return zip.toBuffer();}
async function zipFileWindows(filePath) { console.log('Zipping file windows mode'); const zip = new AdmZip();
const addToZip = (folderPath, zipPath) => { const items = fs.readdirSync(folderPath);
for (const item of items) { const itemPath = path.join(folderPath, item); const stats = fs.statSync(itemPath);
if (stats.isFile()) { const fileContent = fs.readFileSync(itemPath); zip.addFile(path.join(zipPath, item).split(path.sep).join('/'), fileContent); } else if (stats.isDirectory()) { addToZip(itemPath, path.join(zipPath, item)); } } };
addToZip(filePath, ''); return zip.toBuffer();}
// Main zipFile function (exact same logic as CLI)async function zipFile(filePath) { if (os.platform() === 'win32') { return zipFileWindows(filePath); } else { return zipFileUnix(filePath); }}
async function createBundle(inputPath, outputPath, version) { // Create zip using exact same method as Capgo CLI const zipped = await zipFile(inputPath);
// Write to file fs.writeFileSync(outputPath, zipped);
// Calculate checksum using exact same package as CLI const checksum = await getChecksum(zipped, 'sha256');
return { filename: path.basename(outputPath), version: version, size: zipped.length, checksum: checksum };}
// Usageasync function main() { try { const result = await createBundle('./dist', './my-app-1.2.3.zip', '1.2.3'); console.log('Bundle info:', JSON.stringify(result, null, 2)); } catch (error) { console.error('Error creating bundle:', error); }}
main();3단계: CLI와 같은 패키지를 사용하여 SHA256 체크섬 계산
CLI와 같은 패키지를 사용하여 SHA256 체크섬을 계산하는 방법const fs = require('node:fs');const { checksum: getChecksum } = require('@tomasklaen/checksum');
async function calculateChecksum(filePath) { const fileBuffer = fs.readFileSync(filePath); // Use exact same package and method as Capgo CLI const checksum = await getChecksum(fileBuffer, 'sha256'); return checksum;}
// Usageasync function main() { const checksum = await calculateChecksum('./my-app-1.2.3.zip'); console.log('Checksum:', checksum);}
main();4단계: 업로드할 ZIP 파일을 저장소에 업로드
ZIP 파일을 웹에 접근 가능한 저장소에 업로드하세요:터미널 창
# Example: Upload to your server via scpscp my-app-1.2.3.zip user@your-server.com:/var/www/bundles/
# Example: Upload to S3 using AWS CLIaws s3 cp my-app-1.2.3.zip s3://your-bucket/bundles/
# Example: Upload via curl to a custom endpointcurl -X POST https://your-storage-api.com/upload \ -H "Authorization: Bearer YOUR_TOKEN" \ -F "file=@my-app-1.2.3.zip"중요: __CAPGO_KEEP_0__의 번들을 다운로드하기 위해 __CAPGO_KEEP_0__의 서버가 이 URL에서 번들을 다운로드해야 합니다. HTTPS URL (인증이 필요하지 않음)로 공개적으로 접근할 수 있어야 합니다. via HTTPS URL (no authentication required). Capgo’s servers need to download the bundle from this URL.
5단계: __CAPGO_KEEP_0__ __CAPGO_KEEP_1__에 번들을 등록하세요.
https://your-storage.com/bundles/my-app-1.2.3.ziphttps://github.com/username/repo/releases/download/v1.2.3/bundle.ziphttps://cdn.jsdelivr.net/gh/username/repo@v1.2.3/dist.zip
5단계: Capgo API에 번들을 등록하세요.
Capgo API을 직접 호출하여 외부 번들을 Capgo에 등록하세요.Register the external bundle with Capgo using direct API calls:
async function registerWithCapgo(appId, version, bundleUrl, checksum, apiKey) { const fetch = require('node-fetch');
// Create bundle (version) const response = await fetch('https://api.capgo.app/bundle/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'authorization': apiKey }, body: JSON.stringify({ app_id: appId, version: version, external_url: bundleUrl, checksum: checksum }) });
if (!response.ok) { throw new Error(`Failed to create bundle: ${response.statusText}`); }
const data = await response.json(); console.log('Bundle created:', data);
return data;}API 매개변수
Section titled “API Parameters”| __CAPGO_KEEP_0__ Parameters | 설명 | 필수 |
|---|---|---|
app_id | 앱 식별자 | 예 |
version | 버nd (버전) Semantic 버전 (예: “1.2.3”) | 예 |
external_url | 공개적으로 접근 가능 HTTPS URL에서 버nd가 다운로드 될 수 있는 URL (인증 필요 없음) | 예 |
checksum | zip 파일의 SHA256 체크섬 | Yes |
Bundle Structure Requirements
Bundle Structure RequirementsYour bundle zip must follow these requirements:
- Root Index File: Must have
index.htmlat the root level - Capacitor Integration: Must call
notifyAppReady()in your app code - Asset Paths: Use relative paths for all assets
유효한 번들 구조
유효한 번들 구조 섹션bundle.zip├── index.html├── assets/│ ├── app.js│ └── styles.css└── images/완전한 수동 워크플로 예시
완전한 수동 워크플로 예시 섹션Capgo로 압축, 체크섬, 업로드하는 간단한 Node.js 스크립트
const fs = require('node:fs');const os = require('node:os');const AdmZip = require('adm-zip');const { checksum: getChecksum } = require('@tomasklaen/checksum');const fetch = require('node-fetch');
async function deployToCapgo() { const APP_ID = 'com.example.app'; const VERSION = '1.2.3'; const BUNDLE_URL = 'https://your-storage.com/bundles/app-1.2.3.zip'; const API_KEY = process.env.CAPGO_API_KEY;
// 1. Create zip (same as Capgo CLI) const zip = new AdmZip(); zip.addLocalFolder('./dist'); const zipped = zip.toBuffer();
// 2. Calculate checksum (same as Capgo CLI) const checksum = await getChecksum(zipped, 'sha256'); console.log('Checksum:', checksum);
// 3. Upload to your storage (replace with your upload logic) // fs.writeFileSync('./bundle.zip', zipped); // ... upload bundle.zip to your storage ...
// 4. Register with Capgo API const response = await fetch('https://api.capgo.app/bundle/', { method: 'POST', headers: { 'Content-Type': 'application/json', 'authorization': API_KEY }, body: JSON.stringify({ app_id: APP_ID, version: VERSION, external_url: BUNDLE_URL, checksum: checksum }) });
if (!response.ok) { throw new Error(`Failed: ${response.statusText}`); }
console.log('Bundle registered with Capgo!');}
deployToCapgo().catch(console.error);의존성 설치:
npm install adm-zip @tomasklaen/checksum node-fetch체크섬 검증
체크섬 검증 섹션자바스크립트 체크섬 계산 (Capgo과 CLI과 동일)
자바스크립트 체크섬 계산 (Capgo과 CLI과 동일) 섹션Capgo과 CLI이 내부적으로 사용하는 정확한 패키지와 메서드를 사용하십시오:
const fs = require('node:fs');const { checksum: getChecksum } = require('@tomasklaen/checksum');
async function calculateChecksum(filePath) { const fileBuffer = fs.readFileSync(filePath); // Use exact same package and method as Capgo CLI const checksum = await getChecksum(fileBuffer, 'sha256'); return checksum;}
// Verify checksum matchesasync function verifyChecksum(filePath, expectedChecksum) { const actualChecksum = await calculateChecksum(filePath); const isValid = actualChecksum === expectedChecksum;
console.log(`File: ${filePath}`); console.log(`Expected: ${expectedChecksum}`); console.log(`Actual: ${actualChecksum}`); console.log(`Valid: ${isValid}`);
return isValid;}
// Usageasync function main() { const bundleChecksum = await calculateChecksum('./my-app-1.2.3.zip'); console.log('SHA256 Checksum:', bundleChecksum);}
main();체크섬의 중요성
체크섬의 중요성 섹션- 배달完整성: 배달 중에 손상되지 않은 것을 확인합니다.
- API 체크섬 확인: Capgo이 체크섬을 확인하기 전에 배달을 수락합니다.
- 플러그인 확인: 모바일 플러그인이 업데이트를 적용하기 전에 체크섬을 확인합니다.
Best Practices
Best Practices 섹션- Bundle (버전) 관리: 사용 일관성 있게 저장소 최적화
- : 사용하지 않는 번들을 정기적으로 제거Bundle (버전) 호환성
- : 적절한 최소 네이티브 버전 요구 사항을 설정백업 전략
- : 중요한 번들의 백업을 유지Backup Strategy
API 포인트
API 포인트 섹션GET
GET 섹션https://api.capgo.app/bundle/
배포 정보를 가져옵니다. 1페이지당 50개의 배포본을 반환합니다.
쿼리 매개변수
API 포인트 섹션app_id: 필수. 앱의 IDpage: 선택. 페이징을 위한 페이지 번호
응답 유형
응답 유형 섹션interface Bundle { app_id: string bucket_id: string | null checksum: string | null created_at: string | null deleted: boolean external_url: string | null id: number minUpdateVersion: string | null name: string native_packages: Json[] | null owner_org: string r2_path: string | null session_key: string | null storage_provider: string updated_at: string | null user_id: string | null}예시 요청
예시 요청 섹션# Get all bundlescurl -H "authorization: your-api-key" \ "https://api.capgo.app/bundle/?app_id=app_123"
# Get next pagecurl -H "authorization: your-api-key" \ "https://api.capgo.app/bundle/?app_id=app_123&page=1"예시 응답
예시 응답 섹션{ "data": [ { "id": 1, "app_id": "app_123", "name": "1.0.0", "checksum": "abc123...", "minUpdateVersion": "1.0.0", "storage_provider": "r2", "created_at": "2024-01-01T00:00:00Z", "updated_at": "2024-01-01T00:00:00Z", "deleted": false, "owner_org": "org_123", "user_id": "user_123" } ]}DELETE
DELETE 섹션https://api.capgo.app/bundle/
앱에 대한 모든 또는 하나의 번들을 삭제합니다. 이 작업은 되돌릴 수 없으므로 주의가 필요합니다.
쿼리 매개변수
쿼리 매개변수 섹션__CAPGO_KEEP_0__ 삭제를 위해:
interface BundleDelete { app_id: string version: string}__CAPGO_KEEP_0__ 모든 삭제를 위해:
interface BundleDeleteAll { app_id: string}예시 요청
예시 요청 섹션# Delete specific bundlecurl -X DELETE \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "app_123", "version": "1.0.0" }' \ https://api.capgo.app/bundle/
# Delete all bundlescurl -X DELETE \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "app_123" }' \ https://api.capgo.app/bundle/성공 응답
성공 응답 섹션{ "status": "ok"}POST
POST 섹션 제목https://api.capgo.app/bundle/
외부 URL을 가진 새로운 번들을 생성하세요.
요청 본문
요청 본문 섹션 제목interface CreateBundleBody { app_id: string version: string external_url: string // Must be publicly accessible HTTPS URL checksum: string}예제 요청
예제 요청 섹션 제목curl -X POST \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "com.example.app", "version": "1.2.3", "external_url": "https://your-storage.com/bundles/app-1.2.3.zip", "checksum": "a1b2c3d4e5f6789abcdef123456789abcdef123456789abcdef123456789abcd" }' \ https://api.capgo.app/bundle/성공 응답
성공 응답 섹션 제목{ "status": "ok"}POST (Metadata)
POST (Metadata) 섹션https://api.capgo.app/bundle/metadata
링크 및 댓글 정보를 포함한 번들 메타데이터를 업데이트합니다.
Request Body
Request Body 섹션interface UpdateMetadataBody { app_id: string version_id: number // bundle (version) id link?: string comment?: string}curl -X POST \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "app_123", "version_id": 456, "link": "https://github.com/myorg/myapp/releases/tag/v1.0.0", "comment": "Fixed critical bug in authentication" }' \ https://api.capgo.app/bundle/metadata{ "status": "success"}PUT
PUThttps://api.capgo.app/bundle/
__CAPGO_KEEP_1__
__CAPGO_KEEP_2__
복사interface SetChannelBody { app_id: string version_id: number // bundle (version) id channel_id: number}__CAPGO_KEEP_3__
__CAPGO_KEEP_4__curl -X PUT \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "app_123", "version_id": 456, "channel_id": 789 }' \ https://api.capgo.app/bundle/__CAPGO_KEEP_6__
성공 응답 섹션{ "status": "success", "message": "Bundle 1.0.0 set to channel production"}오류 처리
오류 처리 섹션일반 오류 상황 및 응답:
// Bundle not found{ "error": "Bundle not found", "status": "KO"}
// Invalid bundle (version) format{ "error": "Invalid version format", "status": "KO"}
// Storage error{ "error": "Failed to delete bundle from storage", "status": "KO"}
// Permission denied{ "error": "Insufficient permissions to manage bundles", "status": "KO"}일반 사용 사례
사용 사례 섹션- 기존 버전의 번들 정리
// Delete outdated beta bundles (versions){ "app_id": "app_123", "version": "1.0.0-beta.1"}- 앱 리셋
// Remove all bundles to start fresh{ "app_id": "app_123"}저장 고려 사항
저장 고려 사항- 보존 정책: 오래된 번들을 보존하는 기간을 정의하세요
- 크기 관리: 번들 크기와 저장 용량을 모니터링하세요
- 백업 전략: 중요한 번들을 백업하는 것을 고려하세요 (버전)
- 비용 최적화: 불필요한 번들을 삭제하여 저장 비용을 최적화하세요
번들에서 계속
번들에서 계속storage와 파일 처리를 계획하고 관리하기 위해 Bundles storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-data-storage-sqlite storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-data-storage-sqlite storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-data-storage-sqlite for the native capability in Using @capgo/capacitor-data-storage-sqlite, @capgo/capacitor-file storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-file storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-file storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-file storage와 파일 처리를 계획하고 관리하기 위해 @capgo/capacitor-uploader implementation 세부 정보에 대한 @capgo/capacitor-업로더.