@base44-preview/cli 0.1.15-pr.630.a6f9272 → 0.1.15-pr.630.c53fe4d
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/dist/cli/index.js +970 -693
- package/dist/cli/index.js.map +22 -21
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -52822,7 +52822,7 @@ function canBreakFn(doc) {
|
|
|
52822
52822
|
function canBreak(doc) {
|
|
52823
52823
|
return findInDoc(doc, canBreakFn, false);
|
|
52824
52824
|
}
|
|
52825
|
-
function
|
|
52825
|
+
function indent2(contents) {
|
|
52826
52826
|
assertDoc(contents);
|
|
52827
52827
|
return { type: DOC_TYPE_INDENT, contents };
|
|
52828
52828
|
}
|
|
@@ -52845,7 +52845,7 @@ function addAlignmentToDoc(doc, size, tabWidth) {
|
|
|
52845
52845
|
let aligned = doc;
|
|
52846
52846
|
if (size > 0) {
|
|
52847
52847
|
for (let level = 0;level < Math.floor(size / tabWidth); ++level) {
|
|
52848
|
-
aligned =
|
|
52848
|
+
aligned = indent2(aligned);
|
|
52849
52849
|
}
|
|
52850
52850
|
aligned = align(size % tabWidth, aligned);
|
|
52851
52851
|
aligned = align(Number.NEGATIVE_INFINITY, aligned);
|
|
@@ -53179,7 +53179,7 @@ function printDocToString(doc, options) {
|
|
|
53179
53179
|
propagateBreaks(doc);
|
|
53180
53180
|
while (commands.length > 0) {
|
|
53181
53181
|
const {
|
|
53182
|
-
indent:
|
|
53182
|
+
indent: indent22,
|
|
53183
53183
|
mode,
|
|
53184
53184
|
doc: doc2
|
|
53185
53185
|
} = commands.pop();
|
|
@@ -53199,7 +53199,7 @@ function printDocToString(doc, options) {
|
|
|
53199
53199
|
case DOC_TYPE_ARRAY:
|
|
53200
53200
|
for (let index = doc2.length - 1;index >= 0; index--) {
|
|
53201
53201
|
commands.push({
|
|
53202
|
-
indent:
|
|
53202
|
+
indent: indent22,
|
|
53203
53203
|
mode,
|
|
53204
53204
|
doc: doc2[index]
|
|
53205
53205
|
});
|
|
@@ -53213,14 +53213,14 @@ function printDocToString(doc, options) {
|
|
|
53213
53213
|
break;
|
|
53214
53214
|
case DOC_TYPE_INDENT:
|
|
53215
53215
|
commands.push({
|
|
53216
|
-
indent: makeIndent(
|
|
53216
|
+
indent: makeIndent(indent22, options),
|
|
53217
53217
|
mode,
|
|
53218
53218
|
doc: doc2.contents
|
|
53219
53219
|
});
|
|
53220
53220
|
break;
|
|
53221
53221
|
case DOC_TYPE_ALIGN:
|
|
53222
53222
|
commands.push({
|
|
53223
|
-
indent: makeAlign(
|
|
53223
|
+
indent: makeAlign(indent22, doc2.n, options),
|
|
53224
53224
|
mode,
|
|
53225
53225
|
doc: doc2.contents
|
|
53226
53226
|
});
|
|
@@ -53233,7 +53233,7 @@ function printDocToString(doc, options) {
|
|
|
53233
53233
|
case MODE_FLAT:
|
|
53234
53234
|
if (!shouldRemeasure) {
|
|
53235
53235
|
commands.push({
|
|
53236
|
-
indent:
|
|
53236
|
+
indent: indent22,
|
|
53237
53237
|
mode: doc2.break ? MODE_BREAK : MODE_FLAT,
|
|
53238
53238
|
doc: doc2.contents
|
|
53239
53239
|
});
|
|
@@ -53242,7 +53242,7 @@ function printDocToString(doc, options) {
|
|
|
53242
53242
|
case MODE_BREAK: {
|
|
53243
53243
|
shouldRemeasure = false;
|
|
53244
53244
|
const next = {
|
|
53245
|
-
indent:
|
|
53245
|
+
indent: indent22,
|
|
53246
53246
|
mode: MODE_FLAT,
|
|
53247
53247
|
doc: doc2.contents
|
|
53248
53248
|
};
|
|
@@ -53255,7 +53255,7 @@ function printDocToString(doc, options) {
|
|
|
53255
53255
|
const mostExpanded = method_at_default(0, doc2.expandedStates, -1);
|
|
53256
53256
|
if (doc2.break) {
|
|
53257
53257
|
commands.push({
|
|
53258
|
-
indent:
|
|
53258
|
+
indent: indent22,
|
|
53259
53259
|
mode: MODE_BREAK,
|
|
53260
53260
|
doc: mostExpanded
|
|
53261
53261
|
});
|
|
@@ -53264,7 +53264,7 @@ function printDocToString(doc, options) {
|
|
|
53264
53264
|
for (let index = 1;index < doc2.expandedStates.length + 1; index++) {
|
|
53265
53265
|
if (index >= doc2.expandedStates.length) {
|
|
53266
53266
|
commands.push({
|
|
53267
|
-
indent:
|
|
53267
|
+
indent: indent22,
|
|
53268
53268
|
mode: MODE_BREAK,
|
|
53269
53269
|
doc: mostExpanded
|
|
53270
53270
|
});
|
|
@@ -53272,7 +53272,7 @@ function printDocToString(doc, options) {
|
|
|
53272
53272
|
} else {
|
|
53273
53273
|
const state = doc2.expandedStates[index];
|
|
53274
53274
|
const cmd = {
|
|
53275
|
-
indent:
|
|
53275
|
+
indent: indent22,
|
|
53276
53276
|
mode: MODE_FLAT,
|
|
53277
53277
|
doc: state
|
|
53278
53278
|
};
|
|
@@ -53285,7 +53285,7 @@ function printDocToString(doc, options) {
|
|
|
53285
53285
|
}
|
|
53286
53286
|
} else {
|
|
53287
53287
|
commands.push({
|
|
53288
|
-
indent:
|
|
53288
|
+
indent: indent22,
|
|
53289
53289
|
mode: MODE_BREAK,
|
|
53290
53290
|
doc: doc2.contents
|
|
53291
53291
|
});
|
|
@@ -53311,12 +53311,12 @@ function printDocToString(doc, options) {
|
|
|
53311
53311
|
const content = parts[offset + 0];
|
|
53312
53312
|
const whitespace = parts[offset + 1];
|
|
53313
53313
|
const contentFlatCommand = {
|
|
53314
|
-
indent:
|
|
53314
|
+
indent: indent22,
|
|
53315
53315
|
mode: MODE_FLAT,
|
|
53316
53316
|
doc: content
|
|
53317
53317
|
};
|
|
53318
53318
|
const contentBreakCommand = {
|
|
53319
|
-
indent:
|
|
53319
|
+
indent: indent22,
|
|
53320
53320
|
mode: MODE_BREAK,
|
|
53321
53321
|
doc: content
|
|
53322
53322
|
};
|
|
@@ -53330,12 +53330,12 @@ function printDocToString(doc, options) {
|
|
|
53330
53330
|
break;
|
|
53331
53331
|
}
|
|
53332
53332
|
const whitespaceFlatCommand = {
|
|
53333
|
-
indent:
|
|
53333
|
+
indent: indent22,
|
|
53334
53334
|
mode: MODE_FLAT,
|
|
53335
53335
|
doc: whitespace
|
|
53336
53336
|
};
|
|
53337
53337
|
const whitespaceBreakCommand = {
|
|
53338
|
-
indent:
|
|
53338
|
+
indent: indent22,
|
|
53339
53339
|
mode: MODE_BREAK,
|
|
53340
53340
|
doc: whitespace
|
|
53341
53341
|
};
|
|
@@ -53349,7 +53349,7 @@ function printDocToString(doc, options) {
|
|
|
53349
53349
|
}
|
|
53350
53350
|
const secondContent = parts[offset + 2];
|
|
53351
53351
|
const remainingCommand = {
|
|
53352
|
-
indent:
|
|
53352
|
+
indent: indent22,
|
|
53353
53353
|
mode,
|
|
53354
53354
|
doc: {
|
|
53355
53355
|
...doc2,
|
|
@@ -53357,7 +53357,7 @@ function printDocToString(doc, options) {
|
|
|
53357
53357
|
}
|
|
53358
53358
|
};
|
|
53359
53359
|
const firstAndSecondContentFlatCommand = {
|
|
53360
|
-
indent:
|
|
53360
|
+
indent: indent22,
|
|
53361
53361
|
mode: MODE_FLAT,
|
|
53362
53362
|
doc: [content, whitespace, secondContent]
|
|
53363
53363
|
};
|
|
@@ -53376,20 +53376,20 @@ function printDocToString(doc, options) {
|
|
|
53376
53376
|
case DOC_TYPE_INDENT_IF_BREAK: {
|
|
53377
53377
|
const groupMode = doc2.groupId ? groupModeMap[doc2.groupId] : mode;
|
|
53378
53378
|
if (groupMode === MODE_BREAK) {
|
|
53379
|
-
const breakContents = doc2.type === DOC_TYPE_IF_BREAK ? doc2.breakContents : doc2.negate ? doc2.contents :
|
|
53379
|
+
const breakContents = doc2.type === DOC_TYPE_IF_BREAK ? doc2.breakContents : doc2.negate ? doc2.contents : indent2(doc2.contents);
|
|
53380
53380
|
if (breakContents) {
|
|
53381
53381
|
commands.push({
|
|
53382
|
-
indent:
|
|
53382
|
+
indent: indent22,
|
|
53383
53383
|
mode,
|
|
53384
53384
|
doc: breakContents
|
|
53385
53385
|
});
|
|
53386
53386
|
}
|
|
53387
53387
|
}
|
|
53388
53388
|
if (groupMode === MODE_FLAT) {
|
|
53389
|
-
const flatContents = doc2.type === DOC_TYPE_IF_BREAK ? doc2.flatContents : doc2.negate ?
|
|
53389
|
+
const flatContents = doc2.type === DOC_TYPE_IF_BREAK ? doc2.flatContents : doc2.negate ? indent2(doc2.contents) : doc2.contents;
|
|
53390
53390
|
if (flatContents) {
|
|
53391
53391
|
commands.push({
|
|
53392
|
-
indent:
|
|
53392
|
+
indent: indent22,
|
|
53393
53393
|
mode,
|
|
53394
53394
|
doc: flatContents
|
|
53395
53395
|
});
|
|
@@ -53399,7 +53399,7 @@ function printDocToString(doc, options) {
|
|
|
53399
53399
|
}
|
|
53400
53400
|
case DOC_TYPE_LINE_SUFFIX:
|
|
53401
53401
|
lineSuffix2.push({
|
|
53402
|
-
indent:
|
|
53402
|
+
indent: indent22,
|
|
53403
53403
|
mode,
|
|
53404
53404
|
doc: doc2.contents
|
|
53405
53405
|
});
|
|
@@ -53407,7 +53407,7 @@ function printDocToString(doc, options) {
|
|
|
53407
53407
|
case DOC_TYPE_LINE_SUFFIX_BOUNDARY:
|
|
53408
53408
|
if (lineSuffix2.length > 0) {
|
|
53409
53409
|
commands.push({
|
|
53410
|
-
indent:
|
|
53410
|
+
indent: indent22,
|
|
53411
53411
|
mode,
|
|
53412
53412
|
doc: hardlineWithoutBreakParent
|
|
53413
53413
|
});
|
|
@@ -53428,7 +53428,7 @@ function printDocToString(doc, options) {
|
|
|
53428
53428
|
case MODE_BREAK:
|
|
53429
53429
|
if (lineSuffix2.length > 0) {
|
|
53430
53430
|
commands.push({
|
|
53431
|
-
indent:
|
|
53431
|
+
indent: indent22,
|
|
53432
53432
|
mode,
|
|
53433
53433
|
doc: doc2
|
|
53434
53434
|
}, ...lineSuffix2.reverse());
|
|
@@ -53438,23 +53438,23 @@ function printDocToString(doc, options) {
|
|
|
53438
53438
|
if (doc2.literal) {
|
|
53439
53439
|
output += newLine;
|
|
53440
53440
|
position = 0;
|
|
53441
|
-
if (
|
|
53442
|
-
if (
|
|
53443
|
-
output +=
|
|
53441
|
+
if (indent22.root) {
|
|
53442
|
+
if (indent22.root.value) {
|
|
53443
|
+
output += indent22.root.value;
|
|
53444
53444
|
}
|
|
53445
|
-
position =
|
|
53445
|
+
position = indent22.root.length;
|
|
53446
53446
|
}
|
|
53447
53447
|
} else {
|
|
53448
53448
|
trim2();
|
|
53449
|
-
output += newLine +
|
|
53450
|
-
position =
|
|
53449
|
+
output += newLine + indent22.value;
|
|
53450
|
+
position = indent22.length;
|
|
53451
53451
|
}
|
|
53452
53452
|
break;
|
|
53453
53453
|
}
|
|
53454
53454
|
break;
|
|
53455
53455
|
case DOC_TYPE_LABEL:
|
|
53456
53456
|
commands.push({
|
|
53457
|
-
indent:
|
|
53457
|
+
indent: indent22,
|
|
53458
53458
|
mode,
|
|
53459
53459
|
doc: doc2.contents
|
|
53460
53460
|
});
|
|
@@ -53616,7 +53616,7 @@ var init_doc = __esm(() => {
|
|
|
53616
53616
|
breakParent,
|
|
53617
53617
|
ifBreak,
|
|
53618
53618
|
trim: trim2,
|
|
53619
|
-
indent,
|
|
53619
|
+
indent: indent2,
|
|
53620
53620
|
indentIfBreak,
|
|
53621
53621
|
align,
|
|
53622
53622
|
addAlignmentToDoc,
|
|
@@ -140754,7 +140754,7 @@ import { pathToFileURL as pathToFileURL5 } from "url";
|
|
|
140754
140754
|
import path122 from "path";
|
|
140755
140755
|
import path142 from "path";
|
|
140756
140756
|
import url22 from "url";
|
|
140757
|
-
function
|
|
140757
|
+
function diffLines2(oldStr, newStr, options8) {
|
|
140758
140758
|
return lineDiff.diff(oldStr, newStr, options8);
|
|
140759
140759
|
}
|
|
140760
140760
|
function tokenize4(value, options8) {
|
|
@@ -140796,10 +140796,10 @@ function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, ne
|
|
|
140796
140796
|
throw new Error("newlineIsToken may not be used with patch-generation functions, only with diffing functions");
|
|
140797
140797
|
}
|
|
140798
140798
|
if (!optionsObj.callback) {
|
|
140799
|
-
return diffLinesResultToPatch(
|
|
140799
|
+
return diffLinesResultToPatch(diffLines2(oldStr, newStr, optionsObj));
|
|
140800
140800
|
} else {
|
|
140801
140801
|
const { callback } = optionsObj;
|
|
140802
|
-
|
|
140802
|
+
diffLines2(oldStr, newStr, Object.assign(Object.assign({}, optionsObj), { callback: (diff) => {
|
|
140803
140803
|
const patch = diffLinesResultToPatch(diff);
|
|
140804
140804
|
callback(patch);
|
|
140805
140805
|
} }));
|
|
@@ -146441,7 +146441,7 @@ var require2, __filename2, __dirname3, __create2, __defProp3, __getOwnPropDesc2,
|
|
|
146441
146441
|
}
|
|
146442
146442
|
}
|
|
146443
146443
|
}, ast_path_default, is_object_default, skipWhitespace, skipSpaces, skipToLineEnd, skipEverythingButNewLine, isNewlineCharacter = (character) => character === `
|
|
146444
|
-
` || character === "\r" || character === "\u2028" || character === "\u2029", skip_newline_default, has_newline_default, is_non_empty_array_default, get_sorted_child_nodes_default, childNodesCache, returnFalse = () => false, isAllEmptyAndNoLineBreak = (text) => !/[\S\n\u2028\u2029]/u.test(text), is_previous_line_empty_default, breakParent2, hardline2,
|
|
146444
|
+
` || character === "\r" || character === "\u2028" || character === "\u2029", skip_newline_default, has_newline_default, is_non_empty_array_default, get_sorted_child_nodes_default, childNodesCache, returnFalse = () => false, isAllEmptyAndNoLineBreak = (text) => !/[\S\n\u2028\u2029]/u.test(text), is_previous_line_empty_default, breakParent2, hardline2, indent3, join32, line22, lineSuffix2, create_print_pre_check_function_default = () => noop_default2, core_options_evaluate_default, arrayToReversed, toReversed, method_to_reversed_default, import_n_readlines, get_interpreter_default, getFileBasename = (file) => {
|
|
146445
146445
|
try {
|
|
146446
146446
|
return path112.basename(toPath4(file));
|
|
146447
146447
|
} catch {
|
|
@@ -156469,7 +156469,7 @@ ${codeblock}`, options8);
|
|
|
156469
156469
|
({
|
|
156470
156470
|
breakParent: breakParent2,
|
|
156471
156471
|
hardline: hardline2,
|
|
156472
|
-
indent:
|
|
156472
|
+
indent: indent3,
|
|
156473
156473
|
join: join32,
|
|
156474
156474
|
line: line22,
|
|
156475
156475
|
lineSuffix: lineSuffix2
|
|
@@ -269450,6 +269450,467 @@ function getAgentsCommand() {
|
|
|
269450
269450
|
return new Command2("agents").description("Manage project agents").addCommand(getAgentsPushCommand()).addCommand(getAgentsPullCommand());
|
|
269451
269451
|
}
|
|
269452
269452
|
|
|
269453
|
+
// src/cli/commands/auth/password-login.ts
|
|
269454
|
+
import { dirname as dirname15, join as join21 } from "node:path";
|
|
269455
|
+
async function passwordLoginAction({ log, runTask }, action) {
|
|
269456
|
+
const shouldEnable = action === "enable";
|
|
269457
|
+
const { project } = await readProjectConfig();
|
|
269458
|
+
const configDir = dirname15(project.configPath);
|
|
269459
|
+
const authDir = join21(configDir, project.authDir);
|
|
269460
|
+
const updated = await runTask("Updating local auth config", async () => {
|
|
269461
|
+
const current = await readAuthConfig(authDir) ?? DEFAULT_AUTH_CONFIG;
|
|
269462
|
+
const merged = { ...current, enableUsernamePassword: shouldEnable };
|
|
269463
|
+
await writeAuthConfig(authDir, merged);
|
|
269464
|
+
return merged;
|
|
269465
|
+
});
|
|
269466
|
+
if (!shouldEnable && !hasAnyLoginMethod(updated)) {
|
|
269467
|
+
log.warn("Disabling password auth will leave no login methods enabled. Users will be locked out.");
|
|
269468
|
+
}
|
|
269469
|
+
const newStatus = shouldEnable ? "enabled" : "disabled";
|
|
269470
|
+
return {
|
|
269471
|
+
outroMessage: `Username & password authentication ${newStatus} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`
|
|
269472
|
+
};
|
|
269473
|
+
}
|
|
269474
|
+
function getPasswordLoginCommand() {
|
|
269475
|
+
return new Base44Command("password-login").description("Enable or disable username & password authentication").addArgument(new Argument2("<action>", "enable or disable password authentication").choices(["enable", "disable"])).action(passwordLoginAction);
|
|
269476
|
+
}
|
|
269477
|
+
|
|
269478
|
+
// src/cli/commands/auth/pull.ts
|
|
269479
|
+
import { dirname as dirname16, join as join22 } from "node:path";
|
|
269480
|
+
async function pullAuthAction({
|
|
269481
|
+
log,
|
|
269482
|
+
runTask
|
|
269483
|
+
}) {
|
|
269484
|
+
const { project } = await readProjectConfig();
|
|
269485
|
+
const configDir = dirname16(project.configPath);
|
|
269486
|
+
const authDir = join22(configDir, project.authDir);
|
|
269487
|
+
const remoteConfig = await runTask("Fetching auth config from Base44", async () => {
|
|
269488
|
+
return await pullAuthConfig();
|
|
269489
|
+
}, {
|
|
269490
|
+
successMessage: "Auth config fetched successfully",
|
|
269491
|
+
errorMessage: "Failed to fetch auth config"
|
|
269492
|
+
});
|
|
269493
|
+
const { written } = await runTask("Syncing auth config file", async () => {
|
|
269494
|
+
return await writeAuthConfig(authDir, remoteConfig);
|
|
269495
|
+
}, {
|
|
269496
|
+
successMessage: "Auth config file synced successfully",
|
|
269497
|
+
errorMessage: "Failed to sync auth config file"
|
|
269498
|
+
});
|
|
269499
|
+
if (written) {
|
|
269500
|
+
log.success("Auth config written to local file");
|
|
269501
|
+
} else {
|
|
269502
|
+
log.info("Auth config is already up to date");
|
|
269503
|
+
}
|
|
269504
|
+
return {
|
|
269505
|
+
outroMessage: `Pulled auth config to ${authDir} (overwrites local file)`
|
|
269506
|
+
};
|
|
269507
|
+
}
|
|
269508
|
+
function getAuthPullCommand() {
|
|
269509
|
+
return new Base44Command("pull").description("Pull auth config from Base44 to local file").action(pullAuthAction);
|
|
269510
|
+
}
|
|
269511
|
+
|
|
269512
|
+
// src/cli/commands/auth/push.ts
|
|
269513
|
+
async function pushAuthAction({ isNonInteractive, log, runTask }, options) {
|
|
269514
|
+
const { authConfig } = await readProjectConfig();
|
|
269515
|
+
if (authConfig.length === 0) {
|
|
269516
|
+
log.info("No local auth config found");
|
|
269517
|
+
return {
|
|
269518
|
+
outroMessage: "No auth config to push. Run `base44 auth pull` to fetch the remote config first."
|
|
269519
|
+
};
|
|
269520
|
+
}
|
|
269521
|
+
if (!hasAnyLoginMethod(authConfig[0])) {
|
|
269522
|
+
log.warn("This config has no login methods enabled. Pushing it will lock out all users.");
|
|
269523
|
+
}
|
|
269524
|
+
if (!options.yes) {
|
|
269525
|
+
if (isNonInteractive) {
|
|
269526
|
+
throw new InvalidInputError("--yes is required in non-interactive mode");
|
|
269527
|
+
}
|
|
269528
|
+
const shouldPush = await Re({
|
|
269529
|
+
message: "Push auth config to Base44?"
|
|
269530
|
+
});
|
|
269531
|
+
if (Ct(shouldPush) || !shouldPush) {
|
|
269532
|
+
return { outroMessage: "Push cancelled" };
|
|
269533
|
+
}
|
|
269534
|
+
}
|
|
269535
|
+
await runTask("Pushing auth config to Base44", async () => {
|
|
269536
|
+
return await pushAuthConfig(authConfig[0] ?? null);
|
|
269537
|
+
}, {
|
|
269538
|
+
successMessage: "Auth config pushed successfully",
|
|
269539
|
+
errorMessage: "Failed to push auth config"
|
|
269540
|
+
});
|
|
269541
|
+
return {
|
|
269542
|
+
outroMessage: "Auth config pushed to Base44"
|
|
269543
|
+
};
|
|
269544
|
+
}
|
|
269545
|
+
function getAuthPushCommand() {
|
|
269546
|
+
return new Base44Command("push").description("Push local auth config to Base44").option("-y, --yes", "Skip confirmation prompt").action(pushAuthAction);
|
|
269547
|
+
}
|
|
269548
|
+
|
|
269549
|
+
// src/cli/commands/auth/social-login.ts
|
|
269550
|
+
import { dirname as dirname17, join as join23, resolve as resolve6 } from "node:path";
|
|
269551
|
+
var PROVIDER_LABELS = {
|
|
269552
|
+
google: "Google",
|
|
269553
|
+
microsoft: "Microsoft",
|
|
269554
|
+
facebook: "Facebook",
|
|
269555
|
+
apple: "Apple"
|
|
269556
|
+
};
|
|
269557
|
+
var VALID_PROVIDER_NAMES = Object.keys(SOCIAL_PROVIDERS);
|
|
269558
|
+
var PROVIDER_OAUTH_CLI = {
|
|
269559
|
+
google: {
|
|
269560
|
+
envVar: "google_oauth_client_secret",
|
|
269561
|
+
promptMessage: "Enter Google OAuth client secret"
|
|
269562
|
+
}
|
|
269563
|
+
};
|
|
269564
|
+
function hasSecretOptions(options) {
|
|
269565
|
+
return Boolean(options.clientSecret || options.clientSecretStdin || options.envFile);
|
|
269566
|
+
}
|
|
269567
|
+
function hasCustomOAuthOptions(options) {
|
|
269568
|
+
return Boolean(options.clientId || hasSecretOptions(options));
|
|
269569
|
+
}
|
|
269570
|
+
async function socialLoginAction({ log, isNonInteractive, runTask }, provider, action, options) {
|
|
269571
|
+
const shouldEnable = action === "enable";
|
|
269572
|
+
const providerInfo = SOCIAL_PROVIDERS[provider];
|
|
269573
|
+
const label = PROVIDER_LABELS[provider];
|
|
269574
|
+
const hasOAuthOptions = hasCustomOAuthOptions(options);
|
|
269575
|
+
if (hasOAuthOptions && !providerInfo.customOAuth) {
|
|
269576
|
+
throw new InvalidInputError(`Custom OAuth options are only supported for providers with custom OAuth (e.g., google). Use: base44 auth social-login ${provider} ${action}`);
|
|
269577
|
+
}
|
|
269578
|
+
if (hasOAuthOptions && !shouldEnable) {
|
|
269579
|
+
throw new InvalidInputError(`Custom OAuth options cannot be used with disable. To disable ${label} login: base44 auth social-login ${provider} disable`);
|
|
269580
|
+
}
|
|
269581
|
+
if (hasSecretOptions(options) && !options.clientId) {
|
|
269582
|
+
throw new InvalidInputError(`--client-id is required when providing a client secret. Use: base44 auth social-login ${provider} enable --client-id <id> --client-secret <secret>`);
|
|
269583
|
+
}
|
|
269584
|
+
const oauth = providerInfo.customOAuth;
|
|
269585
|
+
const oauthCli = PROVIDER_OAUTH_CLI[provider];
|
|
269586
|
+
const useCustomOAuth = shouldEnable && hasOAuthOptions && oauth != null;
|
|
269587
|
+
let clientSecret;
|
|
269588
|
+
if (useCustomOAuth && oauth && oauthCli && hasSecretOptions(options)) {
|
|
269589
|
+
if (options.envFile) {
|
|
269590
|
+
const secrets = await parseEnvFile(resolve6(options.envFile));
|
|
269591
|
+
const value = secrets[oauthCli.envVar];
|
|
269592
|
+
if (!value) {
|
|
269593
|
+
throw new InvalidInputError(`Key "${oauthCli.envVar}" not found in ${options.envFile}.`);
|
|
269594
|
+
}
|
|
269595
|
+
clientSecret = value;
|
|
269596
|
+
} else {
|
|
269597
|
+
clientSecret = await resolveSecret({
|
|
269598
|
+
flagValue: options.clientSecret,
|
|
269599
|
+
fromStdin: options.clientSecretStdin,
|
|
269600
|
+
envVar: oauthCli.envVar,
|
|
269601
|
+
promptMessage: oauthCli.promptMessage,
|
|
269602
|
+
isNonInteractive,
|
|
269603
|
+
name: "client secret",
|
|
269604
|
+
hints: [
|
|
269605
|
+
{
|
|
269606
|
+
message: `Provide via flag: base44 auth social-login ${provider} enable --client-id <id> --client-secret <secret>`,
|
|
269607
|
+
command: `base44 auth social-login ${provider} enable --client-id <id> --client-secret <secret>`
|
|
269608
|
+
},
|
|
269609
|
+
{
|
|
269610
|
+
message: `Provide via stdin: echo <secret> | base44 auth social-login ${provider} enable --client-id <id> --client-secret-stdin`
|
|
269611
|
+
},
|
|
269612
|
+
{
|
|
269613
|
+
message: `Provide via env: ${oauthCli.envVar}=<secret> base44 auth social-login ${provider} enable --client-id <id>`
|
|
269614
|
+
}
|
|
269615
|
+
]
|
|
269616
|
+
});
|
|
269617
|
+
}
|
|
269618
|
+
}
|
|
269619
|
+
const { project } = await readProjectConfig();
|
|
269620
|
+
const configDir = dirname17(project.configPath);
|
|
269621
|
+
const authDir = join23(configDir, project.authDir);
|
|
269622
|
+
const { config: updated } = await runTask("Updating local auth config", async () => updateSocialLoginConfig(authDir, provider, shouldEnable, useCustomOAuth && options.clientId ? { clientId: options.clientId } : undefined));
|
|
269623
|
+
if (clientSecret) {
|
|
269624
|
+
await runTask("Saving client secret", async () => pushCustomOAuthSecret(provider, clientSecret));
|
|
269625
|
+
}
|
|
269626
|
+
if (!shouldEnable && !hasAnyLoginMethod(updated)) {
|
|
269627
|
+
log.warn(`Disabling ${label} login will leave no login methods enabled. Users will be locked out.`);
|
|
269628
|
+
}
|
|
269629
|
+
const newStatus = shouldEnable ? "enabled" : "disabled";
|
|
269630
|
+
const oauthNote = useCustomOAuth ? " with custom OAuth" : "";
|
|
269631
|
+
let outroMessage = `${label} login ${newStatus}${oauthNote} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`;
|
|
269632
|
+
if (useCustomOAuth && !clientSecret) {
|
|
269633
|
+
outroMessage += `
|
|
269634
|
+
Remember to push the client secret separately: base44 secrets set --env-file <path>`;
|
|
269635
|
+
}
|
|
269636
|
+
return { outroMessage };
|
|
269637
|
+
}
|
|
269638
|
+
function getSocialLoginCommand() {
|
|
269639
|
+
return new Base44Command("social-login").description("Enable or disable social login providers (google, microsoft, facebook, apple)").addArgument(new Argument2("<provider>", "social login provider").choices(VALID_PROVIDER_NAMES)).addArgument(new Argument2("<action>", "enable or disable the provider").choices([
|
|
269640
|
+
"enable",
|
|
269641
|
+
"disable"
|
|
269642
|
+
])).option("--client-id <id>", "custom OAuth client ID (Google only)").option("--client-secret <secret>", "custom OAuth client secret (Google only)").option("--client-secret-stdin", "read client secret from stdin (Google only)").option("--env-file <path>", "read client secret from a .env file (Google only)").action(socialLoginAction);
|
|
269643
|
+
}
|
|
269644
|
+
|
|
269645
|
+
// src/cli/commands/auth/sso.ts
|
|
269646
|
+
import { dirname as dirname18, join as join24, resolve as resolve7 } from "node:path";
|
|
269647
|
+
var SSOConfigFileSchema = object({
|
|
269648
|
+
provider: _enum(Object.values(KNOWN_SSO_PROVIDERS)),
|
|
269649
|
+
clientId: string2(),
|
|
269650
|
+
clientSecret: string2(),
|
|
269651
|
+
scope: string2().optional(),
|
|
269652
|
+
discoveryUrl: string2().optional(),
|
|
269653
|
+
tenantId: string2().optional(),
|
|
269654
|
+
oktaDomain: string2().optional(),
|
|
269655
|
+
authEndpoint: string2().optional(),
|
|
269656
|
+
tokenEndpoint: string2().optional(),
|
|
269657
|
+
userinfoEndpoint: string2().optional(),
|
|
269658
|
+
jwksUri: string2().optional(),
|
|
269659
|
+
ssoName: string2().optional()
|
|
269660
|
+
});
|
|
269661
|
+
async function loadSSOConfigFile(filePath) {
|
|
269662
|
+
const resolved = resolve7(filePath);
|
|
269663
|
+
const raw = await readJsonFile(resolved);
|
|
269664
|
+
const result = SSOConfigFileSchema.safeParse(raw);
|
|
269665
|
+
if (!result.success) {
|
|
269666
|
+
throw new SchemaValidationError("Invalid SSO config file", result.error, filePath);
|
|
269667
|
+
}
|
|
269668
|
+
return result.data;
|
|
269669
|
+
}
|
|
269670
|
+
function mergeFileWithFlags(fileConfig, options) {
|
|
269671
|
+
return {
|
|
269672
|
+
provider: options.provider ?? fileConfig.provider,
|
|
269673
|
+
clientId: options.clientId ?? fileConfig.clientId,
|
|
269674
|
+
clientSecret: options.clientSecret ?? fileConfig.clientSecret,
|
|
269675
|
+
clientSecretStdin: options.clientSecretStdin,
|
|
269676
|
+
envFile: options.envFile,
|
|
269677
|
+
scope: options.scope ?? fileConfig.scope,
|
|
269678
|
+
discoveryUrl: options.discoveryUrl ?? fileConfig.discoveryUrl,
|
|
269679
|
+
tenantId: options.tenantId ?? fileConfig.tenantId,
|
|
269680
|
+
oktaDomain: options.oktaDomain ?? fileConfig.oktaDomain,
|
|
269681
|
+
authEndpoint: options.authEndpoint ?? fileConfig.authEndpoint,
|
|
269682
|
+
tokenEndpoint: options.tokenEndpoint ?? fileConfig.tokenEndpoint,
|
|
269683
|
+
userinfoEndpoint: options.userinfoEndpoint ?? fileConfig.userinfoEndpoint,
|
|
269684
|
+
jwksUri: options.jwksUri ?? fileConfig.jwksUri,
|
|
269685
|
+
ssoName: options.ssoName ?? fileConfig.ssoName
|
|
269686
|
+
};
|
|
269687
|
+
}
|
|
269688
|
+
var providerNames = Object.keys(KNOWN_SSO_PROVIDERS);
|
|
269689
|
+
var SECRET_KEY_TO_FLAG = {
|
|
269690
|
+
["sso_name" /* Name */]: "--sso-name",
|
|
269691
|
+
["sso_client_id" /* ClientId */]: "--client-id",
|
|
269692
|
+
["sso_client_secret" /* ClientSecret */]: "--client-secret",
|
|
269693
|
+
["sso_scope" /* Scope */]: "--scope",
|
|
269694
|
+
["sso_discovery_url" /* DiscoveryUrl */]: "--discovery-url",
|
|
269695
|
+
["sso_tenant_id" /* TenantId */]: "--tenant-id",
|
|
269696
|
+
["sso_auth_endpoint" /* AuthEndpoint */]: "--auth-endpoint",
|
|
269697
|
+
["sso_token_endpoint" /* TokenEndpoint */]: "--token-endpoint",
|
|
269698
|
+
["sso_userinfo_endpoint" /* UserinfoEndpoint */]: "--userinfo-endpoint",
|
|
269699
|
+
["sso_okta_domain" /* OktaDomain */]: "--okta-domain",
|
|
269700
|
+
["sso_jwks_uri" /* JwksUri */]: "--jwks-uri"
|
|
269701
|
+
};
|
|
269702
|
+
function secretKeyToFlag(key) {
|
|
269703
|
+
return SECRET_KEY_TO_FLAG[key];
|
|
269704
|
+
}
|
|
269705
|
+
function exampleCommand(provider) {
|
|
269706
|
+
let cmd = `base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`;
|
|
269707
|
+
if (provider === KNOWN_SSO_PROVIDERS.microsoft)
|
|
269708
|
+
cmd += " --tenant-id <id>";
|
|
269709
|
+
if (provider === KNOWN_SSO_PROVIDERS.okta)
|
|
269710
|
+
cmd += " --okta-domain <domain>";
|
|
269711
|
+
if (provider === KNOWN_SSO_PROVIDERS.custom)
|
|
269712
|
+
cmd += " --sso-name <name> --auth-endpoint <url> --token-endpoint <url> --userinfo-endpoint <url> --jwks-uri <url>";
|
|
269713
|
+
return cmd;
|
|
269714
|
+
}
|
|
269715
|
+
function validateProvider(provider) {
|
|
269716
|
+
if (!provider) {
|
|
269717
|
+
throw new InvalidInputError("Missing --provider.", {
|
|
269718
|
+
hints: [
|
|
269719
|
+
{
|
|
269720
|
+
message: `Valid providers: ${providerNames.join(", ")}`,
|
|
269721
|
+
command: "base44 auth sso enable --provider <provider> --client-id <id> --client-secret <secret>"
|
|
269722
|
+
}
|
|
269723
|
+
]
|
|
269724
|
+
});
|
|
269725
|
+
}
|
|
269726
|
+
return provider;
|
|
269727
|
+
}
|
|
269728
|
+
async function ssoEnableAction({ isNonInteractive, runTask }, options) {
|
|
269729
|
+
if (options.file && options.envFile) {
|
|
269730
|
+
throw new InvalidInputError("--file and --env-file cannot be used together. Provide the client secret either inside --file or via --env-file.");
|
|
269731
|
+
}
|
|
269732
|
+
let merged = options;
|
|
269733
|
+
if (options.file) {
|
|
269734
|
+
const fileConfig = await loadSSOConfigFile(options.file);
|
|
269735
|
+
merged = mergeFileWithFlags(fileConfig, options);
|
|
269736
|
+
}
|
|
269737
|
+
const provider = validateProvider(merged.provider);
|
|
269738
|
+
if (!merged.clientId) {
|
|
269739
|
+
throw new InvalidInputError("Missing --client-id.", {
|
|
269740
|
+
hints: [
|
|
269741
|
+
{
|
|
269742
|
+
message: `Example: base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`,
|
|
269743
|
+
command: `base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`
|
|
269744
|
+
}
|
|
269745
|
+
]
|
|
269746
|
+
});
|
|
269747
|
+
}
|
|
269748
|
+
let clientSecret;
|
|
269749
|
+
if (merged.envFile && !merged.clientSecret) {
|
|
269750
|
+
const secrets = await parseEnvFile(resolve7(merged.envFile));
|
|
269751
|
+
const value = secrets.sso_client_secret;
|
|
269752
|
+
if (!value) {
|
|
269753
|
+
throw new InvalidInputError(`Key "sso_client_secret" not found in ${merged.envFile}.`);
|
|
269754
|
+
}
|
|
269755
|
+
clientSecret = value;
|
|
269756
|
+
} else {
|
|
269757
|
+
clientSecret = await resolveSecret({
|
|
269758
|
+
flagValue: merged.clientSecret,
|
|
269759
|
+
fromStdin: merged.clientSecretStdin,
|
|
269760
|
+
envVar: "sso_client_secret",
|
|
269761
|
+
promptMessage: "Enter SSO client secret",
|
|
269762
|
+
isNonInteractive,
|
|
269763
|
+
name: "client secret",
|
|
269764
|
+
hints: [
|
|
269765
|
+
{
|
|
269766
|
+
message: `Provide via flag: base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`,
|
|
269767
|
+
command: `base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`
|
|
269768
|
+
},
|
|
269769
|
+
{
|
|
269770
|
+
message: `Provide via stdin: echo <secret> | base44 auth sso enable --provider ${provider} --client-id <id> --client-secret-stdin`
|
|
269771
|
+
},
|
|
269772
|
+
{
|
|
269773
|
+
message: `Provide via env: sso_client_secret=<secret> base44 auth sso enable --provider ${provider} --client-id <id>`
|
|
269774
|
+
}
|
|
269775
|
+
]
|
|
269776
|
+
});
|
|
269777
|
+
}
|
|
269778
|
+
const secretOptions = {
|
|
269779
|
+
clientId: merged.clientId,
|
|
269780
|
+
clientSecret,
|
|
269781
|
+
scope: merged.scope,
|
|
269782
|
+
discoveryUrl: merged.discoveryUrl,
|
|
269783
|
+
tenantId: merged.tenantId,
|
|
269784
|
+
oktaDomain: merged.oktaDomain,
|
|
269785
|
+
authEndpoint: merged.authEndpoint,
|
|
269786
|
+
tokenEndpoint: merged.tokenEndpoint,
|
|
269787
|
+
userinfoEndpoint: merged.userinfoEndpoint,
|
|
269788
|
+
jwksUri: merged.jwksUri,
|
|
269789
|
+
ssoName: merged.ssoName
|
|
269790
|
+
};
|
|
269791
|
+
let secrets;
|
|
269792
|
+
try {
|
|
269793
|
+
secrets = buildSSOSecrets(provider, secretOptions);
|
|
269794
|
+
} catch (error) {
|
|
269795
|
+
if (error instanceof MissingSSOFieldsError) {
|
|
269796
|
+
const flagNames = error.missingKeys.map(secretKeyToFlag);
|
|
269797
|
+
throw new InvalidInputError(`Missing required fields for ${error.provider}: ${flagNames.join(", ")}`, {
|
|
269798
|
+
hints: [
|
|
269799
|
+
{
|
|
269800
|
+
message: `Example: ${exampleCommand(provider)}`,
|
|
269801
|
+
command: exampleCommand(provider)
|
|
269802
|
+
}
|
|
269803
|
+
]
|
|
269804
|
+
});
|
|
269805
|
+
}
|
|
269806
|
+
throw error;
|
|
269807
|
+
}
|
|
269808
|
+
const { project } = await readProjectConfig();
|
|
269809
|
+
const configDir = dirname18(project.configPath);
|
|
269810
|
+
const authDir = join24(configDir, project.authDir);
|
|
269811
|
+
await runTask("Updating local auth config", async () => updateSSOConfig(authDir, provider, true));
|
|
269812
|
+
await runTask("Saving SSO credentials", async () => pushSSOSecrets(secrets));
|
|
269813
|
+
return {
|
|
269814
|
+
outroMessage: `SSO configured with ${provider} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`
|
|
269815
|
+
};
|
|
269816
|
+
}
|
|
269817
|
+
function hasEnableOnlyOptions(options) {
|
|
269818
|
+
return Boolean(options.provider || options.clientId || options.clientSecret || options.clientSecretStdin || options.envFile || options.file || options.scope || options.discoveryUrl || options.tenantId || options.oktaDomain || options.authEndpoint || options.tokenEndpoint || options.userinfoEndpoint || options.jwksUri || options.ssoName);
|
|
269819
|
+
}
|
|
269820
|
+
async function ssoDisableAction({ log, runTask }, options) {
|
|
269821
|
+
if (hasEnableOnlyOptions(options)) {
|
|
269822
|
+
throw new InvalidInputError("Configuration options cannot be used with disable. To disable SSO: base44 auth sso disable");
|
|
269823
|
+
}
|
|
269824
|
+
const { project } = await readProjectConfig();
|
|
269825
|
+
const configDir = dirname18(project.configPath);
|
|
269826
|
+
const authDir = join24(configDir, project.authDir);
|
|
269827
|
+
const updated = await runTask("Updating local auth config", async () => updateSSOConfig(authDir, null, false));
|
|
269828
|
+
await runTask("Removing SSO credentials", async () => deleteSSOSecrets());
|
|
269829
|
+
if (!hasAnyLoginMethod(updated)) {
|
|
269830
|
+
log.warn("Disabling SSO will leave no login methods enabled. Users will be locked out.");
|
|
269831
|
+
}
|
|
269832
|
+
return {
|
|
269833
|
+
outroMessage: "SSO disabled in local config and credentials removed. Run `base44 auth push` or `base44 deploy` to apply."
|
|
269834
|
+
};
|
|
269835
|
+
}
|
|
269836
|
+
async function ssoAction(context, action, options) {
|
|
269837
|
+
if (action === "disable") {
|
|
269838
|
+
return ssoDisableAction(context, options);
|
|
269839
|
+
}
|
|
269840
|
+
return ssoEnableAction(context, options);
|
|
269841
|
+
}
|
|
269842
|
+
function getSSOCommand() {
|
|
269843
|
+
return new Base44Command("sso").description("Configure SSO identity provider (google, microsoft, github, okta, custom). SSO and social login are mutually exclusive — enabling one disables the other in the local auth config.").addArgument(new Argument2("<action>", "enable or disable SSO").choices([
|
|
269844
|
+
"enable",
|
|
269845
|
+
"disable"
|
|
269846
|
+
])).addOption(new Option2("--provider <provider>", "SSO provider").choices(Object.values(KNOWN_SSO_PROVIDERS))).option("--client-id <id>", "OAuth client ID").option("--client-secret <secret>", "OAuth client secret").option("--client-secret-stdin", "Read client secret from stdin").option("--env-file <path>", "Read client secret from a .env file (key: sso_client_secret)").option("--file <path>", "JSON config file with all SSO settings").option("--scope <scope>", "OAuth scope (defaults per provider)").option("--discovery-url <url>", "OIDC discovery URL").option("--tenant-id <id>", "Microsoft tenant ID (required for microsoft)").option("--okta-domain <domain>", "Okta domain (required for okta)").option("--auth-endpoint <url>", "Authorization endpoint (required for custom)").option("--token-endpoint <url>", "Token endpoint (required for custom)").option("--userinfo-endpoint <url>", "Userinfo endpoint (required for custom)").option("--jwks-uri <url>", "JWKS URI (required for custom)").option("--sso-name <name>", "Provider display name (required for custom)").action(ssoAction);
|
|
269847
|
+
}
|
|
269848
|
+
|
|
269849
|
+
// src/cli/commands/auth/index.ts
|
|
269850
|
+
function getAuthCommand() {
|
|
269851
|
+
return new Command2("auth").description("Manage app authentication settings").addCommand(getPasswordLoginCommand()).addCommand(getSocialLoginCommand()).addCommand(getSSOCommand()).addCommand(getAuthPullCommand()).addCommand(getAuthPushCommand());
|
|
269852
|
+
}
|
|
269853
|
+
|
|
269854
|
+
// src/cli/commands/auth/login.ts
|
|
269855
|
+
function getLoginCommand() {
|
|
269856
|
+
return new Base44Command("login", {
|
|
269857
|
+
requireAuth: false,
|
|
269858
|
+
requireAppContext: false
|
|
269859
|
+
}).description("Authenticate with Base44").action(login);
|
|
269860
|
+
}
|
|
269861
|
+
|
|
269862
|
+
// src/cli/commands/auth/logout.ts
|
|
269863
|
+
async function logout(_ctx) {
|
|
269864
|
+
await deleteAuth();
|
|
269865
|
+
return { outroMessage: "Logged out successfully" };
|
|
269866
|
+
}
|
|
269867
|
+
function getLogoutCommand() {
|
|
269868
|
+
return new Base44Command("logout", {
|
|
269869
|
+
requireAuth: false,
|
|
269870
|
+
requireAppContext: false
|
|
269871
|
+
}).description("Logout from current device").action(logout);
|
|
269872
|
+
}
|
|
269873
|
+
|
|
269874
|
+
// src/cli/commands/auth/whoami.ts
|
|
269875
|
+
async function whoami(_ctx) {
|
|
269876
|
+
const workspaceApiKey = getWorkspaceApiKeyFromEnv();
|
|
269877
|
+
if (workspaceApiKey && isWorkspaceApiKey(workspaceApiKey)) {
|
|
269878
|
+
return {
|
|
269879
|
+
outroMessage: `Using workspace API key: ${theme.styles.bold(workspaceApiKey.slice(0, 10))}`
|
|
269880
|
+
};
|
|
269881
|
+
}
|
|
269882
|
+
const auth = await readAuth();
|
|
269883
|
+
return { outroMessage: `Logged in as: ${theme.styles.bold(auth.email)}` };
|
|
269884
|
+
}
|
|
269885
|
+
function getWhoamiCommand() {
|
|
269886
|
+
return new Base44Command("whoami", { requireAppContext: false }).description("Display current authenticated user").action(whoami);
|
|
269887
|
+
}
|
|
269888
|
+
|
|
269889
|
+
// src/cli/commands/branches/index.ts
|
|
269890
|
+
async function listBranchesAction({
|
|
269891
|
+
log,
|
|
269892
|
+
runTask,
|
|
269893
|
+
jsonMode
|
|
269894
|
+
}) {
|
|
269895
|
+
const remote = await runTask("Fetching branches", () => listBranches());
|
|
269896
|
+
const branches = [
|
|
269897
|
+
{ name: "main", status: "active" },
|
|
269898
|
+
...remote.map((branch) => ({
|
|
269899
|
+
name: branch.branch_name,
|
|
269900
|
+
status: branch.status
|
|
269901
|
+
}))
|
|
269902
|
+
];
|
|
269903
|
+
if (jsonMode)
|
|
269904
|
+
return { stdout: `${JSON.stringify({ branches })}
|
|
269905
|
+
` };
|
|
269906
|
+
for (const branch of branches)
|
|
269907
|
+
log.message(`${branch.name} (${branch.status})`);
|
|
269908
|
+
return { outroMessage: `${branches.length} branches` };
|
|
269909
|
+
}
|
|
269910
|
+
function getBranchesCommand() {
|
|
269911
|
+
return new Command2("branches").description("Discover an app's branches").addCommand(new Base44Command("list").description("List main and active branch names for use with --branch").action(listBranchesAction));
|
|
269912
|
+
}
|
|
269913
|
+
|
|
269453
269914
|
// src/core/model.ts
|
|
269454
269915
|
var MODELS = [
|
|
269455
269916
|
{
|
|
@@ -269502,7 +269963,7 @@ async function saveBuilderModel(userId, modelId) {
|
|
|
269502
269963
|
}
|
|
269503
269964
|
var displayName = (id) => MODELS.find((m) => m.id === id)?.name ?? id ?? "Automatic";
|
|
269504
269965
|
|
|
269505
|
-
// src/cli/commands/
|
|
269966
|
+
// src/cli/commands/builder/model.ts
|
|
269506
269967
|
async function modelAction({ log, jsonMode }, input) {
|
|
269507
269968
|
const me = await getMe();
|
|
269508
269969
|
const current = me.builder_model ?? null;
|
|
@@ -269523,7 +269984,7 @@ async function modelAction({ log, jsonMode }, input) {
|
|
|
269523
269984
|
log.message(`${marker} ${active ? theme.styles.bold(m.name) : m.name}${note}`);
|
|
269524
269985
|
}
|
|
269525
269986
|
return {
|
|
269526
|
-
outroMessage: `Current: ${theme.styles.bold(displayName(current))}. Set with \`base44
|
|
269987
|
+
outroMessage: `Current: ${theme.styles.bold(displayName(current))}. Set with \`base44 builder model <name>\`.`
|
|
269527
269988
|
};
|
|
269528
269989
|
}
|
|
269529
269990
|
const pick = resolvePick(input);
|
|
@@ -269544,9 +270005,9 @@ function getModelCommand() {
|
|
|
269544
270005
|
return command;
|
|
269545
270006
|
}
|
|
269546
270007
|
|
|
269547
|
-
// src/cli/commands/
|
|
270008
|
+
// src/cli/commands/builder/shared.ts
|
|
269548
270009
|
import { mkdir as mkdir3, writeFile as writeFile2 } from "node:fs/promises";
|
|
269549
|
-
import { join as
|
|
270010
|
+
import { basename as basename6, join as join25, relative as relative6, resolve as resolve8 } from "node:path";
|
|
269550
270011
|
|
|
269551
270012
|
// src/cli/commands/code/render.ts
|
|
269552
270013
|
var TOOL_ALIASES = {
|
|
@@ -269554,6 +270015,10 @@ var TOOL_ALIASES = {
|
|
|
269554
270015
|
read_repo_file: "read",
|
|
269555
270016
|
write_repo_file: "write",
|
|
269556
270017
|
edit_repo_file: "edit",
|
|
270018
|
+
read_file: "read",
|
|
270019
|
+
write_file: "write",
|
|
270020
|
+
find_replace: "edit",
|
|
270021
|
+
delete_file: "delete",
|
|
269557
270022
|
set_secrets: "secrets",
|
|
269558
270023
|
generate_development_secrets: "secrets",
|
|
269559
270024
|
create_pull_request: "pr",
|
|
@@ -269567,7 +270032,37 @@ var TOOL_ALIASES = {
|
|
|
269567
270032
|
preview_screenshot: "screenshot",
|
|
269568
270033
|
connect_github_account: "github"
|
|
269569
270034
|
};
|
|
269570
|
-
var QUIET_OK_RESULTS = new Set(["read", "write", "edit", "reload"]);
|
|
270035
|
+
var QUIET_OK_RESULTS = new Set(["read", "write", "edit", "reload", "delete"]);
|
|
270036
|
+
var RESULT_LINE_MAX = 110;
|
|
270037
|
+
var DIFF_LINES_MAX = 12;
|
|
270038
|
+
var ERROR_LINES_MAX = 8;
|
|
270039
|
+
function renderEntry(entry, options = {}) {
|
|
270040
|
+
return typeof entry === "string" ? entry : eventLine(entry.event, entry.elapsedMs, options) ?? "";
|
|
270041
|
+
}
|
|
270042
|
+
function fold2(lines, max, options) {
|
|
270043
|
+
if (options.verbose || lines.length <= max)
|
|
270044
|
+
return lines;
|
|
270045
|
+
const hint = options.foldHint ? ` (${options.foldHint})` : "";
|
|
270046
|
+
return [
|
|
270047
|
+
...lines.slice(0, max),
|
|
270048
|
+
source_default.dim(`… +${lines.length - max} lines${hint}`)
|
|
270049
|
+
];
|
|
270050
|
+
}
|
|
270051
|
+
var str = (v) => typeof v === "string" ? v : undefined;
|
|
270052
|
+
function diffLines(args) {
|
|
270053
|
+
const find = str(args.find);
|
|
270054
|
+
const replace = str(args.replace);
|
|
270055
|
+
if (find == null && replace == null)
|
|
270056
|
+
return null;
|
|
270057
|
+
return [
|
|
270058
|
+
...(find ?? "").split(`
|
|
270059
|
+
`).map((l) => source_default.red(`- ${l}`)),
|
|
270060
|
+
...(replace ?? "").split(`
|
|
270061
|
+
`).map((l) => source_default.green(`+ ${l}`))
|
|
270062
|
+
];
|
|
270063
|
+
}
|
|
270064
|
+
var indent = (lines) => lines.map((l) => ` ${l}`).join(`
|
|
270065
|
+
`);
|
|
269571
270066
|
function toolAlias(name) {
|
|
269572
270067
|
return TOOL_ALIASES[name] ?? name;
|
|
269573
270068
|
}
|
|
@@ -269632,7 +270127,7 @@ function formatDuration2(ms) {
|
|
|
269632
270127
|
return `${seconds}s`;
|
|
269633
270128
|
return `${Math.floor(seconds / 60)}m ${String(seconds % 60).padStart(2, "0")}s`;
|
|
269634
270129
|
}
|
|
269635
|
-
function eventLine(event, elapsedMs) {
|
|
270130
|
+
function eventLine(event, elapsedMs, options = {}) {
|
|
269636
270131
|
switch (event.kind) {
|
|
269637
270132
|
case "thinking":
|
|
269638
270133
|
return source_default.dim(`✻ ${event.text}`);
|
|
@@ -269653,12 +270148,40 @@ function eventLine(event, elapsedMs) {
|
|
|
269653
270148
|
const paramsLine = event.label && event.summary ? `
|
|
269654
270149
|
${source_default.dim(`${alias}: ${event.summary}`)}` : "";
|
|
269655
270150
|
const head = `${mark} ${title}${inlineDetail}${took}${paramsLine}`;
|
|
270151
|
+
const args = event.args ?? null;
|
|
270152
|
+
if (event.ok && alias === "edit" && args) {
|
|
270153
|
+
const diff = diffLines(args);
|
|
270154
|
+
if (diff)
|
|
270155
|
+
return `${head}
|
|
270156
|
+
${indent(fold2(diff, DIFF_LINES_MAX, options))}`;
|
|
270157
|
+
}
|
|
270158
|
+
if (event.ok && alias === "write" && args && str(args.content) != null) {
|
|
270159
|
+
const lines = str(args.content).split(`
|
|
270160
|
+
`);
|
|
270161
|
+
const count = source_default.dim(`+${lines.length} lines`);
|
|
270162
|
+
if (!options.verbose)
|
|
270163
|
+
return `${head} ${count}`;
|
|
270164
|
+
return `${head} ${count}
|
|
270165
|
+
${indent(lines.map((l) => source_default.dim(l)))}`;
|
|
270166
|
+
}
|
|
269656
270167
|
if (event.ok && (QUIET_OK_RESULTS.has(alias) || !event.result)) {
|
|
269657
270168
|
return head;
|
|
269658
270169
|
}
|
|
269659
|
-
const
|
|
269660
|
-
|
|
269661
|
-
|
|
270170
|
+
const paint = event.ok ? source_default.dim : source_default.red;
|
|
270171
|
+
const lines = event.result.split(`
|
|
270172
|
+
`).map((l) => l.trimEnd()).filter((l, i, all) => l.length > 0 || i > 0 && i < all.length - 1);
|
|
270173
|
+
if (event.ok && !options.verbose) {
|
|
270174
|
+
const first = lines[0] ?? "";
|
|
270175
|
+
const cut = first.length > RESULT_LINE_MAX ? `${first.slice(0, RESULT_LINE_MAX)}…` : first;
|
|
270176
|
+
const more = lines.length - 1;
|
|
270177
|
+
const hint = options.foldHint ? ` (${options.foldHint})` : "";
|
|
270178
|
+
const tail = more > 0 ? source_default.dim(` … +${more} lines${hint}`) : "";
|
|
270179
|
+
return `${head}
|
|
270180
|
+
${paint(linkifyUrls(cut))}${tail}`;
|
|
270181
|
+
}
|
|
270182
|
+
const shown = fold2(lines.map((l) => paint(linkifyUrls(l))), event.ok ? Number.POSITIVE_INFINITY : ERROR_LINES_MAX, options);
|
|
270183
|
+
return `${head}
|
|
270184
|
+
${indent(shown)}`;
|
|
269662
270185
|
}
|
|
269663
270186
|
}
|
|
269664
270187
|
}
|
|
@@ -269764,7 +270287,10 @@ function createTurnStream(interactive, write = (text) => process.stdout.write(te
|
|
|
269764
270287
|
elapsedMs = Date.now() - started;
|
|
269765
270288
|
running.delete(event.id);
|
|
269766
270289
|
}
|
|
269767
|
-
const line = eventLine(event, elapsedMs
|
|
270290
|
+
const line = eventLine(event, elapsedMs, {
|
|
270291
|
+
verbose: options.verbose,
|
|
270292
|
+
foldHint: "--verbose shows everything"
|
|
270293
|
+
});
|
|
269768
270294
|
if (line == null)
|
|
269769
270295
|
return;
|
|
269770
270296
|
if (interactive) {
|
|
@@ -269801,6 +270327,9 @@ var CreatedAppSchema = object({
|
|
|
269801
270327
|
});
|
|
269802
270328
|
var AppStateSchema = object({
|
|
269803
270329
|
id: string2(),
|
|
270330
|
+
app_type: string2().nullish(),
|
|
270331
|
+
is_managed_source_code: boolean2().nullish(),
|
|
270332
|
+
imported_repo_url: string2().nullish(),
|
|
269804
270333
|
status: object({
|
|
269805
270334
|
state: string2().nullish(),
|
|
269806
270335
|
message: string2().nullish()
|
|
@@ -269900,7 +270429,9 @@ async function getAppState(appId) {
|
|
|
269900
270429
|
let response;
|
|
269901
270430
|
try {
|
|
269902
270431
|
response = await base44Client.get(`api/apps/${appId}`, {
|
|
269903
|
-
searchParams: {
|
|
270432
|
+
searchParams: {
|
|
270433
|
+
fields: "id,status,app_type,is_managed_source_code,imported_repo_url"
|
|
270434
|
+
}
|
|
269904
270435
|
});
|
|
269905
270436
|
} catch (error) {
|
|
269906
270437
|
throw await ApiError.fromHttpError(error, "reading app status");
|
|
@@ -269961,7 +270492,7 @@ async function getPreviewUrl() {
|
|
|
269961
270492
|
return /^https?:\/\//.test(url) ? url : `https://${url}`;
|
|
269962
270493
|
}
|
|
269963
270494
|
|
|
269964
|
-
// src/cli/commands/
|
|
270495
|
+
// src/cli/commands/builder/shared.ts
|
|
269965
270496
|
var APP_NAME_RE = /^[A-Za-z0-9._-]+$/;
|
|
269966
270497
|
var NAME_STOPWORDS = new Set("a an the and or of for with to in on that this its it my our your me".split(" "));
|
|
269967
270498
|
var FALLBACK_WORDS = [
|
|
@@ -269983,11 +270514,17 @@ async function createAndLinkApp(options) {
|
|
|
269983
270514
|
if (options.name && !APP_NAME_RE.test(options.name)) {
|
|
269984
270515
|
throw new InvalidInputError("The name becomes a directory — letters, digits, dots, dashes and underscores only.");
|
|
269985
270516
|
}
|
|
269986
|
-
const
|
|
269987
|
-
const
|
|
270517
|
+
const cwd = process.cwd();
|
|
270518
|
+
const fallbackName = () => options.importRepo ? repoBasename(options.importRepo) : inventAppName(options.prompt);
|
|
270519
|
+
const chosenDir = options.path ? resolve8(cwd, options.path) : await isDirEmpty(cwd) ? cwd : undefined;
|
|
270520
|
+
const dirBase = chosenDir ? basename6(chosenDir) : undefined;
|
|
270521
|
+
const name = options.name ?? (dirBase && APP_NAME_RE.test(dirBase) ? dirBase : fallbackName());
|
|
270522
|
+
const targetDir = chosenDir ?? join25(cwd, name);
|
|
270523
|
+
const here = targetDir === cwd;
|
|
270524
|
+
const dirName = here ? "." : relative6(cwd, targetDir) || name;
|
|
269988
270525
|
await mkdir3(targetDir, { recursive: true });
|
|
269989
270526
|
if (await appConfigExists(targetDir)) {
|
|
269990
|
-
throw new InvalidInputError(`./${
|
|
270527
|
+
throw new InvalidInputError(here ? "This directory is already linked to a Base44 app. Run `base44 code` here to keep building it, or pass --path for a new one." : `./${dirName} is already linked to a Base44 app. Pick another name or --path.`);
|
|
269991
270528
|
}
|
|
269992
270529
|
const created = options.importRepo ? await createImportedApp({
|
|
269993
270530
|
appName: name,
|
|
@@ -269998,9 +270535,9 @@ async function createAndLinkApp(options) {
|
|
|
269998
270535
|
prompt: options.prompt
|
|
269999
270536
|
}) : await createApp({ appName: name, prompt: options.prompt });
|
|
270000
270537
|
await writeAppConfig(targetDir, created.id);
|
|
270001
|
-
await mkdir3(
|
|
270538
|
+
await mkdir3(join25(targetDir, "base44"), { recursive: true });
|
|
270002
270539
|
try {
|
|
270003
|
-
await writeFile2(
|
|
270540
|
+
await writeFile2(join25(targetDir, "base44", "config.jsonc"), `// Base44 project configuration.
|
|
270004
270541
|
{
|
|
270005
270542
|
"name": ${JSON.stringify(name)}
|
|
270006
270543
|
}
|
|
@@ -270011,16 +270548,48 @@ async function createAndLinkApp(options) {
|
|
|
270011
270548
|
id: created.id,
|
|
270012
270549
|
editorUrl: `${getBase44ApiUrl()}/apps/${created.id}/editor/preview`,
|
|
270013
270550
|
repoUrl: created.imported_repo_url ?? undefined,
|
|
270014
|
-
dirName
|
|
270015
|
-
targetDir
|
|
270016
|
-
|
|
270551
|
+
dirName,
|
|
270552
|
+
targetDir,
|
|
270553
|
+
here
|
|
270554
|
+
};
|
|
270555
|
+
}
|
|
270556
|
+
function repoLabel(url) {
|
|
270557
|
+
return url.replace(/^https?:\/\//, "").replace(/\.git$/, "").replace(/\/$/, "");
|
|
270558
|
+
}
|
|
270559
|
+
function appTypeChip(state) {
|
|
270560
|
+
switch (state.app_type ?? "user_app") {
|
|
270561
|
+
case "imported_app":
|
|
270562
|
+
return state.imported_repo_url ? repoLabel(state.imported_repo_url) : "repository app";
|
|
270563
|
+
case "user_game":
|
|
270564
|
+
return "game";
|
|
270565
|
+
case "mobile_app":
|
|
270566
|
+
return "mobile app";
|
|
270567
|
+
case "slide":
|
|
270568
|
+
return "slides";
|
|
270569
|
+
case "user_agent":
|
|
270570
|
+
return "superagent";
|
|
270571
|
+
default:
|
|
270572
|
+
return "web app";
|
|
270573
|
+
}
|
|
270574
|
+
}
|
|
270575
|
+
async function assertBuilderApp(appId) {
|
|
270576
|
+
const state = await getAppState(appId);
|
|
270577
|
+
if (state.is_managed_source_code === false) {
|
|
270578
|
+
throw new InvalidInputError("This project is code-first (base44 create): you own the source and the builder cannot work on it. Run `base44 builder new` for an agent-built app.");
|
|
270579
|
+
}
|
|
270580
|
+
if (state.app_type === "user_agent") {
|
|
270581
|
+
throw new InvalidInputError("This is a Superagent, not an app the builder works on. Superagent has no CLI surface yet.");
|
|
270582
|
+
}
|
|
270583
|
+
return state;
|
|
270017
270584
|
}
|
|
270018
270585
|
function nextStepsLines(app) {
|
|
270586
|
+
const cd = app.here ? "" : `cd ${app.dirName} && `;
|
|
270019
270587
|
return [
|
|
270020
270588
|
"",
|
|
270021
|
-
`${source_default.bold("Your app lives in")}
|
|
270022
|
-
source_default.dim(`
|
|
270023
|
-
source_default.dim(`
|
|
270589
|
+
`${source_default.bold("Your app lives in")} ${app.here ? "./ (this directory)" : `./${app.dirName}`}`,
|
|
270590
|
+
source_default.dim(` ${cd}base44 code # keep building with the agent`),
|
|
270591
|
+
source_default.dim(` ${cd}base44 builder send "…" # one non-interactive turn`),
|
|
270592
|
+
source_default.dim(` files live remotely — ${cd}base44 sandbox ls to look, base44 eject for a copy`)
|
|
270024
270593
|
];
|
|
270025
270594
|
}
|
|
270026
270595
|
async function githubReauthLines(error) {
|
|
@@ -270043,12 +270612,27 @@ function newStreamState() {
|
|
|
270043
270612
|
return { perMessage: new Map };
|
|
270044
270613
|
}
|
|
270045
270614
|
var TOOL_SETTLED = new Set(["success", "error", "stopped"]);
|
|
270615
|
+
function fullText(value) {
|
|
270616
|
+
if (typeof value === "string")
|
|
270617
|
+
return value.trimEnd();
|
|
270618
|
+
if (value == null)
|
|
270619
|
+
return "";
|
|
270620
|
+
return JSON.stringify(value);
|
|
270621
|
+
}
|
|
270622
|
+
function toolArgs(argumentsString) {
|
|
270623
|
+
try {
|
|
270624
|
+
const parsed = JSON.parse(argumentsString ?? "");
|
|
270625
|
+
return parsed && typeof parsed === "object" && !Array.isArray(parsed) ? parsed : null;
|
|
270626
|
+
} catch {
|
|
270627
|
+
return null;
|
|
270628
|
+
}
|
|
270629
|
+
}
|
|
270046
270630
|
function oneLine(value, max) {
|
|
270047
270631
|
const text = typeof value === "string" ? value : value == null ? "" : JSON.stringify(value);
|
|
270048
270632
|
const flat = text.replace(/\s+/g, " ").trim();
|
|
270049
270633
|
return flat.length > max ? `${flat.slice(0, max)}…` : flat;
|
|
270050
270634
|
}
|
|
270051
|
-
var SALIENT_KEYS = ["command", "path", "file_path", "title"];
|
|
270635
|
+
var SALIENT_KEYS = ["command", "path", "file_path", "title", "find"];
|
|
270052
270636
|
function salvageKey(raw, keys) {
|
|
270053
270637
|
for (const key of keys) {
|
|
270054
270638
|
const match = raw.match(new RegExp(`"${key}"\\s*:\\s*"((?:[^"\\\\]|\\\\.)*)"`));
|
|
@@ -270077,6 +270661,10 @@ function toolMeta(name, argumentsString) {
|
|
|
270077
270661
|
read_repo_file: pick("path") ?? pick("file_path"),
|
|
270078
270662
|
write_repo_file: pick("path") ?? pick("file_path"),
|
|
270079
270663
|
edit_repo_file: pick("path") ?? pick("file_path"),
|
|
270664
|
+
read_file: pick("file_path") ?? pick("path"),
|
|
270665
|
+
write_file: pick("file_path") ?? pick("path"),
|
|
270666
|
+
find_replace: pick("file_path") ?? pick("path"),
|
|
270667
|
+
delete_file: pick("file_path") ?? pick("path"),
|
|
270080
270668
|
create_pull_request: pick("title"),
|
|
270081
270669
|
reload_preview: ""
|
|
270082
270670
|
};
|
|
@@ -270127,7 +270715,10 @@ function diffConversation(state, messages) {
|
|
|
270127
270715
|
}
|
|
270128
270716
|
for (const tool of message.tool_calls ?? []) {
|
|
270129
270717
|
if (!progress.announcedTools.has(tool.id)) {
|
|
270130
|
-
progress.announcedTools.set(tool.id,
|
|
270718
|
+
progress.announcedTools.set(tool.id, {
|
|
270719
|
+
...toolMeta(tool.name, tool.arguments_string),
|
|
270720
|
+
args: toolArgs(tool.arguments_string)
|
|
270721
|
+
});
|
|
270131
270722
|
const meta = progress.announcedTools.get(tool.id);
|
|
270132
270723
|
events.push({
|
|
270133
270724
|
kind: "tool_start",
|
|
@@ -270158,7 +270749,8 @@ function diffConversation(state, messages) {
|
|
|
270158
270749
|
label: labelTense(meta.label, "done"),
|
|
270159
270750
|
summary: meta.summary,
|
|
270160
270751
|
ok: status === "success",
|
|
270161
|
-
result:
|
|
270752
|
+
result: fullText(tool.results),
|
|
270753
|
+
args: meta.args
|
|
270162
270754
|
});
|
|
270163
270755
|
}
|
|
270164
270756
|
}
|
|
@@ -270232,7 +270824,82 @@ async function streamConversationUntilSettled(onEvent, options = {}) {
|
|
|
270232
270824
|
return "timeout";
|
|
270233
270825
|
}
|
|
270234
270826
|
|
|
270235
|
-
// src/cli/commands/
|
|
270827
|
+
// src/cli/commands/builder/send.ts
|
|
270828
|
+
function lastAssistantReply(turn) {
|
|
270829
|
+
const messages = turn.conversation?.messages ?? [];
|
|
270830
|
+
for (let i = messages.length - 1;i >= 0; i--) {
|
|
270831
|
+
const { role, content } = messages[i];
|
|
270832
|
+
if (role === "assistant" && typeof content === "string" && content.trim()) {
|
|
270833
|
+
return content.trim();
|
|
270834
|
+
}
|
|
270835
|
+
}
|
|
270836
|
+
return;
|
|
270837
|
+
}
|
|
270838
|
+
function ndjsonWriter() {
|
|
270839
|
+
return (record) => process.stdout.write(`${JSON.stringify(record)}
|
|
270840
|
+
`);
|
|
270841
|
+
}
|
|
270842
|
+
async function sendAction(ctx, message, options) {
|
|
270843
|
+
if (options.streamJson && ctx.jsonMode) {
|
|
270844
|
+
throw new InvalidInputError("--stream-json and --json are exclusive.");
|
|
270845
|
+
}
|
|
270846
|
+
if (ctx.app)
|
|
270847
|
+
await assertBuilderApp(ctx.app.id);
|
|
270848
|
+
const branchId = await resolveBranchId(ctx);
|
|
270849
|
+
if (options.streamJson) {
|
|
270850
|
+
const write = ndjsonWriter();
|
|
270851
|
+
const turn = await streamConversationDuring(() => sendTurn(message, branchId), ({ kind, ...event }) => write({ type: kind, ...event }), { branchId });
|
|
270852
|
+
write({
|
|
270853
|
+
type: "result",
|
|
270854
|
+
queued: turn.queued === true,
|
|
270855
|
+
status: turn.status?.state ?? "ready",
|
|
270856
|
+
error_source: turn.status?.error_source ?? null,
|
|
270857
|
+
reply: lastAssistantReply(turn) ?? null
|
|
270858
|
+
});
|
|
270859
|
+
return {};
|
|
270860
|
+
}
|
|
270861
|
+
if (ctx.jsonMode) {
|
|
270862
|
+
const turn = await ctx.runTask("Agent working (a turn can take minutes)", () => sendTurn(message, branchId));
|
|
270863
|
+
if (turn.queued)
|
|
270864
|
+
return { stdout: `${JSON.stringify({ queued: true })}
|
|
270865
|
+
` };
|
|
270866
|
+
return {
|
|
270867
|
+
stdout: `${JSON.stringify({
|
|
270868
|
+
status: turn.status?.state ?? "ready",
|
|
270869
|
+
error_source: turn.status?.error_source ?? null,
|
|
270870
|
+
reply: lastAssistantReply(turn) ?? null
|
|
270871
|
+
})}
|
|
270872
|
+
`
|
|
270873
|
+
};
|
|
270874
|
+
}
|
|
270875
|
+
const stream = createTurnStream(process.stdout.isTTY === true, undefined, {
|
|
270876
|
+
verbose: options.verbose
|
|
270877
|
+
});
|
|
270878
|
+
let turn;
|
|
270879
|
+
try {
|
|
270880
|
+
turn = await streamConversationDuring(() => sendTurn(message, branchId), stream.onEvent, { branchId });
|
|
270881
|
+
} finally {
|
|
270882
|
+
stream.stop();
|
|
270883
|
+
}
|
|
270884
|
+
if (turn.queued) {
|
|
270885
|
+
return {
|
|
270886
|
+
outroMessage: "The agent is busy with an earlier message — yours was queued and runs next."
|
|
270887
|
+
};
|
|
270888
|
+
}
|
|
270889
|
+
if (turn.status?.state === "error") {
|
|
270890
|
+
return {
|
|
270891
|
+
outroMessage: `Turn failed (${turn.status.error_source ?? "unknown"}) — see the editor for details.`
|
|
270892
|
+
};
|
|
270893
|
+
}
|
|
270894
|
+
return { outroMessage: "Turn finished." };
|
|
270895
|
+
}
|
|
270896
|
+
function getSendCommand() {
|
|
270897
|
+
const command = new Base44Command("send", { supportsBranch: true });
|
|
270898
|
+
command.description("Send the agent one message and stream the turn until it finishes").argument("<message>", "What you want the agent to do").option("--verbose", "Show every tool result in full (no folding)").option("--stream-json", "Emit each stream event as a JSON line as it happens, then a final result line").action(sendAction);
|
|
270899
|
+
return command;
|
|
270900
|
+
}
|
|
270901
|
+
|
|
270902
|
+
// src/cli/commands/builder/new.ts
|
|
270236
270903
|
var POLL_TIMEOUT_MS = 20 * 60000;
|
|
270237
270904
|
var MODES = ["direct", "fork", "copy"];
|
|
270238
270905
|
async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
@@ -270245,6 +270912,10 @@ async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
|
270245
270912
|
if (!prompt && !options.import) {
|
|
270246
270913
|
throw new InvalidInputError('Describe the app ("<prompt>") or pass --import <repo>.');
|
|
270247
270914
|
}
|
|
270915
|
+
if (options.streamJson && jsonMode) {
|
|
270916
|
+
throw new InvalidInputError("--stream-json and --json are exclusive.");
|
|
270917
|
+
}
|
|
270918
|
+
const ndjson = options.streamJson ? ndjsonWriter() : null;
|
|
270248
270919
|
let app;
|
|
270249
270920
|
try {
|
|
270250
270921
|
app = await runTask(options.import ? "Importing the repository" : "Creating your app", () => createAndLinkApp({
|
|
@@ -270253,18 +270924,28 @@ async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
|
270253
270924
|
importRepo: options.import,
|
|
270254
270925
|
mode: options.mode,
|
|
270255
270926
|
repoName: options.repoName,
|
|
270256
|
-
fromBranch: options.fromBranch
|
|
270927
|
+
fromBranch: options.fromBranch,
|
|
270928
|
+
path: options.path
|
|
270257
270929
|
}));
|
|
270258
270930
|
} catch (error) {
|
|
270259
270931
|
for (const line of await githubReauthLines(error) ?? [])
|
|
270260
270932
|
log.message(line);
|
|
270261
270933
|
throw error;
|
|
270262
270934
|
}
|
|
270263
|
-
if (
|
|
270935
|
+
if (ndjson) {
|
|
270936
|
+
ndjson({
|
|
270937
|
+
type: "created",
|
|
270938
|
+
id: app.id,
|
|
270939
|
+
repo_url: app.repoUrl ?? null,
|
|
270940
|
+
editor_url: app.editorUrl,
|
|
270941
|
+
dir: app.dirName,
|
|
270942
|
+
path: app.targetDir
|
|
270943
|
+
});
|
|
270944
|
+
} else if (!jsonMode) {
|
|
270264
270945
|
if (app.repoUrl)
|
|
270265
270946
|
log.message(source_default.dim(`repo ${app.repoUrl}`));
|
|
270266
270947
|
log.message(source_default.dim(`editor ${app.editorUrl}`));
|
|
270267
|
-
log.message(source_default.dim(`linked
|
|
270948
|
+
log.message(source_default.dim(`linked ${app.here ? "./ (this directory)" : `./${app.dirName}`}`));
|
|
270268
270949
|
}
|
|
270269
270950
|
let finalState;
|
|
270270
270951
|
let previewUrl;
|
|
@@ -270273,10 +270954,16 @@ async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
|
270273
270954
|
const branchId = await resolveActiveBranchId().catch(() => {
|
|
270274
270955
|
return;
|
|
270275
270956
|
});
|
|
270276
|
-
const stream = createTurnStream(process.stdout.isTTY === true && !jsonMode, undefined, {
|
|
270957
|
+
const stream = createTurnStream(process.stdout.isTTY === true && !jsonMode && !ndjson, undefined, {
|
|
270958
|
+
idleLabel: "provisioning the sandbox and starting the build",
|
|
270959
|
+
verbose: options.verbose
|
|
270960
|
+
});
|
|
270277
270961
|
try {
|
|
270278
270962
|
const settled = await streamConversationUntilSettled((event) => {
|
|
270279
|
-
if (
|
|
270963
|
+
if (ndjson) {
|
|
270964
|
+
const { kind, ...rest } = event;
|
|
270965
|
+
ndjson({ type: kind, ...rest });
|
|
270966
|
+
} else if (!jsonMode)
|
|
270280
270967
|
stream.onEvent(event);
|
|
270281
270968
|
}, { branchId, timeoutMs: POLL_TIMEOUT_MS });
|
|
270282
270969
|
finalState = settled === "timeout" ? "processing" : (await getAppState(app.id)).status?.state ?? "ready";
|
|
@@ -270289,6 +270976,15 @@ async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
|
270289
270976
|
stream.stop();
|
|
270290
270977
|
}
|
|
270291
270978
|
}
|
|
270979
|
+
if (ndjson) {
|
|
270980
|
+
ndjson({
|
|
270981
|
+
type: "result",
|
|
270982
|
+
id: app.id,
|
|
270983
|
+
preview_url: previewUrl ?? null,
|
|
270984
|
+
status: finalState ?? "created"
|
|
270985
|
+
});
|
|
270986
|
+
return {};
|
|
270987
|
+
}
|
|
270292
270988
|
if (jsonMode) {
|
|
270293
270989
|
return {
|
|
270294
270990
|
stdout: `${JSON.stringify({
|
|
@@ -270314,7 +271010,7 @@ async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
|
270314
271010
|
}
|
|
270315
271011
|
if (finalState === "processing") {
|
|
270316
271012
|
return {
|
|
270317
|
-
outroMessage: `Still building — follow it with \`base44
|
|
271013
|
+
outroMessage: `Still building — follow it with \`base44 builder status\`.`
|
|
270318
271014
|
};
|
|
270319
271015
|
}
|
|
270320
271016
|
return {
|
|
@@ -270323,78 +271019,11 @@ async function newAction({ log, runTask, jsonMode }, prompt, options) {
|
|
|
270323
271019
|
}
|
|
270324
271020
|
function getNewCommand() {
|
|
270325
271021
|
const command = new Base44Command("new", { requireAppContext: false });
|
|
270326
|
-
command.description("Create an app and start building: from a prompt (the Base44 template), or over an existing GitHub repo with --import").argument("[prompt]", "What to build; the first agent turn starts immediately").option("--import <repo>", "Build over an existing GitHub repository instead of the template").option("--mode <mode>", "How to import: direct, fork, or copy (default: direct)").option("--name <name>", "Directory and app name (invented when omitted)").option("--repo-name <name>", "Name for the new GitHub repo when forking/copying").option("--from-branch <name>", "Import a specific branch of the repo").action(newAction);
|
|
270327
|
-
return command;
|
|
270328
|
-
}
|
|
270329
|
-
|
|
270330
|
-
// src/cli/commands/app/preview.ts
|
|
270331
|
-
async function previewAction(ctx) {
|
|
270332
|
-
const url = await ctx.runTask("Resolving preview URL (boots the sandbox if needed)", () => getPreviewUrl());
|
|
270333
|
-
if (ctx.jsonMode)
|
|
270334
|
-
return { stdout: `${JSON.stringify({ preview_url: url })}
|
|
270335
|
-
` };
|
|
270336
|
-
ctx.log.message(url);
|
|
270337
|
-
return { outroMessage: "Preview is live." };
|
|
270338
|
-
}
|
|
270339
|
-
function getPreviewCommand() {
|
|
270340
|
-
const command = new Base44Command("preview");
|
|
270341
|
-
command.description("Print the app's live preview URL").action(previewAction);
|
|
271022
|
+
command.description("Create an app and start building: from a prompt (the Base44 template), or over an existing GitHub repo with --import").argument("[prompt]", "What to build; the first agent turn starts immediately").option("--import <repo>", "Build over an existing GitHub repository instead of the template").option("--mode <mode>", "How to import: direct, fork, or copy (default: direct)").option("--name <name>", "Directory and app name (invented when omitted)").option("--path <dir>", "Directory to link (default: the current directory when empty, else ./<name>)").option("--repo-name <name>", "Name for the new GitHub repo when forking/copying").option("--from-branch <name>", "Import a specific branch of the repo").option("--verbose", "Show every tool result in full (no folding)").option("--stream-json", "Emit each stream event as a JSON line as it happens, then a final result line").action(newAction);
|
|
270342
271023
|
return command;
|
|
270343
271024
|
}
|
|
270344
271025
|
|
|
270345
|
-
// src/cli/commands/
|
|
270346
|
-
function lastAssistantReply(turn) {
|
|
270347
|
-
const messages = turn.conversation?.messages ?? [];
|
|
270348
|
-
for (let i = messages.length - 1;i >= 0; i--) {
|
|
270349
|
-
const { role, content } = messages[i];
|
|
270350
|
-
if (role === "assistant" && typeof content === "string" && content.trim()) {
|
|
270351
|
-
return content.trim();
|
|
270352
|
-
}
|
|
270353
|
-
}
|
|
270354
|
-
return;
|
|
270355
|
-
}
|
|
270356
|
-
async function sendAction(ctx, message) {
|
|
270357
|
-
const branchId = await resolveBranchId(ctx);
|
|
270358
|
-
if (ctx.jsonMode) {
|
|
270359
|
-
const turn = await ctx.runTask("Agent working (a turn can take minutes)", () => sendTurn(message, branchId));
|
|
270360
|
-
if (turn.queued)
|
|
270361
|
-
return { stdout: `${JSON.stringify({ queued: true })}
|
|
270362
|
-
` };
|
|
270363
|
-
return {
|
|
270364
|
-
stdout: `${JSON.stringify({
|
|
270365
|
-
status: turn.status?.state ?? "ready",
|
|
270366
|
-
error_source: turn.status?.error_source ?? null,
|
|
270367
|
-
reply: lastAssistantReply(turn) ?? null
|
|
270368
|
-
})}
|
|
270369
|
-
`
|
|
270370
|
-
};
|
|
270371
|
-
}
|
|
270372
|
-
const stream = createTurnStream(process.stdout.isTTY === true);
|
|
270373
|
-
let turn;
|
|
270374
|
-
try {
|
|
270375
|
-
turn = await streamConversationDuring(() => sendTurn(message, branchId), stream.onEvent, { branchId });
|
|
270376
|
-
} finally {
|
|
270377
|
-
stream.stop();
|
|
270378
|
-
}
|
|
270379
|
-
if (turn.queued) {
|
|
270380
|
-
return {
|
|
270381
|
-
outroMessage: "The agent is busy with an earlier message — yours was queued and runs next."
|
|
270382
|
-
};
|
|
270383
|
-
}
|
|
270384
|
-
if (turn.status?.state === "error") {
|
|
270385
|
-
return {
|
|
270386
|
-
outroMessage: `Turn failed (${turn.status.error_source ?? "unknown"}) — see the editor for details.`
|
|
270387
|
-
};
|
|
270388
|
-
}
|
|
270389
|
-
return { outroMessage: "Turn finished." };
|
|
270390
|
-
}
|
|
270391
|
-
function getSendCommand() {
|
|
270392
|
-
const command = new Base44Command("send", { supportsBranch: true });
|
|
270393
|
-
command.description("Send the agent one message and stream the turn until it finishes").argument("<message>", "What you want the agent to do").action(sendAction);
|
|
270394
|
-
return command;
|
|
270395
|
-
}
|
|
270396
|
-
|
|
270397
|
-
// src/cli/commands/app/status.ts
|
|
271026
|
+
// src/cli/commands/builder/status.ts
|
|
270398
271027
|
async function statusAction(ctx) {
|
|
270399
271028
|
const id = ctx.app?.id;
|
|
270400
271029
|
const app = await ctx.runTask("Reading app status", () => getAppState(id));
|
|
@@ -270416,7 +271045,7 @@ function getStatusCommand() {
|
|
|
270416
271045
|
return command;
|
|
270417
271046
|
}
|
|
270418
271047
|
|
|
270419
|
-
// src/cli/commands/
|
|
271048
|
+
// src/cli/commands/builder/stop.ts
|
|
270420
271049
|
async function stopAction(ctx) {
|
|
270421
271050
|
const branchId = await resolveBranchId(ctx);
|
|
270422
271051
|
await ctx.runTask("Stopping the running turn", () => stopTurn(branchId));
|
|
@@ -270431,470 +271060,9 @@ function getStopCommand() {
|
|
|
270431
271060
|
return command;
|
|
270432
271061
|
}
|
|
270433
271062
|
|
|
270434
|
-
// src/cli/commands/
|
|
270435
|
-
function
|
|
270436
|
-
return new Command2("
|
|
270437
|
-
}
|
|
270438
|
-
|
|
270439
|
-
// src/cli/commands/auth/password-login.ts
|
|
270440
|
-
import { dirname as dirname15, join as join22 } from "node:path";
|
|
270441
|
-
async function passwordLoginAction({ log, runTask }, action) {
|
|
270442
|
-
const shouldEnable = action === "enable";
|
|
270443
|
-
const { project } = await readProjectConfig();
|
|
270444
|
-
const configDir = dirname15(project.configPath);
|
|
270445
|
-
const authDir = join22(configDir, project.authDir);
|
|
270446
|
-
const updated = await runTask("Updating local auth config", async () => {
|
|
270447
|
-
const current = await readAuthConfig(authDir) ?? DEFAULT_AUTH_CONFIG;
|
|
270448
|
-
const merged = { ...current, enableUsernamePassword: shouldEnable };
|
|
270449
|
-
await writeAuthConfig(authDir, merged);
|
|
270450
|
-
return merged;
|
|
270451
|
-
});
|
|
270452
|
-
if (!shouldEnable && !hasAnyLoginMethod(updated)) {
|
|
270453
|
-
log.warn("Disabling password auth will leave no login methods enabled. Users will be locked out.");
|
|
270454
|
-
}
|
|
270455
|
-
const newStatus = shouldEnable ? "enabled" : "disabled";
|
|
270456
|
-
return {
|
|
270457
|
-
outroMessage: `Username & password authentication ${newStatus} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`
|
|
270458
|
-
};
|
|
270459
|
-
}
|
|
270460
|
-
function getPasswordLoginCommand() {
|
|
270461
|
-
return new Base44Command("password-login").description("Enable or disable username & password authentication").addArgument(new Argument2("<action>", "enable or disable password authentication").choices(["enable", "disable"])).action(passwordLoginAction);
|
|
270462
|
-
}
|
|
270463
|
-
|
|
270464
|
-
// src/cli/commands/auth/pull.ts
|
|
270465
|
-
import { dirname as dirname16, join as join23 } from "node:path";
|
|
270466
|
-
async function pullAuthAction({
|
|
270467
|
-
log,
|
|
270468
|
-
runTask
|
|
270469
|
-
}) {
|
|
270470
|
-
const { project } = await readProjectConfig();
|
|
270471
|
-
const configDir = dirname16(project.configPath);
|
|
270472
|
-
const authDir = join23(configDir, project.authDir);
|
|
270473
|
-
const remoteConfig = await runTask("Fetching auth config from Base44", async () => {
|
|
270474
|
-
return await pullAuthConfig();
|
|
270475
|
-
}, {
|
|
270476
|
-
successMessage: "Auth config fetched successfully",
|
|
270477
|
-
errorMessage: "Failed to fetch auth config"
|
|
270478
|
-
});
|
|
270479
|
-
const { written } = await runTask("Syncing auth config file", async () => {
|
|
270480
|
-
return await writeAuthConfig(authDir, remoteConfig);
|
|
270481
|
-
}, {
|
|
270482
|
-
successMessage: "Auth config file synced successfully",
|
|
270483
|
-
errorMessage: "Failed to sync auth config file"
|
|
270484
|
-
});
|
|
270485
|
-
if (written) {
|
|
270486
|
-
log.success("Auth config written to local file");
|
|
270487
|
-
} else {
|
|
270488
|
-
log.info("Auth config is already up to date");
|
|
270489
|
-
}
|
|
270490
|
-
return {
|
|
270491
|
-
outroMessage: `Pulled auth config to ${authDir} (overwrites local file)`
|
|
270492
|
-
};
|
|
270493
|
-
}
|
|
270494
|
-
function getAuthPullCommand() {
|
|
270495
|
-
return new Base44Command("pull").description("Pull auth config from Base44 to local file").action(pullAuthAction);
|
|
270496
|
-
}
|
|
270497
|
-
|
|
270498
|
-
// src/cli/commands/auth/push.ts
|
|
270499
|
-
async function pushAuthAction({ isNonInteractive, log, runTask }, options) {
|
|
270500
|
-
const { authConfig } = await readProjectConfig();
|
|
270501
|
-
if (authConfig.length === 0) {
|
|
270502
|
-
log.info("No local auth config found");
|
|
270503
|
-
return {
|
|
270504
|
-
outroMessage: "No auth config to push. Run `base44 auth pull` to fetch the remote config first."
|
|
270505
|
-
};
|
|
270506
|
-
}
|
|
270507
|
-
if (!hasAnyLoginMethod(authConfig[0])) {
|
|
270508
|
-
log.warn("This config has no login methods enabled. Pushing it will lock out all users.");
|
|
270509
|
-
}
|
|
270510
|
-
if (!options.yes) {
|
|
270511
|
-
if (isNonInteractive) {
|
|
270512
|
-
throw new InvalidInputError("--yes is required in non-interactive mode");
|
|
270513
|
-
}
|
|
270514
|
-
const shouldPush = await Re({
|
|
270515
|
-
message: "Push auth config to Base44?"
|
|
270516
|
-
});
|
|
270517
|
-
if (Ct(shouldPush) || !shouldPush) {
|
|
270518
|
-
return { outroMessage: "Push cancelled" };
|
|
270519
|
-
}
|
|
270520
|
-
}
|
|
270521
|
-
await runTask("Pushing auth config to Base44", async () => {
|
|
270522
|
-
return await pushAuthConfig(authConfig[0] ?? null);
|
|
270523
|
-
}, {
|
|
270524
|
-
successMessage: "Auth config pushed successfully",
|
|
270525
|
-
errorMessage: "Failed to push auth config"
|
|
270526
|
-
});
|
|
270527
|
-
return {
|
|
270528
|
-
outroMessage: "Auth config pushed to Base44"
|
|
270529
|
-
};
|
|
270530
|
-
}
|
|
270531
|
-
function getAuthPushCommand() {
|
|
270532
|
-
return new Base44Command("push").description("Push local auth config to Base44").option("-y, --yes", "Skip confirmation prompt").action(pushAuthAction);
|
|
270533
|
-
}
|
|
270534
|
-
|
|
270535
|
-
// src/cli/commands/auth/social-login.ts
|
|
270536
|
-
import { dirname as dirname17, join as join24, resolve as resolve6 } from "node:path";
|
|
270537
|
-
var PROVIDER_LABELS = {
|
|
270538
|
-
google: "Google",
|
|
270539
|
-
microsoft: "Microsoft",
|
|
270540
|
-
facebook: "Facebook",
|
|
270541
|
-
apple: "Apple"
|
|
270542
|
-
};
|
|
270543
|
-
var VALID_PROVIDER_NAMES = Object.keys(SOCIAL_PROVIDERS);
|
|
270544
|
-
var PROVIDER_OAUTH_CLI = {
|
|
270545
|
-
google: {
|
|
270546
|
-
envVar: "google_oauth_client_secret",
|
|
270547
|
-
promptMessage: "Enter Google OAuth client secret"
|
|
270548
|
-
}
|
|
270549
|
-
};
|
|
270550
|
-
function hasSecretOptions(options) {
|
|
270551
|
-
return Boolean(options.clientSecret || options.clientSecretStdin || options.envFile);
|
|
270552
|
-
}
|
|
270553
|
-
function hasCustomOAuthOptions(options) {
|
|
270554
|
-
return Boolean(options.clientId || hasSecretOptions(options));
|
|
270555
|
-
}
|
|
270556
|
-
async function socialLoginAction({ log, isNonInteractive, runTask }, provider, action, options) {
|
|
270557
|
-
const shouldEnable = action === "enable";
|
|
270558
|
-
const providerInfo = SOCIAL_PROVIDERS[provider];
|
|
270559
|
-
const label = PROVIDER_LABELS[provider];
|
|
270560
|
-
const hasOAuthOptions = hasCustomOAuthOptions(options);
|
|
270561
|
-
if (hasOAuthOptions && !providerInfo.customOAuth) {
|
|
270562
|
-
throw new InvalidInputError(`Custom OAuth options are only supported for providers with custom OAuth (e.g., google). Use: base44 auth social-login ${provider} ${action}`);
|
|
270563
|
-
}
|
|
270564
|
-
if (hasOAuthOptions && !shouldEnable) {
|
|
270565
|
-
throw new InvalidInputError(`Custom OAuth options cannot be used with disable. To disable ${label} login: base44 auth social-login ${provider} disable`);
|
|
270566
|
-
}
|
|
270567
|
-
if (hasSecretOptions(options) && !options.clientId) {
|
|
270568
|
-
throw new InvalidInputError(`--client-id is required when providing a client secret. Use: base44 auth social-login ${provider} enable --client-id <id> --client-secret <secret>`);
|
|
270569
|
-
}
|
|
270570
|
-
const oauth = providerInfo.customOAuth;
|
|
270571
|
-
const oauthCli = PROVIDER_OAUTH_CLI[provider];
|
|
270572
|
-
const useCustomOAuth = shouldEnable && hasOAuthOptions && oauth != null;
|
|
270573
|
-
let clientSecret;
|
|
270574
|
-
if (useCustomOAuth && oauth && oauthCli && hasSecretOptions(options)) {
|
|
270575
|
-
if (options.envFile) {
|
|
270576
|
-
const secrets = await parseEnvFile(resolve6(options.envFile));
|
|
270577
|
-
const value = secrets[oauthCli.envVar];
|
|
270578
|
-
if (!value) {
|
|
270579
|
-
throw new InvalidInputError(`Key "${oauthCli.envVar}" not found in ${options.envFile}.`);
|
|
270580
|
-
}
|
|
270581
|
-
clientSecret = value;
|
|
270582
|
-
} else {
|
|
270583
|
-
clientSecret = await resolveSecret({
|
|
270584
|
-
flagValue: options.clientSecret,
|
|
270585
|
-
fromStdin: options.clientSecretStdin,
|
|
270586
|
-
envVar: oauthCli.envVar,
|
|
270587
|
-
promptMessage: oauthCli.promptMessage,
|
|
270588
|
-
isNonInteractive,
|
|
270589
|
-
name: "client secret",
|
|
270590
|
-
hints: [
|
|
270591
|
-
{
|
|
270592
|
-
message: `Provide via flag: base44 auth social-login ${provider} enable --client-id <id> --client-secret <secret>`,
|
|
270593
|
-
command: `base44 auth social-login ${provider} enable --client-id <id> --client-secret <secret>`
|
|
270594
|
-
},
|
|
270595
|
-
{
|
|
270596
|
-
message: `Provide via stdin: echo <secret> | base44 auth social-login ${provider} enable --client-id <id> --client-secret-stdin`
|
|
270597
|
-
},
|
|
270598
|
-
{
|
|
270599
|
-
message: `Provide via env: ${oauthCli.envVar}=<secret> base44 auth social-login ${provider} enable --client-id <id>`
|
|
270600
|
-
}
|
|
270601
|
-
]
|
|
270602
|
-
});
|
|
270603
|
-
}
|
|
270604
|
-
}
|
|
270605
|
-
const { project } = await readProjectConfig();
|
|
270606
|
-
const configDir = dirname17(project.configPath);
|
|
270607
|
-
const authDir = join24(configDir, project.authDir);
|
|
270608
|
-
const { config: updated } = await runTask("Updating local auth config", async () => updateSocialLoginConfig(authDir, provider, shouldEnable, useCustomOAuth && options.clientId ? { clientId: options.clientId } : undefined));
|
|
270609
|
-
if (clientSecret) {
|
|
270610
|
-
await runTask("Saving client secret", async () => pushCustomOAuthSecret(provider, clientSecret));
|
|
270611
|
-
}
|
|
270612
|
-
if (!shouldEnable && !hasAnyLoginMethod(updated)) {
|
|
270613
|
-
log.warn(`Disabling ${label} login will leave no login methods enabled. Users will be locked out.`);
|
|
270614
|
-
}
|
|
270615
|
-
const newStatus = shouldEnable ? "enabled" : "disabled";
|
|
270616
|
-
const oauthNote = useCustomOAuth ? " with custom OAuth" : "";
|
|
270617
|
-
let outroMessage = `${label} login ${newStatus}${oauthNote} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`;
|
|
270618
|
-
if (useCustomOAuth && !clientSecret) {
|
|
270619
|
-
outroMessage += `
|
|
270620
|
-
Remember to push the client secret separately: base44 secrets set --env-file <path>`;
|
|
270621
|
-
}
|
|
270622
|
-
return { outroMessage };
|
|
270623
|
-
}
|
|
270624
|
-
function getSocialLoginCommand() {
|
|
270625
|
-
return new Base44Command("social-login").description("Enable or disable social login providers (google, microsoft, facebook, apple)").addArgument(new Argument2("<provider>", "social login provider").choices(VALID_PROVIDER_NAMES)).addArgument(new Argument2("<action>", "enable or disable the provider").choices([
|
|
270626
|
-
"enable",
|
|
270627
|
-
"disable"
|
|
270628
|
-
])).option("--client-id <id>", "custom OAuth client ID (Google only)").option("--client-secret <secret>", "custom OAuth client secret (Google only)").option("--client-secret-stdin", "read client secret from stdin (Google only)").option("--env-file <path>", "read client secret from a .env file (Google only)").action(socialLoginAction);
|
|
270629
|
-
}
|
|
270630
|
-
|
|
270631
|
-
// src/cli/commands/auth/sso.ts
|
|
270632
|
-
import { dirname as dirname18, join as join25, resolve as resolve7 } from "node:path";
|
|
270633
|
-
var SSOConfigFileSchema = object({
|
|
270634
|
-
provider: _enum(Object.values(KNOWN_SSO_PROVIDERS)),
|
|
270635
|
-
clientId: string2(),
|
|
270636
|
-
clientSecret: string2(),
|
|
270637
|
-
scope: string2().optional(),
|
|
270638
|
-
discoveryUrl: string2().optional(),
|
|
270639
|
-
tenantId: string2().optional(),
|
|
270640
|
-
oktaDomain: string2().optional(),
|
|
270641
|
-
authEndpoint: string2().optional(),
|
|
270642
|
-
tokenEndpoint: string2().optional(),
|
|
270643
|
-
userinfoEndpoint: string2().optional(),
|
|
270644
|
-
jwksUri: string2().optional(),
|
|
270645
|
-
ssoName: string2().optional()
|
|
270646
|
-
});
|
|
270647
|
-
async function loadSSOConfigFile(filePath) {
|
|
270648
|
-
const resolved = resolve7(filePath);
|
|
270649
|
-
const raw = await readJsonFile(resolved);
|
|
270650
|
-
const result = SSOConfigFileSchema.safeParse(raw);
|
|
270651
|
-
if (!result.success) {
|
|
270652
|
-
throw new SchemaValidationError("Invalid SSO config file", result.error, filePath);
|
|
270653
|
-
}
|
|
270654
|
-
return result.data;
|
|
270655
|
-
}
|
|
270656
|
-
function mergeFileWithFlags(fileConfig, options) {
|
|
270657
|
-
return {
|
|
270658
|
-
provider: options.provider ?? fileConfig.provider,
|
|
270659
|
-
clientId: options.clientId ?? fileConfig.clientId,
|
|
270660
|
-
clientSecret: options.clientSecret ?? fileConfig.clientSecret,
|
|
270661
|
-
clientSecretStdin: options.clientSecretStdin,
|
|
270662
|
-
envFile: options.envFile,
|
|
270663
|
-
scope: options.scope ?? fileConfig.scope,
|
|
270664
|
-
discoveryUrl: options.discoveryUrl ?? fileConfig.discoveryUrl,
|
|
270665
|
-
tenantId: options.tenantId ?? fileConfig.tenantId,
|
|
270666
|
-
oktaDomain: options.oktaDomain ?? fileConfig.oktaDomain,
|
|
270667
|
-
authEndpoint: options.authEndpoint ?? fileConfig.authEndpoint,
|
|
270668
|
-
tokenEndpoint: options.tokenEndpoint ?? fileConfig.tokenEndpoint,
|
|
270669
|
-
userinfoEndpoint: options.userinfoEndpoint ?? fileConfig.userinfoEndpoint,
|
|
270670
|
-
jwksUri: options.jwksUri ?? fileConfig.jwksUri,
|
|
270671
|
-
ssoName: options.ssoName ?? fileConfig.ssoName
|
|
270672
|
-
};
|
|
270673
|
-
}
|
|
270674
|
-
var providerNames = Object.keys(KNOWN_SSO_PROVIDERS);
|
|
270675
|
-
var SECRET_KEY_TO_FLAG = {
|
|
270676
|
-
["sso_name" /* Name */]: "--sso-name",
|
|
270677
|
-
["sso_client_id" /* ClientId */]: "--client-id",
|
|
270678
|
-
["sso_client_secret" /* ClientSecret */]: "--client-secret",
|
|
270679
|
-
["sso_scope" /* Scope */]: "--scope",
|
|
270680
|
-
["sso_discovery_url" /* DiscoveryUrl */]: "--discovery-url",
|
|
270681
|
-
["sso_tenant_id" /* TenantId */]: "--tenant-id",
|
|
270682
|
-
["sso_auth_endpoint" /* AuthEndpoint */]: "--auth-endpoint",
|
|
270683
|
-
["sso_token_endpoint" /* TokenEndpoint */]: "--token-endpoint",
|
|
270684
|
-
["sso_userinfo_endpoint" /* UserinfoEndpoint */]: "--userinfo-endpoint",
|
|
270685
|
-
["sso_okta_domain" /* OktaDomain */]: "--okta-domain",
|
|
270686
|
-
["sso_jwks_uri" /* JwksUri */]: "--jwks-uri"
|
|
270687
|
-
};
|
|
270688
|
-
function secretKeyToFlag(key) {
|
|
270689
|
-
return SECRET_KEY_TO_FLAG[key];
|
|
270690
|
-
}
|
|
270691
|
-
function exampleCommand(provider) {
|
|
270692
|
-
let cmd = `base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`;
|
|
270693
|
-
if (provider === KNOWN_SSO_PROVIDERS.microsoft)
|
|
270694
|
-
cmd += " --tenant-id <id>";
|
|
270695
|
-
if (provider === KNOWN_SSO_PROVIDERS.okta)
|
|
270696
|
-
cmd += " --okta-domain <domain>";
|
|
270697
|
-
if (provider === KNOWN_SSO_PROVIDERS.custom)
|
|
270698
|
-
cmd += " --sso-name <name> --auth-endpoint <url> --token-endpoint <url> --userinfo-endpoint <url> --jwks-uri <url>";
|
|
270699
|
-
return cmd;
|
|
270700
|
-
}
|
|
270701
|
-
function validateProvider(provider) {
|
|
270702
|
-
if (!provider) {
|
|
270703
|
-
throw new InvalidInputError("Missing --provider.", {
|
|
270704
|
-
hints: [
|
|
270705
|
-
{
|
|
270706
|
-
message: `Valid providers: ${providerNames.join(", ")}`,
|
|
270707
|
-
command: "base44 auth sso enable --provider <provider> --client-id <id> --client-secret <secret>"
|
|
270708
|
-
}
|
|
270709
|
-
]
|
|
270710
|
-
});
|
|
270711
|
-
}
|
|
270712
|
-
return provider;
|
|
270713
|
-
}
|
|
270714
|
-
async function ssoEnableAction({ isNonInteractive, runTask }, options) {
|
|
270715
|
-
if (options.file && options.envFile) {
|
|
270716
|
-
throw new InvalidInputError("--file and --env-file cannot be used together. Provide the client secret either inside --file or via --env-file.");
|
|
270717
|
-
}
|
|
270718
|
-
let merged = options;
|
|
270719
|
-
if (options.file) {
|
|
270720
|
-
const fileConfig = await loadSSOConfigFile(options.file);
|
|
270721
|
-
merged = mergeFileWithFlags(fileConfig, options);
|
|
270722
|
-
}
|
|
270723
|
-
const provider = validateProvider(merged.provider);
|
|
270724
|
-
if (!merged.clientId) {
|
|
270725
|
-
throw new InvalidInputError("Missing --client-id.", {
|
|
270726
|
-
hints: [
|
|
270727
|
-
{
|
|
270728
|
-
message: `Example: base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`,
|
|
270729
|
-
command: `base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`
|
|
270730
|
-
}
|
|
270731
|
-
]
|
|
270732
|
-
});
|
|
270733
|
-
}
|
|
270734
|
-
let clientSecret;
|
|
270735
|
-
if (merged.envFile && !merged.clientSecret) {
|
|
270736
|
-
const secrets = await parseEnvFile(resolve7(merged.envFile));
|
|
270737
|
-
const value = secrets.sso_client_secret;
|
|
270738
|
-
if (!value) {
|
|
270739
|
-
throw new InvalidInputError(`Key "sso_client_secret" not found in ${merged.envFile}.`);
|
|
270740
|
-
}
|
|
270741
|
-
clientSecret = value;
|
|
270742
|
-
} else {
|
|
270743
|
-
clientSecret = await resolveSecret({
|
|
270744
|
-
flagValue: merged.clientSecret,
|
|
270745
|
-
fromStdin: merged.clientSecretStdin,
|
|
270746
|
-
envVar: "sso_client_secret",
|
|
270747
|
-
promptMessage: "Enter SSO client secret",
|
|
270748
|
-
isNonInteractive,
|
|
270749
|
-
name: "client secret",
|
|
270750
|
-
hints: [
|
|
270751
|
-
{
|
|
270752
|
-
message: `Provide via flag: base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`,
|
|
270753
|
-
command: `base44 auth sso enable --provider ${provider} --client-id <id> --client-secret <secret>`
|
|
270754
|
-
},
|
|
270755
|
-
{
|
|
270756
|
-
message: `Provide via stdin: echo <secret> | base44 auth sso enable --provider ${provider} --client-id <id> --client-secret-stdin`
|
|
270757
|
-
},
|
|
270758
|
-
{
|
|
270759
|
-
message: `Provide via env: sso_client_secret=<secret> base44 auth sso enable --provider ${provider} --client-id <id>`
|
|
270760
|
-
}
|
|
270761
|
-
]
|
|
270762
|
-
});
|
|
270763
|
-
}
|
|
270764
|
-
const secretOptions = {
|
|
270765
|
-
clientId: merged.clientId,
|
|
270766
|
-
clientSecret,
|
|
270767
|
-
scope: merged.scope,
|
|
270768
|
-
discoveryUrl: merged.discoveryUrl,
|
|
270769
|
-
tenantId: merged.tenantId,
|
|
270770
|
-
oktaDomain: merged.oktaDomain,
|
|
270771
|
-
authEndpoint: merged.authEndpoint,
|
|
270772
|
-
tokenEndpoint: merged.tokenEndpoint,
|
|
270773
|
-
userinfoEndpoint: merged.userinfoEndpoint,
|
|
270774
|
-
jwksUri: merged.jwksUri,
|
|
270775
|
-
ssoName: merged.ssoName
|
|
270776
|
-
};
|
|
270777
|
-
let secrets;
|
|
270778
|
-
try {
|
|
270779
|
-
secrets = buildSSOSecrets(provider, secretOptions);
|
|
270780
|
-
} catch (error) {
|
|
270781
|
-
if (error instanceof MissingSSOFieldsError) {
|
|
270782
|
-
const flagNames = error.missingKeys.map(secretKeyToFlag);
|
|
270783
|
-
throw new InvalidInputError(`Missing required fields for ${error.provider}: ${flagNames.join(", ")}`, {
|
|
270784
|
-
hints: [
|
|
270785
|
-
{
|
|
270786
|
-
message: `Example: ${exampleCommand(provider)}`,
|
|
270787
|
-
command: exampleCommand(provider)
|
|
270788
|
-
}
|
|
270789
|
-
]
|
|
270790
|
-
});
|
|
270791
|
-
}
|
|
270792
|
-
throw error;
|
|
270793
|
-
}
|
|
270794
|
-
const { project } = await readProjectConfig();
|
|
270795
|
-
const configDir = dirname18(project.configPath);
|
|
270796
|
-
const authDir = join25(configDir, project.authDir);
|
|
270797
|
-
await runTask("Updating local auth config", async () => updateSSOConfig(authDir, provider, true));
|
|
270798
|
-
await runTask("Saving SSO credentials", async () => pushSSOSecrets(secrets));
|
|
270799
|
-
return {
|
|
270800
|
-
outroMessage: `SSO configured with ${provider} in local config. Run \`base44 auth push\` or \`base44 deploy\` to apply.`
|
|
270801
|
-
};
|
|
270802
|
-
}
|
|
270803
|
-
function hasEnableOnlyOptions(options) {
|
|
270804
|
-
return Boolean(options.provider || options.clientId || options.clientSecret || options.clientSecretStdin || options.envFile || options.file || options.scope || options.discoveryUrl || options.tenantId || options.oktaDomain || options.authEndpoint || options.tokenEndpoint || options.userinfoEndpoint || options.jwksUri || options.ssoName);
|
|
270805
|
-
}
|
|
270806
|
-
async function ssoDisableAction({ log, runTask }, options) {
|
|
270807
|
-
if (hasEnableOnlyOptions(options)) {
|
|
270808
|
-
throw new InvalidInputError("Configuration options cannot be used with disable. To disable SSO: base44 auth sso disable");
|
|
270809
|
-
}
|
|
270810
|
-
const { project } = await readProjectConfig();
|
|
270811
|
-
const configDir = dirname18(project.configPath);
|
|
270812
|
-
const authDir = join25(configDir, project.authDir);
|
|
270813
|
-
const updated = await runTask("Updating local auth config", async () => updateSSOConfig(authDir, null, false));
|
|
270814
|
-
await runTask("Removing SSO credentials", async () => deleteSSOSecrets());
|
|
270815
|
-
if (!hasAnyLoginMethod(updated)) {
|
|
270816
|
-
log.warn("Disabling SSO will leave no login methods enabled. Users will be locked out.");
|
|
270817
|
-
}
|
|
270818
|
-
return {
|
|
270819
|
-
outroMessage: "SSO disabled in local config and credentials removed. Run `base44 auth push` or `base44 deploy` to apply."
|
|
270820
|
-
};
|
|
270821
|
-
}
|
|
270822
|
-
async function ssoAction(context, action, options) {
|
|
270823
|
-
if (action === "disable") {
|
|
270824
|
-
return ssoDisableAction(context, options);
|
|
270825
|
-
}
|
|
270826
|
-
return ssoEnableAction(context, options);
|
|
270827
|
-
}
|
|
270828
|
-
function getSSOCommand() {
|
|
270829
|
-
return new Base44Command("sso").description("Configure SSO identity provider (google, microsoft, github, okta, custom). SSO and social login are mutually exclusive — enabling one disables the other in the local auth config.").addArgument(new Argument2("<action>", "enable or disable SSO").choices([
|
|
270830
|
-
"enable",
|
|
270831
|
-
"disable"
|
|
270832
|
-
])).addOption(new Option2("--provider <provider>", "SSO provider").choices(Object.values(KNOWN_SSO_PROVIDERS))).option("--client-id <id>", "OAuth client ID").option("--client-secret <secret>", "OAuth client secret").option("--client-secret-stdin", "Read client secret from stdin").option("--env-file <path>", "Read client secret from a .env file (key: sso_client_secret)").option("--file <path>", "JSON config file with all SSO settings").option("--scope <scope>", "OAuth scope (defaults per provider)").option("--discovery-url <url>", "OIDC discovery URL").option("--tenant-id <id>", "Microsoft tenant ID (required for microsoft)").option("--okta-domain <domain>", "Okta domain (required for okta)").option("--auth-endpoint <url>", "Authorization endpoint (required for custom)").option("--token-endpoint <url>", "Token endpoint (required for custom)").option("--userinfo-endpoint <url>", "Userinfo endpoint (required for custom)").option("--jwks-uri <url>", "JWKS URI (required for custom)").option("--sso-name <name>", "Provider display name (required for custom)").action(ssoAction);
|
|
270833
|
-
}
|
|
270834
|
-
|
|
270835
|
-
// src/cli/commands/auth/index.ts
|
|
270836
|
-
function getAuthCommand() {
|
|
270837
|
-
return new Command2("auth").description("Manage app authentication settings").addCommand(getPasswordLoginCommand()).addCommand(getSocialLoginCommand()).addCommand(getSSOCommand()).addCommand(getAuthPullCommand()).addCommand(getAuthPushCommand());
|
|
270838
|
-
}
|
|
270839
|
-
|
|
270840
|
-
// src/cli/commands/auth/login.ts
|
|
270841
|
-
function getLoginCommand() {
|
|
270842
|
-
return new Base44Command("login", {
|
|
270843
|
-
requireAuth: false,
|
|
270844
|
-
requireAppContext: false
|
|
270845
|
-
}).description("Authenticate with Base44").action(login);
|
|
270846
|
-
}
|
|
270847
|
-
|
|
270848
|
-
// src/cli/commands/auth/logout.ts
|
|
270849
|
-
async function logout(_ctx) {
|
|
270850
|
-
await deleteAuth();
|
|
270851
|
-
return { outroMessage: "Logged out successfully" };
|
|
270852
|
-
}
|
|
270853
|
-
function getLogoutCommand() {
|
|
270854
|
-
return new Base44Command("logout", {
|
|
270855
|
-
requireAuth: false,
|
|
270856
|
-
requireAppContext: false
|
|
270857
|
-
}).description("Logout from current device").action(logout);
|
|
270858
|
-
}
|
|
270859
|
-
|
|
270860
|
-
// src/cli/commands/auth/whoami.ts
|
|
270861
|
-
async function whoami(_ctx) {
|
|
270862
|
-
const workspaceApiKey = getWorkspaceApiKeyFromEnv();
|
|
270863
|
-
if (workspaceApiKey && isWorkspaceApiKey(workspaceApiKey)) {
|
|
270864
|
-
return {
|
|
270865
|
-
outroMessage: `Using workspace API key: ${theme.styles.bold(workspaceApiKey.slice(0, 10))}`
|
|
270866
|
-
};
|
|
270867
|
-
}
|
|
270868
|
-
const auth = await readAuth();
|
|
270869
|
-
return { outroMessage: `Logged in as: ${theme.styles.bold(auth.email)}` };
|
|
270870
|
-
}
|
|
270871
|
-
function getWhoamiCommand() {
|
|
270872
|
-
return new Base44Command("whoami", { requireAppContext: false }).description("Display current authenticated user").action(whoami);
|
|
270873
|
-
}
|
|
270874
|
-
|
|
270875
|
-
// src/cli/commands/branches/index.ts
|
|
270876
|
-
async function listBranchesAction({
|
|
270877
|
-
log,
|
|
270878
|
-
runTask,
|
|
270879
|
-
jsonMode
|
|
270880
|
-
}) {
|
|
270881
|
-
const remote = await runTask("Fetching branches", () => listBranches());
|
|
270882
|
-
const branches = [
|
|
270883
|
-
{ name: "main", status: "active" },
|
|
270884
|
-
...remote.map((branch) => ({
|
|
270885
|
-
name: branch.branch_name,
|
|
270886
|
-
status: branch.status
|
|
270887
|
-
}))
|
|
270888
|
-
];
|
|
270889
|
-
if (jsonMode)
|
|
270890
|
-
return { stdout: `${JSON.stringify({ branches })}
|
|
270891
|
-
` };
|
|
270892
|
-
for (const branch of branches)
|
|
270893
|
-
log.message(`${branch.name} (${branch.status})`);
|
|
270894
|
-
return { outroMessage: `${branches.length} branches` };
|
|
270895
|
-
}
|
|
270896
|
-
function getBranchesCommand() {
|
|
270897
|
-
return new Command2("branches").description("Discover an app's branches").addCommand(new Base44Command("list").description("List main and active branch names for use with --branch").action(listBranchesAction));
|
|
271063
|
+
// src/cli/commands/builder/index.ts
|
|
271064
|
+
function getBuilderCommand() {
|
|
271065
|
+
return new Command2("builder").description("Build an app with the Base44 builder agent, non-interactively: create it, send turns, read status, stop, pick the model").addCommand(getNewCommand()).addCommand(getSendCommand()).addCommand(getStatusCommand()).addCommand(getStopCommand()).addCommand(getModelCommand());
|
|
270898
271066
|
}
|
|
270899
271067
|
|
|
270900
271068
|
// ../../node_modules/ink/build/render.js
|
|
@@ -275860,6 +276028,119 @@ var build_default = TextInput;
|
|
|
275860
276028
|
// src/cli/commands/code/session.tsx
|
|
275861
276029
|
var import_react23 = __toESM(require_react(), 1);
|
|
275862
276030
|
|
|
276031
|
+
// src/cli/commands/code/logo.ts
|
|
276032
|
+
var ROWS = 6;
|
|
276033
|
+
var ASPECT = 0.44;
|
|
276034
|
+
var SAMPLES = 4;
|
|
276035
|
+
var FILL = 0.6;
|
|
276036
|
+
var GAP_ROW = 3.5 + 0.5;
|
|
276037
|
+
var GAP_HEIGHT_ROWS = 0.8;
|
|
276038
|
+
var LOGO_COLS = Math.max(2, Math.floor(ROWS / ASPECT + 0.5));
|
|
276039
|
+
var OCTANT = {
|
|
276040
|
+
rx: 2,
|
|
276041
|
+
ry: 4,
|
|
276042
|
+
table: Array.from(" \uD83E\uDF82\uD833\uDD00▘\uD833\uDD01\uD833\uDD02\uD833\uDD03\uD833\uDD04▝\uD833\uDD05\uD833\uDD06\uD833\uDD07\uD833\uDD08▀\uD833\uDD09\uD833\uDD0A\uD833\uDD0B\uD833\uDD0C\uD833\uDD00\uD833\uDD0D\uD833\uDD0E\uD833\uDD0F\uD833\uDD10\uD833\uDD11\uD833\uDD12\uD833\uDD13\uD833\uDD14\uD833\uDD15\uD833\uDD16\uD833\uDD17\uD833\uDD18\uD833\uDD19\uD833\uDD1A\uD833\uDD1B\uD833\uDD1C\uD833\uDD1D\uD833\uDD1E\uD833\uDD1F\uD833\uDD03\uD833\uDD20\uD833\uDD21\uD833\uDD22\uD833\uDD23\uD833\uDD24\uD833\uDD25\uD833\uDD26\uD833\uDD27\uD833\uDD28\uD833\uDD29\uD833\uDD2A\uD833\uDD2B\uD833\uDD2C\uD833\uDD2D\uD833\uDD2E\uD833\uDD2F\uD833\uDD30\uD833\uDD31\uD833\uDD32\uD833\uDD33\uD833\uDD34\uD833\uDD35\uD83E\uDF85 \uD833\uDD36\uD833\uDD37\uD833\uDD38\uD833\uDD39\uD833\uDD3A\uD833\uDD3B\uD833\uDD3C\uD833\uDD3D\uD833\uDD3E\uD833\uDD3F\uD833\uDD40\uD833\uDD41\uD833\uDD42\uD833\uDD43\uD833\uDD44▖\uD833\uDD45\uD833\uDD46\uD833\uDD47\uD833\uDD48▌\uD833\uDD49\uD833\uDD4A\uD833\uDD4B\uD833\uDD4C▞\uD833\uDD4D\uD833\uDD4E\uD833\uDD4F\uD833\uDD50▛\uD833\uDD51\uD833\uDD52\uD833\uDD53\uD833\uDD54\uD833\uDD55\uD833\uDD56\uD833\uDD57\uD833\uDD58\uD833\uDD59\uD833\uDD5A\uD833\uDD5B\uD833\uDD5C\uD833\uDD5D\uD833\uDD5E\uD833\uDD5F\uD833\uDD60\uD833\uDD61\uD833\uDD62\uD833\uDD63\uD833\uDD64\uD833\uDD65\uD833\uDD66\uD833\uDD67\uD833\uDD68\uD833\uDD69\uD833\uDD6A\uD833\uDD6B\uD833\uDD6C\uD833\uDD6D\uD833\uDD6E\uD833\uDD6F\uD833\uDD70 \uD833\uDD71\uD833\uDD72\uD833\uDD73\uD833\uDD74\uD833\uDD75\uD833\uDD76\uD833\uDD77\uD833\uDD78\uD833\uDD79\uD833\uDD7A\uD833\uDD7B\uD833\uDD7C\uD833\uDD7D\uD833\uDD7E\uD833\uDD7F\uD833\uDD80\uD833\uDD81\uD833\uDD82\uD833\uDD83\uD833\uDD84\uD833\uDD85\uD833\uDD86\uD833\uDD87\uD833\uDD88\uD833\uDD89\uD833\uDD8A\uD833\uDD8B\uD833\uDD8C\uD833\uDD8D\uD833\uDD8E\uD833\uDD8F▗\uD833\uDD90\uD833\uDD91\uD833\uDD92\uD833\uDD93▚\uD833\uDD94\uD833\uDD95\uD833\uDD96\uD833\uDD97▐\uD833\uDD98\uD833\uDD99\uD833\uDD9A\uD833\uDD9B▜\uD833\uDD9C\uD833\uDD9D\uD833\uDD9E\uD833\uDD9F\uD833\uDDA0\uD833\uDDA1\uD833\uDDA2\uD833\uDDA3\uD833\uDDA4\uD833\uDDA5\uD833\uDDA6\uD833\uDDA7\uD833\uDDA8\uD833\uDDA9\uD833\uDDAA\uD833\uDDAB▂\uD833\uDDAC\uD833\uDDAD\uD833\uDDAE\uD833\uDDAF\uD833\uDDB0\uD833\uDDB1\uD833\uDDB2\uD833\uDDB3\uD833\uDDB4\uD833\uDDB5\uD833\uDDB6\uD833\uDDB7\uD833\uDDB8\uD833\uDDB9\uD833\uDDBA\uD833\uDDBB\uD833\uDDBC\uD833\uDDBD\uD833\uDDBE\uD833\uDDBF\uD833\uDDC0\uD833\uDDC1\uD833\uDDC2\uD833\uDDC3\uD833\uDDC4\uD833\uDDC5\uD833\uDDC6\uD833\uDDC7\uD833\uDDC8\uD833\uDDC9\uD833\uDDCA\uD833\uDDCB\uD833\uDDCC\uD833\uDDCD\uD833\uDDCE\uD833\uDDCF\uD833\uDDD0\uD833\uDDD1\uD833\uDDD2\uD833\uDDD3\uD833\uDDD4\uD833\uDDD5\uD833\uDDD6\uD833\uDDD7\uD833\uDDD8\uD833\uDDD9\uD833\uDDDA▄\uD833\uDDDB\uD833\uDDDC\uD833\uDDDD\uD833\uDDDE▙\uD833\uDDDF\uD833\uDDE0\uD833\uDDE1\uD833\uDDE2▟\uD833\uDDE3▆\uD833\uDDE4\uD833\uDDE5█")
|
|
276043
|
+
};
|
|
276044
|
+
var QUAD = {
|
|
276045
|
+
rx: 2,
|
|
276046
|
+
ry: 2,
|
|
276047
|
+
table: Array.from(" ▘▝▀▖▌▞▛▗▚▐▜▄▙▟█")
|
|
276048
|
+
};
|
|
276049
|
+
function detectTier(env = process.env) {
|
|
276050
|
+
const term = env.TERM ?? "";
|
|
276051
|
+
const prog = env.TERM_PROGRAM ?? "";
|
|
276052
|
+
if (prog === "ghostty" || term.includes("ghostty"))
|
|
276053
|
+
return "octant";
|
|
276054
|
+
if (env.KITTY_WINDOW_ID || term.includes("kitty"))
|
|
276055
|
+
return "octant";
|
|
276056
|
+
if (env.WEZTERM_PANE || env.WEZTERM_EXECUTABLE)
|
|
276057
|
+
return "octant";
|
|
276058
|
+
if (term.startsWith("foot") || prog === "contour")
|
|
276059
|
+
return "octant";
|
|
276060
|
+
return "quad";
|
|
276061
|
+
}
|
|
276062
|
+
function coverageGrid(rows, cols, aspect, pixelH) {
|
|
276063
|
+
const worldH = rows * pixelH;
|
|
276064
|
+
const worldW = cols * aspect;
|
|
276065
|
+
const radius = Math.min(worldH, worldW) / 2;
|
|
276066
|
+
const cx = worldW / 2;
|
|
276067
|
+
const cy = worldH / 2;
|
|
276068
|
+
const step = 1 / SAMPLES;
|
|
276069
|
+
const grid = [];
|
|
276070
|
+
for (let py = 0;py < rows; py++) {
|
|
276071
|
+
const y0 = py * pixelH;
|
|
276072
|
+
const y1 = y0 + pixelH;
|
|
276073
|
+
const dyLo = y0 <= cy && cy <= y1 ? 0 : Math.min(Math.abs(y0 - cy), Math.abs(y1 - cy));
|
|
276074
|
+
const dyHi = Math.max(Math.abs(y0 - cy), Math.abs(y1 - cy));
|
|
276075
|
+
const line = [];
|
|
276076
|
+
for (let px = 0;px < cols; px++) {
|
|
276077
|
+
const x0 = px * aspect;
|
|
276078
|
+
const x1 = x0 + aspect;
|
|
276079
|
+
const dxLo = x0 <= cx && cx <= x1 ? 0 : Math.min(Math.abs(x0 - cx), Math.abs(x1 - cx));
|
|
276080
|
+
const dxHi = Math.max(Math.abs(x0 - cx), Math.abs(x1 - cx));
|
|
276081
|
+
if (Math.hypot(dxLo, dyLo) >= radius) {
|
|
276082
|
+
line.push(0);
|
|
276083
|
+
continue;
|
|
276084
|
+
}
|
|
276085
|
+
if (Math.hypot(dxHi, dyHi) <= radius) {
|
|
276086
|
+
line.push(1);
|
|
276087
|
+
continue;
|
|
276088
|
+
}
|
|
276089
|
+
let hits = 0;
|
|
276090
|
+
for (let j = 0;j < SAMPLES; j++) {
|
|
276091
|
+
const dy = y0 + (j + 0.5) * step * pixelH - cy;
|
|
276092
|
+
for (let i = 0;i < SAMPLES; i++) {
|
|
276093
|
+
const dx = x0 + (i + 0.5) * step * aspect - cx;
|
|
276094
|
+
if (Math.hypot(dx, dy) <= radius)
|
|
276095
|
+
hits++;
|
|
276096
|
+
}
|
|
276097
|
+
}
|
|
276098
|
+
line.push(hits / (SAMPLES * SAMPLES));
|
|
276099
|
+
}
|
|
276100
|
+
grid.push(line);
|
|
276101
|
+
}
|
|
276102
|
+
return grid;
|
|
276103
|
+
}
|
|
276104
|
+
function carveGap(grid, ry) {
|
|
276105
|
+
const n = grid.length;
|
|
276106
|
+
const thick = Math.max(1, Math.round(GAP_HEIGHT_ROWS * ry));
|
|
276107
|
+
const centre = GAP_ROW >= 0 ? GAP_ROW * ry : n + GAP_ROW * ry;
|
|
276108
|
+
const start = Math.max(0, Math.min(n - thick, centre - thick / 2));
|
|
276109
|
+
for (let i = Math.trunc(start);i < Math.trunc(start + thick); i++) {
|
|
276110
|
+
grid[i].fill(0);
|
|
276111
|
+
}
|
|
276112
|
+
}
|
|
276113
|
+
function logoRows(color, tier = detectTier()) {
|
|
276114
|
+
const { rx, ry, table } = tier === "octant" ? OCTANT : QUAD;
|
|
276115
|
+
const grid = coverageGrid(ROWS * ry, LOGO_COLS * rx, ASPECT / rx, 1 / ry);
|
|
276116
|
+
carveGap(grid, ry);
|
|
276117
|
+
const fg = color ? source_default.hex(color) : (s) => s;
|
|
276118
|
+
const bg = color ? source_default.bgHex(color) : (s) => s;
|
|
276119
|
+
const full = (1 << rx * ry) - 1;
|
|
276120
|
+
const out = [];
|
|
276121
|
+
for (let r = 0;r < ROWS; r++) {
|
|
276122
|
+
let row = "";
|
|
276123
|
+
for (let c = 0;c < LOGO_COLS; c++) {
|
|
276124
|
+
let mask = 0;
|
|
276125
|
+
for (let sr = 0;sr < ry; sr++) {
|
|
276126
|
+
for (let sc = 0;sc < rx; sc++) {
|
|
276127
|
+
if (grid[r * ry + sr][c * rx + sc] >= FILL)
|
|
276128
|
+
mask |= 1 << sr * rx + sc;
|
|
276129
|
+
}
|
|
276130
|
+
}
|
|
276131
|
+
const glyph = table[mask];
|
|
276132
|
+
if (glyph === " ")
|
|
276133
|
+
row += " ";
|
|
276134
|
+
else if (mask === full && color)
|
|
276135
|
+
row += bg(" ");
|
|
276136
|
+
else
|
|
276137
|
+
row += fg(glyph);
|
|
276138
|
+
}
|
|
276139
|
+
out.push(row);
|
|
276140
|
+
}
|
|
276141
|
+
return out;
|
|
276142
|
+
}
|
|
276143
|
+
|
|
275863
276144
|
// src/cli/commands/code/paste.ts
|
|
275864
276145
|
import { PassThrough as PassThrough3 } from "node:stream";
|
|
275865
276146
|
var START = "\x1B[200~";
|
|
@@ -276003,14 +276284,17 @@ function createSessionEngine(options) {
|
|
|
276003
276284
|
});
|
|
276004
276285
|
continue;
|
|
276005
276286
|
}
|
|
276006
|
-
let elapsedMs;
|
|
276007
276287
|
if (event.kind === "tool_end") {
|
|
276008
276288
|
const started = running.get(event.id)?.startedAt;
|
|
276009
|
-
if (started != null)
|
|
276010
|
-
elapsedMs = Date.now() - started;
|
|
276011
276289
|
running.delete(event.id);
|
|
276290
|
+
lastEventAt = Date.now();
|
|
276291
|
+
options.onLine({
|
|
276292
|
+
event,
|
|
276293
|
+
elapsedMs: started != null ? Date.now() - started : undefined
|
|
276294
|
+
});
|
|
276295
|
+
continue;
|
|
276012
276296
|
}
|
|
276013
|
-
const line = eventLine(event
|
|
276297
|
+
const line = eventLine(event);
|
|
276014
276298
|
if (line != null) {
|
|
276015
276299
|
lastEventAt = Date.now();
|
|
276016
276300
|
options.onLine(line);
|
|
@@ -276160,6 +276444,7 @@ function statusText(status, musingSeed) {
|
|
|
276160
276444
|
function SessionView({ engine, footer, subscribe }) {
|
|
276161
276445
|
const { exit } = use_app_default();
|
|
276162
276446
|
const [items, setItems] = import_react23.useState([]);
|
|
276447
|
+
const [verbose, setVerbose] = import_react23.useState(false);
|
|
276163
276448
|
const [input, setInput] = import_react23.useState("");
|
|
276164
276449
|
const [scroll, setScroll] = import_react23.useState(0);
|
|
276165
276450
|
const [, tick] = import_react23.useReducer((x) => x + 1, 0);
|
|
@@ -276168,10 +276453,8 @@ function SessionView({ engine, footer, subscribe }) {
|
|
|
276168
276453
|
const [pickerIndex, setPickerIndex] = import_react23.useState(null);
|
|
276169
276454
|
const maxScrollRef = import_react23.useRef(0);
|
|
276170
276455
|
const meIdRef = import_react23.useRef(null);
|
|
276171
|
-
const emit = (
|
|
276172
|
-
|
|
276173
|
-
import_react23.useEffect(() => subscribe((line) => setItems((h) => [...h, `${line}
|
|
276174
|
-
`])), [subscribe]);
|
|
276456
|
+
const emit = (entry) => setItems((h) => [...h, entry]);
|
|
276457
|
+
import_react23.useEffect(() => subscribe((entry) => setItems((h) => [...h, entry])), [subscribe]);
|
|
276175
276458
|
import_react23.useEffect(() => {
|
|
276176
276459
|
const timer = setInterval(tick, 120);
|
|
276177
276460
|
return () => clearInterval(timer);
|
|
@@ -276239,6 +276522,10 @@ function SessionView({ engine, footer, subscribe }) {
|
|
|
276239
276522
|
exit();
|
|
276240
276523
|
return;
|
|
276241
276524
|
}
|
|
276525
|
+
if (key.ctrl && char === "o") {
|
|
276526
|
+
setVerbose((v) => !v);
|
|
276527
|
+
return;
|
|
276528
|
+
}
|
|
276242
276529
|
if (key.upArrow) {
|
|
276243
276530
|
setScroll((s) => Math.min(s + 3, maxScrollRef.current));
|
|
276244
276531
|
return;
|
|
@@ -276264,14 +276551,15 @@ function SessionView({ engine, footer, subscribe }) {
|
|
|
276264
276551
|
});
|
|
276265
276552
|
const columns = process.stdout.columns || 80;
|
|
276266
276553
|
const rows = process.stdout.rows || 24;
|
|
276267
|
-
const width =
|
|
276554
|
+
const width = columns;
|
|
276268
276555
|
const innerWidth = Math.max(10, width - 4);
|
|
276269
276556
|
const inputRows = Math.max(1, Math.ceil((input.length + 3) / innerWidth));
|
|
276270
276557
|
const pickerOpen = pickerIndex !== null;
|
|
276271
276558
|
const inputBlockHeight = pickerOpen ? MODELS.length + 3 : inputRows + 2;
|
|
276272
276559
|
const widgetHeight = inputBlockHeight + 3 + (footer.length ? 1 : 0);
|
|
276273
276560
|
const viewHeight = Math.max(3, rows - widgetHeight - 1);
|
|
276274
|
-
const lines = items.flatMap((item) => hardWrapAnsi(item,
|
|
276561
|
+
const lines = items.flatMap((item) => hardWrapAnsi(`${renderEntry(item, { verbose, foldHint: "Ctrl+O to expand" })}
|
|
276562
|
+
`, columns));
|
|
276275
276563
|
const maxScroll = Math.max(0, lines.length - viewHeight);
|
|
276276
276564
|
maxScrollRef.current = maxScroll;
|
|
276277
276565
|
const clamped = Math.min(scroll, maxScroll);
|
|
@@ -276354,48 +276642,16 @@ function SessionView({ engine, footer, subscribe }) {
|
|
|
276354
276642
|
/* @__PURE__ */ jsx_dev_runtime.jsxDEV(Text, {
|
|
276355
276643
|
dimColor: true,
|
|
276356
276644
|
wrap: "truncate-end",
|
|
276357
|
-
children: pickerOpen ? " ↑↓ to move · Enter to select · Esc to cancel" : engine.turnRunning() ? " Esc to stop · type to queue · scroll to read · Ctrl+C to exit" : " Enter to send · /model to switch model · Esc for live · Ctrl+C to exit"
|
|
276645
|
+
children: pickerOpen ? " ↑↓ to move · Enter to select · Esc to cancel" : engine.turnRunning() ? " Esc to stop · type to queue · scroll to read · Ctrl+O to expand · Ctrl+C to exit" : " Enter to send · /model to switch model · Esc for live · Ctrl+O to expand · Ctrl+C to exit"
|
|
276358
276646
|
}, undefined, false, undefined, this)
|
|
276359
276647
|
]
|
|
276360
276648
|
}, undefined, true, undefined, this);
|
|
276361
276649
|
}
|
|
276362
|
-
var LOGO_ROWS = 6;
|
|
276363
|
-
var LOGO_GAP_SUBROW = 8;
|
|
276364
|
-
var QUAD = " ▘▝▀▖▌▞▛▗▚▐▜▄▙▟█";
|
|
276365
|
-
function buildLogoRows() {
|
|
276366
|
-
const sy = 2 * LOGO_ROWS;
|
|
276367
|
-
const sx = 2 * sy;
|
|
276368
|
-
const cx = (sx - 1) / 2;
|
|
276369
|
-
const cy = (sy - 1) / 2;
|
|
276370
|
-
const rad = sy / 2 - 0.5;
|
|
276371
|
-
const on = (px, py) => {
|
|
276372
|
-
if (py === LOGO_GAP_SUBROW)
|
|
276373
|
-
return false;
|
|
276374
|
-
const dx = (px - cx) * 0.5;
|
|
276375
|
-
const dy = py - cy;
|
|
276376
|
-
return dx * dx + dy * dy <= rad * rad;
|
|
276377
|
-
};
|
|
276378
|
-
const rows = [];
|
|
276379
|
-
for (let ty = 0;ty < sy; ty += 2) {
|
|
276380
|
-
let row = "";
|
|
276381
|
-
for (let tx = 0;tx < sx; tx += 2) {
|
|
276382
|
-
const bits = (on(tx, ty) ? 1 : 0) | (on(tx + 1, ty) ? 2 : 0) | (on(tx, ty + 1) ? 4 : 0) | (on(tx + 1, ty + 1) ? 8 : 0);
|
|
276383
|
-
row += QUAD[bits];
|
|
276384
|
-
}
|
|
276385
|
-
rows.push(row.trim());
|
|
276386
|
-
}
|
|
276387
|
-
return rows.map((row) => row.trim());
|
|
276388
|
-
}
|
|
276389
276650
|
function renderHeader(who, mode) {
|
|
276390
276651
|
const orange = source_default.hex(BRAND_ORANGE);
|
|
276391
276652
|
const cwd = process.cwd().replace(process.env.HOME ?? "", "~");
|
|
276392
|
-
const logo =
|
|
276393
|
-
const logoW =
|
|
276394
|
-
const center = (s) => {
|
|
276395
|
-
const total = Math.max(0, logoW - s.length);
|
|
276396
|
-
const left = Math.floor(total / 2);
|
|
276397
|
-
return " ".repeat(left) + s + " ".repeat(total - left);
|
|
276398
|
-
};
|
|
276653
|
+
const logo = logoRows(BRAND_ORANGE);
|
|
276654
|
+
const logoW = LOGO_COLS;
|
|
276399
276655
|
const text = [
|
|
276400
276656
|
`${orange.bold("Base44 Code")} ${source_default.dim(`v${package_default.version}`)}`,
|
|
276401
276657
|
source_default.bold(who ? `Welcome back, ${who}!` : "Welcome!"),
|
|
@@ -276407,7 +276663,7 @@ function renderHeader(who, mode) {
|
|
|
276407
276663
|
const textTop = Math.max(0, Math.floor((logo.length - text.length) / 2));
|
|
276408
276664
|
const out = [];
|
|
276409
276665
|
for (let i = 0;i < height; i++) {
|
|
276410
|
-
const left = i < logo.length ?
|
|
276666
|
+
const left = i < logo.length ? logo[i] : " ".repeat(logoW);
|
|
276411
276667
|
const right = text[i - textTop] ?? "";
|
|
276412
276668
|
out.push(` ${left} ${right}`.trimEnd());
|
|
276413
276669
|
}
|
|
@@ -276598,21 +276854,21 @@ async function runGenesisSession(options) {
|
|
|
276598
276854
|
|
|
276599
276855
|
// src/cli/commands/code/index.ts
|
|
276600
276856
|
var BRAND_ORANGE2 = "#E86B3C";
|
|
276601
|
-
async function bootstrapApp(prompt, footer, emit, onCreated, importRepo) {
|
|
276857
|
+
async function bootstrapApp(prompt, footer, emit, onCreated, importRepo, path) {
|
|
276602
276858
|
let app;
|
|
276603
276859
|
try {
|
|
276604
|
-
app = await createAndLinkApp({ prompt, importRepo });
|
|
276860
|
+
app = await createAndLinkApp({ prompt, importRepo, path });
|
|
276605
276861
|
} catch (error) {
|
|
276606
276862
|
for (const line of await githubReauthLines(error) ?? [])
|
|
276607
276863
|
emit(line);
|
|
276608
276864
|
throw error;
|
|
276609
276865
|
}
|
|
276610
276866
|
onCreated(app);
|
|
276611
|
-
footer.push(source_default.dim(`dir
|
|
276867
|
+
footer.push(source_default.dim(`dir ${app.here ? "./" : `./${app.dirName}`}`));
|
|
276612
276868
|
if (app.repoUrl)
|
|
276613
276869
|
footer.push(terminalLink("repo", app.repoUrl));
|
|
276614
276870
|
footer.push(terminalLink("editor", app.editorUrl));
|
|
276615
|
-
emit(source_default.dim(`linked ./${app.dirName} (cd ${app.dirName} after the session)`));
|
|
276871
|
+
emit(source_default.dim(app.here ? "linked ./ (this directory)" : `linked ./${app.dirName} (cd ${app.dirName} after the session)`));
|
|
276616
276872
|
const branchId = await resolveActiveBranchId().catch(() => {
|
|
276617
276873
|
return;
|
|
276618
276874
|
});
|
|
@@ -276636,46 +276892,52 @@ async function bootstrapApp(prompt, footer, emit, onCreated, importRepo) {
|
|
|
276636
276892
|
}
|
|
276637
276893
|
};
|
|
276638
276894
|
}
|
|
276639
|
-
async function codeAction({ log }, options) {
|
|
276895
|
+
async function codeAction({ log }, options, appId) {
|
|
276896
|
+
const orange = source_default.hex(BRAND_ORANGE2);
|
|
276897
|
+
const chip = (label) => source_default.dim(`${orange("●")} ${label}`);
|
|
276640
276898
|
if (process.stdout.isTTY !== true) {
|
|
276641
276899
|
throw new InvalidInputError("base44 code is an interactive session and needs a terminal.");
|
|
276642
276900
|
}
|
|
276643
276901
|
let linked = false;
|
|
276644
276902
|
try {
|
|
276645
|
-
await initAppContext();
|
|
276903
|
+
await initAppContext(appId ? { appId } : {});
|
|
276646
276904
|
linked = true;
|
|
276647
276905
|
} catch {}
|
|
276648
276906
|
if (linked) {
|
|
276649
|
-
if (options.import) {
|
|
276650
|
-
throw new InvalidInputError("--import
|
|
276907
|
+
if (options.import || options.path) {
|
|
276908
|
+
throw new InvalidInputError("--import and --path create a new app; run them outside a linked project, without --app-id.");
|
|
276651
276909
|
}
|
|
276910
|
+
const { id, projectRoot } = getAppContext();
|
|
276911
|
+
const state = await assertBuilderApp(id);
|
|
276652
276912
|
const branchId = await resolveActiveBranchId().catch(() => {
|
|
276653
276913
|
return;
|
|
276654
276914
|
});
|
|
276655
276915
|
await runInteractiveSession({
|
|
276656
276916
|
branchId,
|
|
276657
|
-
footer: [],
|
|
276917
|
+
footer: [chip(appTypeChip(state))],
|
|
276658
276918
|
primeFirstPoll: true,
|
|
276659
276919
|
idleHint: "what should the agent do next?"
|
|
276660
276920
|
});
|
|
276661
|
-
|
|
276921
|
+
if (projectRoot) {
|
|
276922
|
+
log.message(source_default.dim(`app dir ${projectRoot}`));
|
|
276923
|
+
return {
|
|
276924
|
+
outroMessage: "Session closed. Run `base44 code` here to resume."
|
|
276925
|
+
};
|
|
276926
|
+
}
|
|
276662
276927
|
return {
|
|
276663
|
-
outroMessage:
|
|
276928
|
+
outroMessage: `Session closed. Resume with \`base44 code --app-id ${id}\`.`
|
|
276664
276929
|
};
|
|
276665
276930
|
}
|
|
276666
276931
|
let created;
|
|
276667
|
-
const
|
|
276668
|
-
const footer = [
|
|
276669
|
-
source_default.dim(`${orange("●")} ${options.import ? "import" : "builder"}`)
|
|
276670
|
-
];
|
|
276932
|
+
const footer = [chip(options.import ? repoLabel(options.import) : "web app")];
|
|
276671
276933
|
await runGenesisSession({
|
|
276672
|
-
idleHint: options.import ? "describe what to build over the
|
|
276934
|
+
idleHint: options.import ? "describe what to build over the repository" : "describe the app you want to build · have one already? base44 code --app-id <id>, or base44 link",
|
|
276673
276935
|
creatingLabel: options.import ? "importing the repository" : "creating your app",
|
|
276674
|
-
modeLabel: options.import ? `
|
|
276936
|
+
modeLabel: options.import ? `Repository — ${repoLabel(options.import)}` : "Web app — Base44 template + builder agent",
|
|
276675
276937
|
footer,
|
|
276676
276938
|
createApp: (prompt, emit) => bootstrapApp(prompt, footer, emit, (app) => {
|
|
276677
276939
|
created = app;
|
|
276678
|
-
}, options.import)
|
|
276940
|
+
}, options.import, options.path)
|
|
276679
276941
|
});
|
|
276680
276942
|
if (!created) {
|
|
276681
276943
|
return { outroMessage: "Session closed. No app was created." };
|
|
@@ -276687,7 +276949,7 @@ async function codeAction({ log }, options) {
|
|
|
276687
276949
|
}
|
|
276688
276950
|
function getCodeCommand() {
|
|
276689
276951
|
const command = new Base44Command("code", { requireAppContext: false });
|
|
276690
|
-
command.description("Open Base44 Code
|
|
276952
|
+
command.description("Open Base44 Code, an interactive builder session. In a linked directory (or with --app-id <id>) it opens that app; anywhere else your first prompt creates one (--import <repo> to build over your own repository). Attach a directory to an existing app with base44 link.").option("--import <repo>", "Build over an existing GitHub repository instead of the Base44 template").option("--path <dir>", "Directory to link the new app to (default: the current directory when empty, else ./<name>)").action((ctx, options) => codeAction(ctx, options, command.optsWithGlobals().appId));
|
|
276691
276953
|
return command;
|
|
276692
276954
|
}
|
|
276693
276955
|
|
|
@@ -277485,10 +277747,10 @@ function getConnectorsListAvailableCommand() {
|
|
|
277485
277747
|
}
|
|
277486
277748
|
|
|
277487
277749
|
// src/cli/commands/connectors/pull.ts
|
|
277488
|
-
import { dirname as dirname19, join as join27, resolve as
|
|
277750
|
+
import { dirname as dirname19, join as join27, resolve as resolve9 } from "node:path";
|
|
277489
277751
|
async function resolveConnectorsDir(options) {
|
|
277490
277752
|
if (!getAppContext().projectRoot) {
|
|
277491
|
-
return
|
|
277753
|
+
return resolve9(options.dir ?? "connectors");
|
|
277492
277754
|
}
|
|
277493
277755
|
const { project } = await readProjectConfig();
|
|
277494
277756
|
return join27(dirname19(project.configPath), project.connectorsDir);
|
|
@@ -277532,10 +277794,10 @@ function getConnectorsPullCommand() {
|
|
|
277532
277794
|
}
|
|
277533
277795
|
|
|
277534
277796
|
// src/cli/commands/connectors/push.ts
|
|
277535
|
-
import { resolve as
|
|
277797
|
+
import { resolve as resolve10 } from "node:path";
|
|
277536
277798
|
async function readConnectorsToPush(options) {
|
|
277537
277799
|
if (!getAppContext().projectRoot) {
|
|
277538
|
-
return readAllConnectors(
|
|
277800
|
+
return readAllConnectors(resolve10(options.dir ?? "connectors"));
|
|
277539
277801
|
}
|
|
277540
277802
|
const { connectors } = await readProjectConfig();
|
|
277541
277803
|
return connectors;
|
|
@@ -278004,7 +278266,7 @@ function getBuildCommand() {
|
|
|
278004
278266
|
}
|
|
278005
278267
|
|
|
278006
278268
|
// src/cli/commands/project/create.ts
|
|
278007
|
-
import { basename as
|
|
278269
|
+
import { basename as basename7, resolve as resolve11 } from "node:path";
|
|
278008
278270
|
var import_kebabCase2 = __toESM(require_kebabCase(), 1);
|
|
278009
278271
|
|
|
278010
278272
|
// src/cli/commands/project/scaffold-shared.ts
|
|
@@ -278169,8 +278431,8 @@ async function createInteractive(options, ctx) {
|
|
|
278169
278431
|
name: () => {
|
|
278170
278432
|
return options.name ? Promise.resolve(options.name) : Ze({
|
|
278171
278433
|
message: "What is the name of your project?",
|
|
278172
|
-
placeholder:
|
|
278173
|
-
initialValue:
|
|
278434
|
+
placeholder: basename7(process.cwd()),
|
|
278435
|
+
initialValue: basename7(process.cwd()),
|
|
278174
278436
|
validate: (value) => {
|
|
278175
278437
|
if (!value || value.trim().length === 0) {
|
|
278176
278438
|
return "Every project deserves a name";
|
|
@@ -278200,7 +278462,7 @@ async function createInteractive(options, ctx) {
|
|
|
278200
278462
|
}, ctx);
|
|
278201
278463
|
}
|
|
278202
278464
|
async function createNonInteractive(options, ctx) {
|
|
278203
|
-
ctx.log.info(`Creating a new project at ${
|
|
278465
|
+
ctx.log.info(`Creating a new project at ${resolve11(options.path)}`);
|
|
278204
278466
|
const template = await getTemplateById(options.template ?? DEFAULT_TEMPLATE_ID);
|
|
278205
278467
|
return await executeCreate({
|
|
278206
278468
|
template,
|
|
@@ -278224,7 +278486,7 @@ async function executeCreate({
|
|
|
278224
278486
|
}, ctx) {
|
|
278225
278487
|
const { log, runTask } = ctx;
|
|
278226
278488
|
const name = rawName.trim();
|
|
278227
|
-
const resolvedPath =
|
|
278489
|
+
const resolvedPath = resolve11(projectPath);
|
|
278228
278490
|
const organizationId = await resolveWorkspaceId(ctx, flagWorkspaceId, isInteractive);
|
|
278229
278491
|
const { projectId } = await runTask("Setting up your project...", async () => {
|
|
278230
278492
|
return await createProjectFiles({
|
|
@@ -278865,7 +279127,7 @@ function getLogsCommand() {
|
|
|
278865
279127
|
}
|
|
278866
279128
|
|
|
278867
279129
|
// src/cli/commands/project/scaffold.ts
|
|
278868
|
-
import { basename as
|
|
279130
|
+
import { basename as basename8, resolve as resolve12 } from "node:path";
|
|
278869
279131
|
function resolveAppId(options) {
|
|
278870
279132
|
const appId = options.appId;
|
|
278871
279133
|
if (!appId) {
|
|
@@ -278881,8 +279143,8 @@ function resolveAppId(options) {
|
|
|
278881
279143
|
async function scaffoldAction(ctx, name, options, command) {
|
|
278882
279144
|
const { log, runTask } = ctx;
|
|
278883
279145
|
const appId = resolveAppId(command.optsWithGlobals());
|
|
278884
|
-
const resolvedPath =
|
|
278885
|
-
const projectName = (name ??
|
|
279146
|
+
const resolvedPath = resolve12("./");
|
|
279147
|
+
const projectName = (name ?? basename8(resolvedPath)).trim();
|
|
278886
279148
|
const template = await getTemplateById("backend-only");
|
|
278887
279149
|
log.info(`Scaffolding project at ${resolvedPath}`);
|
|
278888
279150
|
const { projectId } = await runTask("Setting up your project...", async () => {
|
|
@@ -279199,6 +279461,21 @@ function getSandboxListDirectoryCommand() {
|
|
|
279199
279461
|
return new Base44Command("ls", { supportsBranch: true }).description("List directory entries in an app's remote sandbox").argument("[path]", "Directory relative to the app root (default: app root)").option("--recursive", "List nested entries").option("--max-depth <n>", "Max depth when recursive (1-10, default 3)").option("--include-hidden", "Include dotfiles").action(listDirectoryAction);
|
|
279200
279462
|
}
|
|
279201
279463
|
|
|
279464
|
+
// src/cli/commands/sandbox/preview.ts
|
|
279465
|
+
async function previewAction(ctx) {
|
|
279466
|
+
const url = await ctx.runTask("Resolving preview URL (boots the sandbox if needed)", () => getPreviewUrl());
|
|
279467
|
+
if (ctx.jsonMode)
|
|
279468
|
+
return { stdout: `${JSON.stringify({ preview_url: url })}
|
|
279469
|
+
` };
|
|
279470
|
+
ctx.log.message(url);
|
|
279471
|
+
return { outroMessage: "Preview is live." };
|
|
279472
|
+
}
|
|
279473
|
+
function getSandboxPreviewCommand() {
|
|
279474
|
+
const command = new Base44Command("preview");
|
|
279475
|
+
command.description("Print the app's live preview URL").action(previewAction);
|
|
279476
|
+
return command;
|
|
279477
|
+
}
|
|
279478
|
+
|
|
279202
279479
|
// src/cli/commands/sandbox/read-file.ts
|
|
279203
279480
|
async function readFileAction({ runTask, branchId }, paths, options) {
|
|
279204
279481
|
const { id: appId } = getAppContext();
|
|
@@ -279252,7 +279529,7 @@ Examples:
|
|
|
279252
279529
|
|
|
279253
279530
|
// src/cli/commands/sandbox/index.ts
|
|
279254
279531
|
function getSandboxCommand() {
|
|
279255
|
-
return new Command2("sandbox").description("Develop an app remotely via its server-side sandbox").addCommand(getSandboxListDirectoryCommand()).addCommand(getSandboxReadFileCommand()).addCommand(getSandboxWriteFileCommand()).addCommand(getSandboxEditFileCommand()).addCommand(getSandboxGrepCommand()).addCommand(getSandboxRunCommandCommand()).addCommand(getSandboxCheckpointCommand());
|
|
279532
|
+
return new Command2("sandbox").description("Develop an app remotely via its server-side sandbox").addCommand(getSandboxListDirectoryCommand()).addCommand(getSandboxReadFileCommand()).addCommand(getSandboxWriteFileCommand()).addCommand(getSandboxEditFileCommand()).addCommand(getSandboxGrepCommand()).addCommand(getSandboxRunCommandCommand()).addCommand(getSandboxCheckpointCommand()).addCommand(getSandboxPreviewCommand());
|
|
279256
279533
|
}
|
|
279257
279534
|
|
|
279258
279535
|
// src/cli/commands/secrets/delete.ts
|
|
@@ -279298,7 +279575,7 @@ function getSecretsListCommand() {
|
|
|
279298
279575
|
}
|
|
279299
279576
|
|
|
279300
279577
|
// src/cli/commands/secrets/set.ts
|
|
279301
|
-
import { resolve as
|
|
279578
|
+
import { resolve as resolve13 } from "node:path";
|
|
279302
279579
|
function parseEntries(entries) {
|
|
279303
279580
|
const secrets = {};
|
|
279304
279581
|
for (const entry of entries) {
|
|
@@ -279329,7 +279606,7 @@ async function setSecretsAction({ log, runTask }, entries, options) {
|
|
|
279329
279606
|
validateInput(entries, options);
|
|
279330
279607
|
let secrets;
|
|
279331
279608
|
if (options.envFile) {
|
|
279332
|
-
secrets = await parseEnvFile(
|
|
279609
|
+
secrets = await parseEnvFile(resolve13(options.envFile));
|
|
279333
279610
|
if (Object.keys(secrets).length === 0) {
|
|
279334
279611
|
throw new InvalidInputError("The env file contains no valid KEY=VALUE entries.");
|
|
279335
279612
|
}
|
|
@@ -279358,7 +279635,7 @@ function getSecretsCommand() {
|
|
|
279358
279635
|
}
|
|
279359
279636
|
|
|
279360
279637
|
// src/cli/commands/site/deploy.ts
|
|
279361
|
-
import { resolve as
|
|
279638
|
+
import { resolve as resolve14 } from "node:path";
|
|
279362
279639
|
async function deployAction2(ctx, options) {
|
|
279363
279640
|
const { isNonInteractive } = ctx;
|
|
279364
279641
|
if (isNonInteractive && !options.yes) {
|
|
@@ -279436,7 +279713,7 @@ async function deployTarball({ runTask }, project) {
|
|
|
279436
279713
|
}
|
|
279437
279714
|
function siteOutputDir(project) {
|
|
279438
279715
|
const outputDirectory = project.site?.outputDirectory;
|
|
279439
|
-
return outputDirectory ?
|
|
279716
|
+
return outputDirectory ? resolve14(project.root, outputDirectory) : null;
|
|
279440
279717
|
}
|
|
279441
279718
|
function getSiteDeployCommand() {
|
|
279442
279719
|
const command = new Base44Command("deploy").description("Deploy built site files to Base44 hosting").option("-y, --yes", "Skip confirmation prompt").option("--build", "Build the site before deploying (skips the prompt)").option("--no-build", "Deploy without building (skips the prompt)");
|
|
@@ -281938,7 +282215,7 @@ function createCustomIntegrationRoutes(remoteProxy, logger) {
|
|
|
281938
282215
|
|
|
281939
282216
|
// src/cli/dev/dev-server/watcher.ts
|
|
281940
282217
|
import { EventEmitter as EventEmitter6 } from "node:events";
|
|
281941
|
-
import { relative as
|
|
282218
|
+
import { relative as relative10 } from "node:path";
|
|
281942
282219
|
|
|
281943
282220
|
// ../../node_modules/chokidar/index.js
|
|
281944
282221
|
import { EventEmitter as EventEmitter5 } from "node:events";
|
|
@@ -283623,7 +283900,7 @@ class WatchBase44 extends EventEmitter6 {
|
|
|
283623
283900
|
ignoreInitial: true
|
|
283624
283901
|
});
|
|
283625
283902
|
watcher.on("all", import_debounce4.default(async (_event, path) => {
|
|
283626
|
-
this.emit("change", name,
|
|
283903
|
+
this.emit("change", name, relative10(targetPath, path));
|
|
283627
283904
|
}, WATCH_DEBOUNCE_MS));
|
|
283628
283905
|
watcher.on("error", (err) => {
|
|
283629
283906
|
this.logger.error(`Watch handler failed for ${targetPath}`, err);
|
|
@@ -284133,7 +284410,7 @@ Examples:
|
|
|
284133
284410
|
}
|
|
284134
284411
|
|
|
284135
284412
|
// src/cli/commands/project/eject.ts
|
|
284136
|
-
import { resolve as
|
|
284413
|
+
import { resolve as resolve18 } from "node:path";
|
|
284137
284414
|
var import_kebabCase3 = __toESM(require_kebabCase(), 1);
|
|
284138
284415
|
async function eject(ctx, options, command) {
|
|
284139
284416
|
const { log, runTask, isNonInteractive } = ctx;
|
|
@@ -284197,7 +284474,7 @@ async function eject(ctx, options, command) {
|
|
|
284197
284474
|
Ne("Operation cancelled.");
|
|
284198
284475
|
throw new CLIExitError(0);
|
|
284199
284476
|
}
|
|
284200
|
-
const resolvedPath =
|
|
284477
|
+
const resolvedPath = resolve18(selectedPath);
|
|
284201
284478
|
await runTask("Downloading your project's code...", async (updateMessage) => {
|
|
284202
284479
|
await createProjectFilesForExistingProject({
|
|
284203
284480
|
projectId,
|
|
@@ -284279,7 +284556,7 @@ function createProgram(context) {
|
|
|
284279
284556
|
program.addCommand(getSecretsCommand());
|
|
284280
284557
|
program.addCommand(getSandboxCommand());
|
|
284281
284558
|
program.addCommand(getBranchesCommand());
|
|
284282
|
-
program.addCommand(
|
|
284559
|
+
program.addCommand(getBuilderCommand());
|
|
284283
284560
|
program.addCommand(getCodeCommand());
|
|
284284
284561
|
program.addCommand(getAuthCommand());
|
|
284285
284562
|
program.addCommand(getSiteCommand());
|
|
@@ -288334,4 +288611,4 @@ export {
|
|
|
288334
288611
|
runCLI
|
|
288335
288612
|
};
|
|
288336
288613
|
|
|
288337
|
-
//# debugId=
|
|
288614
|
+
//# debugId=0D34292BC79AD42A64756E2164756E21
|