alurkerja-cli 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -56,10 +56,13 @@ function getVersion() {
56
56
  */
57
57
  async function downloadBinary(version, platform) {
58
58
  const binaryName = `alurkerja-${platform.os}-${platform.arch}${platform.os === 'windows' ? '.exe' : ''}`;
59
- // Use GitLab raw file download with correct parameters
60
- const downloadUrl = `${GITLAB_BASE}/-/raw/master/dist/${binaryName}?ref_type=heads&inline=false`;
61
59
 
62
- console.log(`📥 Downloading Alurkerja CLI For ${platform.os}-${platform.arch} ${downloadUrl} ${binaryName} ${version}...`);
60
+ // Use GitLab API v4 to get raw file with PRIVATE-TOKEN authentication
61
+ const projectPath = encodeURIComponent('alurkerja/on-premises/toolkits/alurkerja-cli');
62
+ const filePath = encodeURIComponent(`dist/${binaryName}`);
63
+ const downloadUrl = `https://gitlab.javan.co.id/api/v4/projects/${projectPath}/repository/files/${filePath}/raw?ref=master`;
64
+
65
+ console.log(`📥 Downloading Alurkerja CLI ${version} for ${platform.os}-${platform.arch}...`);
63
66
 
64
67
  // Ensure install directory exists
65
68
  fs.mkdirSync(INSTALL_DIR, { recursive: true });
@@ -78,15 +81,17 @@ async function downloadBinary(version, platform) {
78
81
  path: url.pathname + url.search,
79
82
  headers: {
80
83
  'PRIVATE-TOKEN': GITLAB_TOKEN
81
- }
84
+ },
85
+ followRedirect: true
82
86
  };
83
87
 
84
88
  const req = https.get(options, (res) => {
85
89
  if (res.statusCode === 302 || res.statusCode === 301) {
86
- // Follow redirect
90
+ // Follow redirect with PRIVATE-TOKEN header
87
91
  const redirectUrl = res.headers.location.startsWith('http')
88
92
  ? res.headers.location
89
93
  : `https://${url.hostname}${res.headers.location}`;
94
+
90
95
  return downloadFile(redirectUrl);
91
96
  }
92
97
 
package/index.js.backup CHANGED
@@ -56,10 +56,13 @@ function getVersion() {
56
56
  */
57
57
  async function downloadBinary(version, platform) {
58
58
  const binaryName = `alurkerja-${platform.os}-${platform.arch}${platform.os === 'windows' ? '.exe' : ''}`;
59
- // Use GitLab raw file download with correct parameters
60
- const downloadUrl = `${GITLAB_BASE}/-/raw/master/dist/${binaryName}?ref_type=heads&inline=false`;
61
59
 
62
- console.log(`📥 Downloading Alurkerja CLI For ${platform.os}-${platform.arch} ${downloadUrl} ${binaryName} ${version}...`);
60
+ // Use GitLab API v4 to get raw file with PRIVATE-TOKEN authentication
61
+ const projectPath = encodeURIComponent('alurkerja/on-premises/toolkits/alurkerja-cli');
62
+ const filePath = encodeURIComponent(`dist/${binaryName}`);
63
+ const downloadUrl = `https://gitlab.javan.co.id/api/v4/projects/${projectPath}/repository/files/${filePath}/raw?ref=master`;
64
+
65
+ console.log(`📥 Downloading Alurkerja CLI ${version} for ${platform.os}-${platform.arch}...`);
63
66
 
64
67
  // Ensure install directory exists
65
68
  fs.mkdirSync(INSTALL_DIR, { recursive: true });
@@ -78,15 +81,17 @@ async function downloadBinary(version, platform) {
78
81
  path: url.pathname + url.search,
79
82
  headers: {
80
83
  'PRIVATE-TOKEN': GITLAB_TOKEN
81
- }
84
+ },
85
+ followRedirect: true
82
86
  };
83
87
 
84
88
  const req = https.get(options, (res) => {
85
89
  if (res.statusCode === 302 || res.statusCode === 301) {
86
- // Follow redirect
90
+ // Follow redirect with PRIVATE-TOKEN header
87
91
  const redirectUrl = res.headers.location.startsWith('http')
88
92
  ? res.headers.location
89
93
  : `https://${url.hostname}${res.headers.location}`;
94
+
90
95
  return downloadFile(redirectUrl);
91
96
  }
92
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alurkerja-cli",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Alurkerja CLI - npx wrapper for Go binary",
5
5
  "main": "index.js",
6
6
  "private": false,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alurkerja-cli",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Alurkerja CLI - npx wrapper for Go binary",
5
5
  "main": "index.js",
6
6
  "private": false,