@pixelbyte-software/pixcode 1.51.2 → 1.51.4

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.
Files changed (331) hide show
  1. package/CODE_OF_CONDUCT.md +41 -41
  2. package/CONTRIBUTING.md +155 -155
  3. package/LICENSE +718 -718
  4. package/README.de.md +169 -169
  5. package/README.ja.md +167 -167
  6. package/README.ko.md +167 -167
  7. package/README.md +419 -419
  8. package/README.ru.md +169 -169
  9. package/README.tr.md +298 -298
  10. package/README.zh-CN.md +167 -167
  11. package/SECURITY.md +46 -46
  12. package/dist/api-automation.html +110 -110
  13. package/dist/api-docs.html +548 -548
  14. package/dist/assets/index-B9N-gfOQ.css +32 -0
  15. package/dist/assets/{index-EN9ngyxf.js → index-HfGHXhD6.js} +175 -175
  16. package/dist/clear-cache.html +85 -85
  17. package/dist/convert-icons.md +52 -52
  18. package/dist/docs.html +308 -308
  19. package/dist/favicon.svg +8 -8
  20. package/dist/features.html +133 -133
  21. package/dist/generate-icons.js +48 -48
  22. package/dist/humans.txt +15 -15
  23. package/dist/icons/codex-white.svg +3 -3
  24. package/dist/icons/codex.svg +3 -3
  25. package/dist/icons/cursor-white.svg +11 -11
  26. package/dist/icons/icon-128x128.svg +9 -9
  27. package/dist/icons/icon-144x144.svg +9 -9
  28. package/dist/icons/icon-152x152.svg +9 -9
  29. package/dist/icons/icon-192x192.svg +9 -9
  30. package/dist/icons/icon-384x384.svg +9 -9
  31. package/dist/icons/icon-512x512.svg +9 -9
  32. package/dist/icons/icon-72x72.svg +9 -9
  33. package/dist/icons/icon-96x96.svg +9 -9
  34. package/dist/icons/icon-template.svg +9 -9
  35. package/dist/icons/qwen-logo.svg +14 -14
  36. package/dist/index.html +59 -59
  37. package/dist/landing.html +268 -268
  38. package/dist/llms-full.txt +119 -119
  39. package/dist/llms.txt +53 -53
  40. package/dist/logo.svg +12 -12
  41. package/dist/manifest.json +60 -60
  42. package/dist/openapi.yaml +1696 -1696
  43. package/dist/orchestration.html +125 -125
  44. package/dist/robots.txt +4 -4
  45. package/dist/site.css +692 -692
  46. package/dist/sitemap.xml +51 -51
  47. package/dist/sw.js +132 -132
  48. package/dist-server/server/cli.js +96 -96
  49. package/dist-server/server/daemon/manager.js +33 -33
  50. package/dist-server/server/daemon-manager.js +64 -64
  51. package/dist-server/server/database/db.js +14 -2
  52. package/dist-server/server/database/db.js.map +1 -1
  53. package/dist-server/server/index.js +191 -31
  54. package/dist-server/server/index.js.map +1 -1
  55. package/dist-server/server/middleware/auth.js +16 -5
  56. package/dist-server/server/middleware/auth.js.map +1 -1
  57. package/dist-server/server/modules/orchestration/a2a/adapters/json-event.adapter.js +84 -0
  58. package/dist-server/server/modules/orchestration/a2a/adapters/json-event.adapter.js.map +1 -0
  59. package/dist-server/server/modules/orchestration/a2a/adapters/json-event.adapter.test.js +43 -0
  60. package/dist-server/server/modules/orchestration/a2a/adapters/json-event.adapter.test.js.map +1 -0
  61. package/dist-server/server/modules/orchestration/hermes/hermes.routes.js +55 -1
  62. package/dist-server/server/modules/orchestration/hermes/hermes.routes.js.map +1 -1
  63. package/dist-server/server/modules/orchestration/index.js +1 -0
  64. package/dist-server/server/modules/orchestration/index.js.map +1 -1
  65. package/dist-server/server/routes/auth.js +12 -5
  66. package/dist-server/server/routes/auth.js.map +1 -1
  67. package/dist-server/server/routes/commands.js +25 -25
  68. package/dist-server/server/routes/git.js +29 -17
  69. package/dist-server/server/routes/git.js.map +1 -1
  70. package/dist-server/server/routes/live-view.js +46 -46
  71. package/dist-server/server/routes/platformization.js +7 -6
  72. package/dist-server/server/routes/platformization.js.map +1 -1
  73. package/dist-server/server/services/hermes-gateway.js +310 -0
  74. package/dist-server/server/services/hermes-gateway.js.map +1 -1
  75. package/dist-server/server/services/platformization.js +58 -2
  76. package/dist-server/server/services/platformization.js.map +1 -1
  77. package/dist-server/server/services/public-api-manifest.js +59 -51
  78. package/dist-server/server/services/public-api-manifest.js.map +1 -1
  79. package/package.json +222 -222
  80. package/scripts/fix-node-pty.js +67 -67
  81. package/scripts/github/create-v1.38-issues.mjs +351 -351
  82. package/scripts/github/create-vscode-workbench-issues.mjs +121 -121
  83. package/scripts/hermes/configure-pixcode-mcp.mjs +165 -163
  84. package/scripts/hermes/pixcode-mcp-server.mjs +1009 -958
  85. package/scripts/smoke/changes-panel-layout.mjs +48 -48
  86. package/scripts/smoke/chat-composer-fixed-layout.mjs +55 -55
  87. package/scripts/smoke/chat-message-timeline-order.mjs +41 -41
  88. package/scripts/smoke/chat-realtime-hydration.mjs +44 -44
  89. package/scripts/smoke/chat-session-provider-pools.mjs +35 -35
  90. package/scripts/smoke/chat-session-state.mjs +19 -19
  91. package/scripts/smoke/code-editor-theme.mjs +55 -55
  92. package/scripts/smoke/code-editor-vscode-engine.mjs +91 -91
  93. package/scripts/smoke/command-center-agent-writes.mjs +79 -79
  94. package/scripts/smoke/command-center-non-git.mjs +46 -46
  95. package/scripts/smoke/context-packet.mjs +43 -43
  96. package/scripts/smoke/control-room-ux-redesign.mjs +91 -91
  97. package/scripts/smoke/daemon-entrypoint.mjs +20 -20
  98. package/scripts/smoke/default-landing-routing.mjs +33 -33
  99. package/scripts/smoke/desktop-native-notifications.mjs +30 -30
  100. package/scripts/smoke/desktop-tray-icon.mjs +33 -33
  101. package/scripts/smoke/discord-release-workflow.mjs +24 -24
  102. package/scripts/smoke/git-install-update.mjs +255 -255
  103. package/scripts/smoke/handoff-artifact-protocol.mjs +50 -50
  104. package/scripts/smoke/hermes-api-install.mjs +56 -56
  105. package/scripts/smoke/hermes-gateway-persistence.mjs +104 -104
  106. package/scripts/smoke/hermes-mcp-pixcode-roundtrip.mjs +426 -367
  107. package/scripts/smoke/hermes-rest-chat-api.mjs +162 -162
  108. package/scripts/smoke/hermes-rest-chat-live.mjs +45 -45
  109. package/scripts/smoke/hermes-rest-codex-launch.mjs +209 -209
  110. package/scripts/smoke/hermes-rest-gateway.mjs +79 -70
  111. package/scripts/smoke/hermes-rest-live.mjs +42 -42
  112. package/scripts/smoke/hermes-roundtrip.mjs +167 -167
  113. package/scripts/smoke/hermes-settings-commands.mjs +349 -346
  114. package/scripts/smoke/hermes-smoke-launcher-guard.mjs +34 -34
  115. package/scripts/smoke/live-view-diagnostics.mjs +53 -53
  116. package/scripts/smoke/live-view-environment.mjs +92 -92
  117. package/scripts/smoke/live-view-integration.mjs +450 -450
  118. package/scripts/smoke/mac-desktop-runtime.mjs +37 -37
  119. package/scripts/smoke/mobile-tunnel-guidance.mjs +29 -29
  120. package/scripts/smoke/model-registry.mjs +36 -36
  121. package/scripts/smoke/multi-project-ui.mjs +45 -45
  122. package/scripts/smoke/multi-worker-slots.mjs +42 -42
  123. package/scripts/smoke/notification-center.mjs +87 -87
  124. package/scripts/smoke/notification-inapp-preference.mjs +23 -23
  125. package/scripts/smoke/notification-taxonomy.mjs +58 -58
  126. package/scripts/smoke/orchestration-api.mjs +172 -172
  127. package/scripts/smoke/orchestration-execution-dashboard.mjs +33 -33
  128. package/scripts/smoke/orchestration-live-run.mjs +176 -176
  129. package/scripts/smoke/orchestration-mobile-scroll.mjs +29 -29
  130. package/scripts/smoke/orchestration-model-sync.mjs +30 -30
  131. package/scripts/smoke/orchestration-permission-fallback.mjs +34 -34
  132. package/scripts/smoke/orchestration-runtime-guards.mjs +48 -48
  133. package/scripts/smoke/orchestration-user-facing-output.mjs +25 -25
  134. package/scripts/smoke/permission-policy.mjs +50 -50
  135. package/scripts/smoke/pixcode-workbench-1-48.mjs +167 -167
  136. package/scripts/smoke/provider-models-opencode-live.mjs +66 -66
  137. package/scripts/smoke/provider-rest-api.mjs +124 -124
  138. package/scripts/smoke/provider-selection-status.mjs +52 -52
  139. package/scripts/smoke/run-state-refresh.mjs +52 -52
  140. package/scripts/smoke/runtime-manager.mjs +99 -99
  141. package/scripts/smoke/shell-manual-disconnect.mjs +30 -30
  142. package/scripts/smoke/side-panel-editor-layout.mjs +34 -34
  143. package/scripts/smoke/static-root-routing.mjs +21 -21
  144. package/scripts/smoke/strict-handoff-compact.mjs +60 -60
  145. package/scripts/smoke/taskmaster-config.mjs +24 -24
  146. package/scripts/smoke/taskmaster-execution-telegram.mjs +3 -3
  147. package/scripts/smoke/taskmaster-onboarding.mjs +3 -3
  148. package/scripts/smoke/taskmaster-run-graph.mjs +3 -3
  149. package/scripts/smoke/telegram-control.mjs +242 -242
  150. package/scripts/smoke/tunnel-persistence.mjs +56 -56
  151. package/scripts/smoke/update-issue-progress.mjs +69 -69
  152. package/scripts/smoke/update-ux.mjs +55 -55
  153. package/scripts/smoke/v138-completion.mjs +132 -132
  154. package/scripts/smoke/v138-desktop-release-hardening.mjs +69 -69
  155. package/scripts/smoke/v138-diagnostics.mjs +63 -63
  156. package/scripts/smoke/v138-issue-planner.mjs +33 -33
  157. package/scripts/smoke/v143-remote-control.mjs +76 -76
  158. package/scripts/smoke/v144-production-loop.mjs +47 -47
  159. package/scripts/smoke/v145-platformization.mjs +46 -46
  160. package/scripts/smoke/v146-control-room-ui.mjs +150 -150
  161. package/scripts/smoke/version-modal-autoshow.mjs +29 -29
  162. package/scripts/smoke/vscode-workbench-layout.mjs +63 -63
  163. package/scripts/smoke/vscode-workbench-polish.mjs +461 -436
  164. package/scripts/smoke/workflow-fallback-replay.mjs +56 -56
  165. package/scripts/smoke/workflow-templates.mjs +43 -43
  166. package/scripts/smoke/workflow-trace-timeline.mjs +46 -46
  167. package/scripts/update-git-install.mjs +293 -293
  168. package/server/claude-sdk.js +920 -920
  169. package/server/cli.js +1039 -1039
  170. package/server/constants/config.js +4 -4
  171. package/server/cursor-cli.js +344 -344
  172. package/server/daemon/manager.js +563 -563
  173. package/server/daemon-manager.js +964 -964
  174. package/server/database/db.js +908 -895
  175. package/server/database/json-store.js +197 -197
  176. package/server/gemini-cli.js +550 -550
  177. package/server/gemini-response-handler.js +79 -79
  178. package/server/index.js +201 -30
  179. package/server/load-env.js +35 -35
  180. package/server/middleware/auth.js +171 -156
  181. package/server/modules/orchestration/a2a/adapter-registry.ts +108 -108
  182. package/server/modules/orchestration/a2a/adapters/abstract-a2a.adapter.ts +63 -63
  183. package/server/modules/orchestration/a2a/adapters/claude-code.adapter.ts +286 -286
  184. package/server/modules/orchestration/a2a/adapters/codex.adapter.ts +244 -244
  185. package/server/modules/orchestration/a2a/adapters/cursor.adapter.ts +249 -249
  186. package/server/modules/orchestration/a2a/adapters/gemini.adapter.ts +248 -248
  187. package/server/modules/orchestration/a2a/adapters/json-event.adapter.test.ts +60 -0
  188. package/server/modules/orchestration/a2a/adapters/json-event.adapter.ts +101 -0
  189. package/server/modules/orchestration/a2a/adapters/opencode.adapter.ts +248 -248
  190. package/server/modules/orchestration/a2a/adapters/qwen.adapter.ts +248 -248
  191. package/server/modules/orchestration/a2a/agent-card.ts +55 -55
  192. package/server/modules/orchestration/a2a/routes.ts +590 -590
  193. package/server/modules/orchestration/a2a/task-store.ts +178 -178
  194. package/server/modules/orchestration/a2a/types.ts +126 -126
  195. package/server/modules/orchestration/a2a/validator.ts +113 -113
  196. package/server/modules/orchestration/hermes/hermes.routes.ts +642 -583
  197. package/server/modules/orchestration/index.ts +101 -100
  198. package/server/modules/orchestration/preview/port-watcher.ts +112 -112
  199. package/server/modules/orchestration/preview/preview-proxy.ts +60 -60
  200. package/server/modules/orchestration/preview/types.ts +19 -19
  201. package/server/modules/orchestration/security/permission-policy.ts +401 -401
  202. package/server/modules/orchestration/tasks/orchestration-task-store.ts +41 -41
  203. package/server/modules/orchestration/tasks/orchestration-task.routes.ts +64 -64
  204. package/server/modules/orchestration/tasks/orchestration-task.service.ts +209 -209
  205. package/server/modules/orchestration/tasks/orchestration-task.types.ts +40 -40
  206. package/server/modules/orchestration/tasks/task-run-graph.ts +155 -155
  207. package/server/modules/orchestration/workflows/approval-queue.ts +106 -106
  208. package/server/modules/orchestration/workflows/built-in-workflows.ts +127 -127
  209. package/server/modules/orchestration/workflows/context-packet.ts +186 -186
  210. package/server/modules/orchestration/workflows/handoff-artifact.ts +175 -175
  211. package/server/modules/orchestration/workflows/workflow-fallback-policy.ts +161 -161
  212. package/server/modules/orchestration/workflows/workflow-replay.ts +254 -254
  213. package/server/modules/orchestration/workflows/workflow-runner.ts +2070 -2070
  214. package/server/modules/orchestration/workflows/workflow-store.ts +97 -97
  215. package/server/modules/orchestration/workflows/workflow-templates.ts +272 -272
  216. package/server/modules/orchestration/workflows/workflow-trace.ts +424 -424
  217. package/server/modules/orchestration/workflows/workflow.routes.ts +586 -586
  218. package/server/modules/orchestration/workflows/workflow.types.ts +111 -111
  219. package/server/modules/orchestration/workflows/workspace-target.ts +122 -122
  220. package/server/modules/orchestration/workspace/docker-workspace.ts +136 -136
  221. package/server/modules/orchestration/workspace/path-safety.ts +55 -55
  222. package/server/modules/orchestration/workspace/types.ts +52 -52
  223. package/server/modules/orchestration/workspace/workspace-manager.ts +102 -102
  224. package/server/modules/orchestration/workspace/worktree-workspace.ts +126 -126
  225. package/server/modules/providers/index.ts +2 -2
  226. package/server/modules/providers/list/claude/claude-auth.provider.ts +146 -146
  227. package/server/modules/providers/list/claude/claude-mcp.provider.ts +135 -135
  228. package/server/modules/providers/list/claude/claude-sessions.provider.ts +306 -306
  229. package/server/modules/providers/list/claude/claude.provider.ts +15 -15
  230. package/server/modules/providers/list/codex/codex-auth.provider.ts +117 -117
  231. package/server/modules/providers/list/codex/codex-mcp.provider.ts +135 -135
  232. package/server/modules/providers/list/codex/codex-sessions.provider.ts +319 -319
  233. package/server/modules/providers/list/codex/codex.provider.ts +15 -15
  234. package/server/modules/providers/list/cursor/cursor-auth.provider.ts +147 -147
  235. package/server/modules/providers/list/cursor/cursor-mcp.provider.ts +108 -108
  236. package/server/modules/providers/list/cursor/cursor-sessions.provider.ts +421 -421
  237. package/server/modules/providers/list/cursor/cursor.provider.ts +15 -15
  238. package/server/modules/providers/list/gemini/gemini-auth.provider.ts +173 -173
  239. package/server/modules/providers/list/gemini/gemini-mcp.provider.ts +110 -110
  240. package/server/modules/providers/list/gemini/gemini-sessions.provider.ts +227 -227
  241. package/server/modules/providers/list/gemini/gemini.provider.ts +15 -15
  242. package/server/modules/providers/list/opencode/opencode-auth.provider.ts +131 -131
  243. package/server/modules/providers/list/opencode/opencode-mcp.provider.ts +126 -126
  244. package/server/modules/providers/list/opencode/opencode-sessions.provider.ts +286 -286
  245. package/server/modules/providers/list/opencode/opencode.provider.ts +29 -29
  246. package/server/modules/providers/list/qwen/qwen-auth.provider.ts +146 -146
  247. package/server/modules/providers/list/qwen/qwen-mcp.provider.ts +114 -114
  248. package/server/modules/providers/list/qwen/qwen-sessions.provider.ts +265 -265
  249. package/server/modules/providers/list/qwen/qwen.provider.ts +21 -21
  250. package/server/modules/providers/provider.registry.ts +40 -40
  251. package/server/modules/providers/provider.routes.ts +944 -944
  252. package/server/modules/providers/services/mcp.service.ts +86 -86
  253. package/server/modules/providers/services/provider-auth.service.ts +26 -26
  254. package/server/modules/providers/services/sessions.service.ts +45 -45
  255. package/server/modules/providers/shared/base/abstract.provider.ts +20 -20
  256. package/server/modules/providers/shared/mcp/mcp.provider.ts +151 -151
  257. package/server/modules/providers/shared/provider-configs.ts +142 -142
  258. package/server/modules/providers/tests/mcp.test.ts +293 -293
  259. package/server/openai-codex.js +462 -462
  260. package/server/opencode-cli.js +491 -491
  261. package/server/opencode-response-handler.js +111 -111
  262. package/server/projects.js +3008 -3008
  263. package/server/qwen-code-cli.js +410 -410
  264. package/server/qwen-response-handler.js +73 -73
  265. package/server/routes/agent.js +1435 -1435
  266. package/server/routes/auth.js +154 -146
  267. package/server/routes/codex.js +20 -20
  268. package/server/routes/commands.js +570 -570
  269. package/server/routes/cursor.js +61 -61
  270. package/server/routes/diagnostics.js +41 -41
  271. package/server/routes/gemini.js +25 -25
  272. package/server/routes/git.js +1650 -1635
  273. package/server/routes/live-view.js +411 -411
  274. package/server/routes/mcp-utils.js +13 -13
  275. package/server/routes/messages.js +62 -62
  276. package/server/routes/network.js +125 -125
  277. package/server/routes/platformization.js +198 -197
  278. package/server/routes/plugins.js +320 -320
  279. package/server/routes/production-agent-loop.js +90 -90
  280. package/server/routes/projects.js +917 -917
  281. package/server/routes/public-api.js +34 -34
  282. package/server/routes/qwen.js +27 -27
  283. package/server/routes/remote.js +55 -55
  284. package/server/routes/settings.js +321 -321
  285. package/server/routes/telegram.js +140 -140
  286. package/server/routes/user.js +125 -125
  287. package/server/routes/webhooks.js +63 -63
  288. package/server/services/control-room.js +102 -102
  289. package/server/services/diagnostics.js +165 -165
  290. package/server/services/external-access.js +375 -375
  291. package/server/services/hermes-gateway.js +1562 -1247
  292. package/server/services/hermes-install-jobs.js +729 -729
  293. package/server/services/install-jobs.js +715 -715
  294. package/server/services/live-view.js +956 -956
  295. package/server/services/managed-runtimes.js +493 -493
  296. package/server/services/model-registry.js +144 -144
  297. package/server/services/notification-orchestrator.js +365 -365
  298. package/server/services/notification-taxonomy.js +204 -204
  299. package/server/services/platformization.js +844 -779
  300. package/server/services/production-agent-loop.js +248 -248
  301. package/server/services/provider-cli-versions.js +149 -149
  302. package/server/services/provider-credentials.js +189 -189
  303. package/server/services/provider-models.js +396 -396
  304. package/server/services/public-api-manifest.js +190 -182
  305. package/server/services/remote-connection.js +127 -127
  306. package/server/services/runtime-manager.js +323 -323
  307. package/server/services/startup-update.js +234 -234
  308. package/server/services/telegram/bot.js +331 -331
  309. package/server/services/telegram/control-center.js +979 -979
  310. package/server/services/telegram/telegram-http-client.js +151 -151
  311. package/server/services/telegram/translations.js +340 -340
  312. package/server/services/vapid-keys.js +36 -36
  313. package/server/services/webhooks.js +216 -216
  314. package/server/sessionManager.js +225 -225
  315. package/server/shared/interfaces.ts +54 -54
  316. package/server/shared/types.ts +172 -172
  317. package/server/shared/utils.ts +193 -193
  318. package/server/tsconfig.json +36 -36
  319. package/server/utils/colors.js +21 -21
  320. package/server/utils/commandParser.js +305 -305
  321. package/server/utils/frontmatter.js +18 -18
  322. package/server/utils/gitConfig.js +34 -34
  323. package/server/utils/plugin-loader.js +457 -457
  324. package/server/utils/plugin-process-manager.js +185 -185
  325. package/server/utils/port-access.js +209 -209
  326. package/server/utils/runtime-paths.js +37 -37
  327. package/server/utils/url-detection.js +71 -71
  328. package/server/vite-daemon.js +79 -79
  329. package/shared/modelConstants.js +161 -161
  330. package/shared/networkHosts.js +22 -22
  331. package/dist/assets/index-DMz0zv6T.css +0 -32
@@ -1,964 +1,964 @@
1
- import fs from 'fs';
2
- import path from 'path';
3
- import os from 'os';
4
- import { spawnSync } from 'child_process';
5
- import { request } from 'node:http';
6
- import net from 'node:net';
7
-
8
- const DAEMON_SERVICE_NAME = 'pixcode.service';
9
- const FRONTEND_DAEMON_SERVICE_NAME = 'pixcode-frontend.service';
10
- const DAEMON_USER_SERVICE_PATH = path.join(os.homedir(), '.config', 'systemd', 'user', DAEMON_SERVICE_NAME);
11
- const DAEMON_SYSTEM_SERVICE_PATH = path.join('/etc', 'systemd', 'system', DAEMON_SERVICE_NAME);
12
- const FRONTEND_DAEMON_USER_SERVICE_PATH = path.join(os.homedir(), '.config', 'systemd', 'user', FRONTEND_DAEMON_SERVICE_NAME);
13
- const FRONTEND_DAEMON_SYSTEM_SERVICE_PATH = path.join('/etc', 'systemd', 'system', FRONTEND_DAEMON_SERVICE_NAME);
14
- const DEFAULT_FRONTEND_PORT = 5173;
15
- const DAEMON_HEALTH_TIMEOUT_MS = 60000;
16
- const DAEMON_HEALTH_REQUEST_TIMEOUT_MS = 4000;
17
- const DAEMON_HEALTH_RETRY_INTERVAL_MS = 1000;
18
-
19
- const DAEMON_SUBCOMMANDS = new Set([
20
- 'install',
21
- 'start',
22
- 'stop',
23
- 'restart',
24
- 'status',
25
- 'logs',
26
- 'enable',
27
- 'disable',
28
- 'uninstall',
29
- 'doctor',
30
- 'help',
31
- ]);
32
-
33
- const DAEMON_MODES = new Set(['auto', 'user', 'system']);
34
- const SYSTEM_MUTATING_DAEMON_SUBCOMMANDS = new Set([
35
- 'install',
36
- 'start',
37
- 'stop',
38
- 'restart',
39
- 'enable',
40
- 'disable',
41
- 'uninstall',
42
- 'logs',
43
- ]);
44
- let pixcodeBinaryAvailableCache = null;
45
-
46
- function passthroughColor(text) {
47
- return text;
48
- }
49
-
50
- function getColorHelpers(color) {
51
- if (color) {
52
- return color;
53
- }
54
- return {
55
- info: passthroughColor,
56
- ok: passthroughColor,
57
- warn: passthroughColor,
58
- error: passthroughColor,
59
- tip: passthroughColor,
60
- bright: passthroughColor,
61
- dim: passthroughColor,
62
- };
63
- }
64
-
65
- function runCommand(bin, args, opts = {}) {
66
- const stdio = opts.inherit ? 'inherit' : 'pipe';
67
- return spawnSync(bin, args, {
68
- encoding: 'utf8',
69
- stdio,
70
- });
71
- }
72
-
73
- function extractCommandError(result, fallbackMessage) {
74
- if (!result) return fallbackMessage;
75
- const fromError = result.error?.message?.trim();
76
- if (fromError) return fromError;
77
- const fromStd = (result.stderr || result.stdout || '').trim();
78
- if (fromStd) return fromStd;
79
- return fallbackMessage;
80
- }
81
-
82
- function isRootUser() {
83
- return typeof process.getuid === 'function' && process.getuid() === 0;
84
- }
85
-
86
- function quoteShellArg(arg) {
87
- const value = String(arg);
88
- if (/^[A-Za-z0-9_./:=+-]+$/.test(value)) {
89
- return value;
90
- }
91
- return `'${value.replace(/'/g, `'\\''`)}'`;
92
- }
93
-
94
- function quoteSystemdArg(arg) {
95
- return `"${String(arg).replace(/(["\\$`])/g, '\\$1')}"`;
96
- }
97
-
98
- export function resolveDaemonCliEntryPath(context = {}) {
99
- const appRoot = context.appRoot || process.cwd();
100
- const explicitCliEntry = context.cliEntry ? path.resolve(context.cliEntry) : null;
101
- const argvCliEntry = process.argv[1] ? path.resolve(process.argv[1]) : null;
102
- const distCliEntry = path.join(appRoot, 'dist-server', 'server', 'cli.js');
103
- const sourceCliEntry = path.join(appRoot, 'server', 'cli.js');
104
- const normalizeCliCandidate = (candidate) => {
105
- if (!candidate) return null;
106
- const resolved = path.resolve(candidate);
107
- if (resolved === sourceCliEntry && fs.existsSync(distCliEntry)) {
108
- return distCliEntry;
109
- }
110
- return resolved;
111
- };
112
- const candidatePaths = [
113
- normalizeCliCandidate(explicitCliEntry),
114
- normalizeCliCandidate(argvCliEntry),
115
- distCliEntry,
116
- sourceCliEntry,
117
- ].filter(Boolean);
118
-
119
- const existingPath = candidatePaths.find(candidate => fs.existsSync(candidate));
120
- if (existingPath) {
121
- return existingPath;
122
- }
123
-
124
- return normalizeCliCandidate(explicitCliEntry) || normalizeCliCandidate(argvCliEntry) || distCliEntry;
125
- }
126
-
127
- function hasPixcodeBinary() {
128
- if (pixcodeBinaryAvailableCache !== null) {
129
- return pixcodeBinaryAvailableCache;
130
- }
131
-
132
- const probe = runCommand('pixcode', ['--version']);
133
- pixcodeBinaryAvailableCache = probe.status === 0;
134
- return pixcodeBinaryAvailableCache;
135
- }
136
-
137
- function getDaemonCommandPrefix(context = {}, { forceLocal = false } = {}) {
138
- if (!forceLocal && hasPixcodeBinary()) {
139
- return 'pixcode';
140
- }
141
-
142
- const nodeExec = context.nodeExecPath || process.execPath || 'node';
143
- const cliEntry = resolveDaemonCliEntryPath(context);
144
- return `${quoteShellArg(nodeExec)} ${quoteShellArg(cliEntry)}`;
145
- }
146
-
147
- export function buildDaemonCliCommand({ subcommand, mode = 'system', extraArgs = [] }, context = {}) {
148
- const normalizedSubcommand = String(subcommand || 'status').trim() || 'status';
149
- const normalizedMode = String(mode || 'system').trim() || 'system';
150
- const args = ['daemon', normalizedSubcommand, '--mode', normalizedMode, ...extraArgs.map(value => String(value))];
151
- const needsSudo =
152
- normalizedMode === 'system' &&
153
- SYSTEM_MUTATING_DAEMON_SUBCOMMANDS.has(normalizedSubcommand) &&
154
- !isRootUser();
155
- const prefix = getDaemonCommandPrefix(context, { forceLocal: needsSudo });
156
- const command = `${prefix} ${args.map(quoteShellArg).join(' ')}`;
157
- return needsSudo ? `sudo ${command}` : command;
158
- }
159
-
160
- function getDaemonServicePath(mode) {
161
- return mode === 'system' ? DAEMON_SYSTEM_SERVICE_PATH : DAEMON_USER_SERVICE_PATH;
162
- }
163
-
164
- function getFrontendServicePath(mode) {
165
- return mode === 'system' ? FRONTEND_DAEMON_SYSTEM_SERVICE_PATH : FRONTEND_DAEMON_USER_SERVICE_PATH;
166
- }
167
-
168
- function getSystemctlArgs(mode, commandArgs) {
169
- return mode === 'user' ? ['--user', ...commandArgs] : commandArgs;
170
- }
171
-
172
- function getJournalctlArgs(mode, commandArgs) {
173
- return mode === 'user' ? ['--user', ...commandArgs] : commandArgs;
174
- }
175
-
176
- function parseDaemonArgs(args) {
177
- const parsed = {
178
- subcommand: 'status',
179
- options: {
180
- mode: 'system',
181
- },
182
- };
183
-
184
- let i = 0;
185
- if (args[0] && DAEMON_SUBCOMMANDS.has(args[0])) {
186
- parsed.subcommand = args[0];
187
- i = 1;
188
- }
189
-
190
- for (; i < args.length; i++) {
191
- const arg = args[i];
192
- if (arg === '--port' || arg === '-p') {
193
- parsed.options.serverPort = args[++i];
194
- } else if (arg.startsWith('--port=')) {
195
- parsed.options.serverPort = arg.split('=')[1];
196
- } else if (arg === '--frontend-port') {
197
- parsed.options.frontendPort = args[++i];
198
- } else if (arg.startsWith('--frontend-port=')) {
199
- parsed.options.frontendPort = arg.split('=')[1];
200
- } else if (arg === '--no-frontend' || arg === '--single-port') {
201
- parsed.options.noFrontend = true;
202
- } else if (arg === '--mode' || arg === '-m') {
203
- parsed.options.mode = (args[++i] || '').toLowerCase();
204
- } else if (arg.startsWith('--mode=')) {
205
- parsed.options.mode = (arg.split('=')[1] || '').toLowerCase();
206
- } else if (arg === '--database-path') {
207
- parsed.options.databasePath = args[++i];
208
- } else if (arg.startsWith('--database-path=')) {
209
- parsed.options.databasePath = arg.split('=')[1];
210
- } else if (arg === '--help' || arg === '-h') {
211
- parsed.subcommand = 'help';
212
- } else {
213
- parsed.options.extraArgs = parsed.options.extraArgs || [];
214
- parsed.options.extraArgs.push(arg);
215
- }
216
- }
217
-
218
- return parsed;
219
- }
220
-
221
- function buildDaemonExecStart({ appRoot, serverPort, databasePath, nodeExecPath, cliEntry }) {
222
- const nodeExec = nodeExecPath || process.execPath || 'node';
223
- const resolvedCliEntry = resolveDaemonCliEntryPath({ appRoot, cliEntry });
224
-
225
- const args = [nodeExec, resolvedCliEntry, 'start', '--port', String(serverPort)];
226
- if (databasePath) {
227
- args.push('--database-path', databasePath);
228
- }
229
-
230
- return args.map(quoteSystemdArg).join(' ');
231
- }
232
-
233
- function buildDaemonServiceUnit({ appRoot, serverPort, databasePath, nodeExecPath, cliEntry }) {
234
- const execStart = buildDaemonExecStart({
235
- appRoot,
236
- serverPort,
237
- databasePath,
238
- nodeExecPath,
239
- cliEntry,
240
- });
241
- return `[Unit]
242
- Description=Pixcode Server
243
- After=network.target
244
-
245
- [Service]
246
- Type=simple
247
- WorkingDirectory=${appRoot}
248
- ExecStart=${execStart}
249
- Environment=HOST=0.0.0.0
250
- Environment=CI=true
251
- Environment=PIXCODE_DAEMON_MANAGED=1
252
- Restart=always
253
- RestartSec=2
254
-
255
- [Install]
256
- WantedBy=default.target
257
- `;
258
- }
259
-
260
- function resolveFrontendDaemonEntry(appRoot, cliEntry) {
261
- const cliCandidate = cliEntry
262
- ? path.resolve(cliEntry)
263
- : (process.argv[1] ? path.resolve(process.argv[1]) : '');
264
- const candidates = [];
265
- if (cliCandidate) {
266
- candidates.push(path.join(path.dirname(cliCandidate), 'vite-daemon.js'));
267
- }
268
- candidates.push(path.join(appRoot, 'dist-server', 'server', 'vite-daemon.js'));
269
- candidates.push(path.join(appRoot, 'server', 'vite-daemon.js'));
270
-
271
- const resolved = candidates.find(candidate => fs.existsSync(candidate));
272
- if (!resolved) {
273
- throw new Error(
274
- `Frontend daemon entry was not found. Checked: ${candidates.join(', ')}. ` +
275
- `Run "npm run build:server" or ensure server/vite-daemon.js exists.`
276
- );
277
- }
278
- return resolved;
279
- }
280
-
281
- function buildFrontendDaemonExecStart({ appRoot, frontendPort, nodeExecPath, cliEntry }) {
282
- const nodeExec = nodeExecPath || process.execPath || 'node';
283
- const frontendEntry = resolveFrontendDaemonEntry(appRoot, cliEntry);
284
- const args = [
285
- nodeExec,
286
- frontendEntry,
287
- '--host',
288
- '0.0.0.0',
289
- '--port',
290
- String(frontendPort),
291
- '--strictPort',
292
- ];
293
- return args.map(quoteSystemdArg).join(' ');
294
- }
295
-
296
- function buildFrontendDaemonServiceUnit({ appRoot, frontendPort, nodeExecPath, cliEntry }) {
297
- const execStart = buildFrontendDaemonExecStart({
298
- appRoot,
299
- frontendPort,
300
- nodeExecPath,
301
- cliEntry,
302
- });
303
- return `[Unit]
304
- Description=Pixcode Frontend (Vite Dev Server)
305
- After=network.target
306
-
307
- [Service]
308
- Type=simple
309
- WorkingDirectory=${appRoot}
310
- ExecStart=${execStart}
311
- Environment=HOST=0.0.0.0
312
- Environment=CI=true
313
- Environment=PIXCODE_DAEMON_MANAGED=1
314
- Restart=always
315
- RestartSec=2
316
-
317
- [Install]
318
- WantedBy=default.target
319
- `;
320
- }
321
-
322
- function normalizeState(value) {
323
- const text = (value || '').trim();
324
- if (!text) return 'unknown';
325
- if (/No such file or directory/i.test(text)) return 'not-found';
326
- return text;
327
- }
328
-
329
- function getServiceState(mode, serviceName) {
330
- const activeRes = runCommand('systemctl', getSystemctlArgs(mode, ['is-active', serviceName]));
331
- const enabledRes = runCommand('systemctl', getSystemctlArgs(mode, ['is-enabled', serviceName]));
332
-
333
- return {
334
- active: normalizeState(activeRes.stdout || activeRes.stderr),
335
- enabled: normalizeState(enabledRes.stdout || enabledRes.stderr),
336
- };
337
- }
338
-
339
- function readLogs(mode, lines = 100, inherit = false, serviceNames = [DAEMON_SERVICE_NAME]) {
340
- const unitArgs = serviceNames.flatMap((serviceName) => ['-u', serviceName]);
341
- const args = [...getJournalctlArgs(mode, unitArgs), '-n', String(lines), '--no-pager'];
342
- return runCommand('journalctl', args, { inherit });
343
- }
344
-
345
- function getPortFromServiceUnit(servicePath) {
346
- if (!fs.existsSync(servicePath)) return null;
347
- try {
348
- const content = fs.readFileSync(servicePath, 'utf8');
349
- const quoted = content.match(/"--port"\s+"(\d+)"/);
350
- if (quoted) return Number(quoted[1]);
351
- const plain = content.match(/--port(?:\s+|=)(\d+)/);
352
- if (plain) return Number(plain[1]);
353
- } catch {
354
- // Ignore parse errors and use fallback port.
355
- }
356
- return null;
357
- }
358
-
359
- function findLatestErrorLine(logText) {
360
- if (!logText) return '';
361
- const lines = logText.split('\n').map(line => line.trim()).filter(Boolean);
362
- const errorLine = [...lines].reverse().find(line => /(error|failed|exception|denied|cannot|traceback)/i.test(line));
363
- return errorLine || '';
364
- }
365
-
366
- function probeUserBus() {
367
- const result = runCommand('systemctl', ['--user', 'show-environment']);
368
- return {
369
- ok: result.status === 0,
370
- detail: extractCommandError(result, 'systemd user bus is not reachable'),
371
- };
372
- }
373
-
374
- function probeLinger() {
375
- const result = runCommand('loginctl', ['show-user', os.userInfo().username, '-p', 'Linger']);
376
- if (result.status !== 0) {
377
- return {
378
- value: 'unknown',
379
- detail: extractCommandError(result, 'Could not read linger status'),
380
- };
381
- }
382
- const output = (result.stdout || '').trim();
383
- const value = output.includes('=') ? output.split('=')[1].trim().toLowerCase() : output.toLowerCase();
384
- return {
385
- value: value || 'unknown',
386
- detail: '',
387
- };
388
- }
389
-
390
- function resolveDaemonMode({ requestedMode, subcommand, userBusAvailable }) {
391
- if (requestedMode !== 'auto') {
392
- return requestedMode;
393
- }
394
-
395
- // Auto mode is intentionally system-first to guarantee boot-time startup
396
- // even without an interactive user session.
397
- const systemUnitInstalled = fs.existsSync(getDaemonServicePath('system'));
398
- const userUnitInstalled = fs.existsSync(getDaemonServicePath('user'));
399
-
400
- if (systemUnitInstalled) return 'system';
401
- if (subcommand === 'install') return 'system';
402
- if (userUnitInstalled && userBusAvailable) return 'user';
403
- return 'system';
404
- }
405
-
406
- function runSystemctl(mode, commandArgs, opts = {}) {
407
- const result = runCommand('systemctl', getSystemctlArgs(mode, commandArgs), { inherit: opts.inherit });
408
- if (result.status !== 0 && !opts.allowFailure) {
409
- let errorText = extractCommandError(result, `systemctl ${commandArgs.join(' ')} failed`);
410
- if (mode === 'system' && /(access denied|permission denied|must be root|interactive authentication required|not permitted)/i.test(errorText)) {
411
- errorText += '\nTry rerunning this daemon operation with elevated privileges (sudo).';
412
- }
413
- throw new Error(errorText);
414
- }
415
- return result;
416
- }
417
-
418
- async function sleep(ms) {
419
- await new Promise(resolve => setTimeout(resolve, ms));
420
- }
421
-
422
- async function isPortReachable(port, timeoutMs = 1000) {
423
- return await new Promise(resolve => {
424
- const socket = net.createConnection({ host: '127.0.0.1', port: Number(port) });
425
- let settled = false;
426
- const done = (value) => {
427
- if (settled) return;
428
- settled = true;
429
- socket.destroy();
430
- resolve(value);
431
- };
432
- socket.setTimeout(timeoutMs);
433
- socket.once('connect', () => done(true));
434
- socket.once('timeout', () => done(false));
435
- socket.once('error', () => done(false));
436
- });
437
- }
438
-
439
- async function requestHealthOnce(port, timeoutMs = DAEMON_HEALTH_REQUEST_TIMEOUT_MS) {
440
- return await new Promise((resolve, reject) => {
441
- const req = request({
442
- host: '127.0.0.1',
443
- port: Number(port),
444
- method: 'GET',
445
- path: '/health',
446
- timeout: timeoutMs,
447
- }, (res) => {
448
- res.resume();
449
- resolve({ ok: true, statusCode: res.statusCode });
450
- });
451
-
452
- req.on('timeout', () => req.destroy(new Error(`Health check timed out after ${timeoutMs}ms`)));
453
- req.on('error', reject);
454
- req.end();
455
- });
456
- }
457
-
458
- async function waitForHealth(port, timeoutMs = DAEMON_HEALTH_TIMEOUT_MS) {
459
- const deadline = Date.now() + timeoutMs;
460
- let lastError = null;
461
- while (Date.now() < deadline) {
462
- try {
463
- return await requestHealthOnce(port);
464
- } catch (error) {
465
- lastError = error;
466
- if (await isPortReachable(port, 700)) {
467
- return { ok: true, statusCode: null, probe: 'tcp' };
468
- }
469
- await sleep(DAEMON_HEALTH_RETRY_INTERVAL_MS);
470
- }
471
- }
472
- throw new Error(lastError?.message || `Service did not become healthy on port ${port}`);
473
- }
474
-
475
- async function healthCheckOrThrow(mode, serviceName, port, c) {
476
- const state = getServiceState(mode, serviceName);
477
- if (state.active !== 'active' && state.active !== 'activating') {
478
- throw new Error(`Service ${serviceName} is not active (state: ${state.active})`);
479
- }
480
-
481
- try {
482
- const health = await waitForHealth(port);
483
- if (health.probe === 'tcp') {
484
- console.log(`${c.warn('[WARN]')} HTTP /health probe delayed; TCP port ${port} is already accepting connections.`);
485
- }
486
- } catch (healthError) {
487
- const logsResult = readLogs(mode, 50, false, [serviceName]);
488
- const logText = (logsResult.stdout || logsResult.stderr || '').trim();
489
- const lastErrorLine = findLatestErrorLine(logText);
490
-
491
- if (logText) {
492
- console.log(`\n${c.warn('[WARN]')} Last 50 log lines for ${serviceName}:`);
493
- console.log(logText);
494
- }
495
-
496
- if (lastErrorLine) {
497
- throw new Error(`Health check failed for ${serviceName}: ${healthError.message}\nLikely cause: ${lastErrorLine}`);
498
- }
499
- throw new Error(`Health check failed for ${serviceName}: ${healthError.message}`);
500
- }
501
- }
502
-
503
- function ensureLinux() {
504
- if (process.platform !== 'linux') {
505
- throw new Error('The daemon command is supported on Linux only.');
506
- }
507
- }
508
-
509
- function ensureSystemctl() {
510
- const probe = runCommand('systemctl', ['--version']);
511
- if (probe.status !== 0) {
512
- throw new Error(extractCommandError(probe, 'systemctl is not available in this environment'));
513
- }
514
- }
515
-
516
- function showDaemonHelp(c, context = {}) {
517
- const usagePrefix = getDaemonCommandPrefix(context);
518
- const installExample = buildDaemonCliCommand(
519
- {
520
- subcommand: 'install',
521
- mode: 'system',
522
- extraArgs: ['--port', '3001', '--single-port'],
523
- },
524
- context
525
- );
526
- const statusExample = buildDaemonCliCommand({ subcommand: 'status', mode: 'system' }, context);
527
- const doctorExample = buildDaemonCliCommand({ subcommand: 'doctor', mode: 'auto' }, context);
528
- const logsExample = buildDaemonCliCommand({ subcommand: 'logs', mode: 'system' }, context);
529
- console.log(`
530
- ${c.bright('Pixcode Daemon')} - Persistent Linux service manager
531
-
532
- Usage:
533
- ${usagePrefix} daemon [subcommand] [options]
534
-
535
- Subcommands:
536
- ${c.bright('install')} Install/update unit, reload daemon, enable and start now
537
- ${c.bright('start')} Start the service
538
- ${c.bright('stop')} Stop the service (temporary; auto-start remains enabled)
539
- ${c.bright('restart')} Restart the service
540
- ${c.bright('status')} Show active/enabled state
541
- ${c.bright('logs')} Show recent service logs
542
- ${c.bright('enable')} Enable auto-start at boot
543
- ${c.bright('disable')} Disable auto-start at boot
544
- ${c.bright('uninstall')} Stop, disable, and remove the service unit
545
- ${c.bright('doctor')} Run diagnostics (bus, linger, units, state, port, logs)
546
- ${c.bright('help')} Show this help
547
-
548
- Options:
549
- -p, --port <port> Set service server port (default: 3001)
550
- --frontend-port <port> Start a separate frontend Vite service on this port (legacy/dev)
551
- --single-port, --no-frontend
552
- Serve the built UI from the backend port only (default)
553
- -m, --mode <mode> Service mode: user | system | auto (default: system)
554
- --database-path <path> Set service database path
555
-
556
- Examples:
557
- $ ${installExample}
558
- $ ${statusExample}
559
- $ ${doctorExample}
560
- $ ${logsExample}
561
- `);
562
- }
563
-
564
- export function hasInstalledDaemonUnit() {
565
- return (
566
- fs.existsSync(DAEMON_USER_SERVICE_PATH) ||
567
- fs.existsSync(DAEMON_SYSTEM_SERVICE_PATH) ||
568
- fs.existsSync(FRONTEND_DAEMON_USER_SERVICE_PATH) ||
569
- fs.existsSync(FRONTEND_DAEMON_SYSTEM_SERVICE_PATH)
570
- );
571
- }
572
-
573
- export async function handleDaemonCommand(args, context = {}) {
574
- const c = getColorHelpers(context.color);
575
- const parsed = parseDaemonArgs(args);
576
- const appRoot = context.appRoot || process.cwd();
577
- const daemonCommandContext = {
578
- appRoot,
579
- cliEntry: context.cliEntry,
580
- nodeExecPath: context.nodeExecPath,
581
- };
582
-
583
- if (parsed.options.extraArgs?.length) {
584
- showDaemonHelp(c, daemonCommandContext);
585
- throw new Error(`Unknown daemon arguments: ${parsed.options.extraArgs.join(' ')}`);
586
- }
587
-
588
- if (parsed.subcommand === 'help') {
589
- showDaemonHelp(c, daemonCommandContext);
590
- return;
591
- }
592
-
593
- if (!DAEMON_MODES.has(parsed.options.mode)) {
594
- throw new Error(`Invalid daemon mode "${parsed.options.mode}". Use one of: auto, user, system.`);
595
- }
596
-
597
- ensureLinux();
598
- ensureSystemctl();
599
-
600
- const defaultPort = context.defaultPort || process.env.SERVER_PORT || process.env.PORT || '3001';
601
- const defaultFrontendPort = context.defaultFrontendPort || process.env.VITE_PORT || String(DEFAULT_FRONTEND_PORT);
602
- const configuredPort = parsed.options.serverPort || defaultPort;
603
- const configuredFrontendPort = parsed.options.frontendPort || defaultFrontendPort;
604
- const frontendEnabled = parsed.options.noFrontend !== true &&
605
- (Boolean(parsed.options.frontendPort) || process.env.PIXCODE_SEPARATE_FRONTEND === '1');
606
- const databasePath = parsed.options.databasePath || process.env.DATABASE_PATH || '';
607
-
608
- const portNum = Number(configuredPort);
609
- if (!Number.isInteger(portNum) || portNum < 1 || portNum > 65535) {
610
- throw new Error(`Invalid port "${configuredPort}". Expected an integer between 1 and 65535.`);
611
- }
612
- const frontendPortNum = Number(configuredFrontendPort);
613
- if (frontendEnabled && (!Number.isInteger(frontendPortNum) || frontendPortNum < 1 || frontendPortNum > 65535)) {
614
- throw new Error(`Invalid frontend port "${configuredFrontendPort}". Expected an integer between 1 and 65535.`);
615
- }
616
-
617
- const userBus = probeUserBus();
618
- const mode = resolveDaemonMode({
619
- requestedMode: parsed.options.mode,
620
- subcommand: parsed.subcommand,
621
- userBusAvailable: userBus.ok,
622
- });
623
- const servicePath = getDaemonServicePath(mode);
624
- const frontendServicePath = getFrontendServicePath(mode);
625
- const effectivePort = getPortFromServiceUnit(servicePath) || portNum;
626
- const effectiveFrontendPort = getPortFromServiceUnit(frontendServicePath) || frontendPortNum;
627
-
628
- if (mode === 'user' && !userBus.ok) {
629
- const installSystemCommand = buildDaemonCliCommand(
630
- { subcommand: 'install', mode: 'system' },
631
- daemonCommandContext
632
- );
633
- throw new Error(
634
- `Could not connect to your systemd user session.\n${userBus.detail}\n` +
635
- `Try ${c.bright(installSystemCommand)} or enable user linger: ${c.bright(`sudo loginctl enable-linger ${os.userInfo().username}`)}`
636
- );
637
- }
638
-
639
- if (parsed.subcommand === 'doctor') {
640
- const linger = probeLinger();
641
- const userUnitInstalled = fs.existsSync(getDaemonServicePath('user'));
642
- const userFrontendUnitInstalled = fs.existsSync(getFrontendServicePath('user'));
643
- const systemUnitInstalled = fs.existsSync(getDaemonServicePath('system'));
644
- const systemFrontendUnitInstalled = fs.existsSync(getFrontendServicePath('system'));
645
- const selectedModePort = getPortFromServiceUnit(servicePath) || portNum;
646
- const selectedModeFrontendPort = frontendEnabled
647
- ? getPortFromServiceUnit(frontendServicePath) || frontendPortNum
648
- : undefined;
649
- const portReachable = await isPortReachable(selectedModePort);
650
- const frontendPortReachable = selectedModeFrontendPort
651
- ? await isPortReachable(selectedModeFrontendPort)
652
- : false;
653
- const userState = userBus.ok
654
- ? {
655
- backend: getServiceState('user', DAEMON_SERVICE_NAME),
656
- frontend: getServiceState('user', FRONTEND_DAEMON_SERVICE_NAME),
657
- }
658
- : {
659
- backend: { active: 'unavailable', enabled: 'unavailable' },
660
- frontend: { active: 'unavailable', enabled: 'unavailable' },
661
- };
662
- const systemState = {
663
- backend: getServiceState('system', DAEMON_SERVICE_NAME),
664
- frontend: getServiceState('system', FRONTEND_DAEMON_SERVICE_NAME),
665
- };
666
- const logsResult = readLogs(mode, 50, false, [DAEMON_SERVICE_NAME, FRONTEND_DAEMON_SERVICE_NAME]);
667
- const logsText = (logsResult.stdout || logsResult.stderr || '').trim();
668
- const lastErrorLine = findLatestErrorLine(logsText);
669
-
670
- console.log(`\n${c.bright('Pixcode Daemon Doctor')}\n`);
671
- console.log(`${c.info('[INFO]')} Requested mode: ${c.bright(parsed.options.mode)}`);
672
- console.log(`${c.info('[INFO]')} Resolved mode: ${c.bright(mode)}`);
673
- console.log(`${c.info('[INFO]')} user-bus: ${userBus.ok ? c.ok('ok') : c.warn('unavailable')}`);
674
- if (!userBus.ok) {
675
- console.log(` ${c.dim(userBus.detail)}`);
676
- }
677
- console.log(`${c.info('[INFO]')} linger: ${c.bright(linger.value)}${linger.detail ? ` ${c.dim(`(${linger.detail})`)}` : ''}`);
678
- console.log(`${c.info('[INFO]')} user backend: ${userUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getDaemonServicePath('user'))})`);
679
- console.log(`${c.info('[INFO]')} user frontend: ${userFrontendUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getFrontendServicePath('user'))})`);
680
- console.log(`${c.info('[INFO]')} system backend: ${systemUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getDaemonServicePath('system'))})`);
681
- console.log(`${c.info('[INFO]')} system frontend:${systemFrontendUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getFrontendServicePath('system'))})`);
682
- console.log(`${c.info('[INFO]')} user state: backend active=${c.bright(userState.backend.active)} enabled=${c.bright(userState.backend.enabled)} | frontend active=${c.bright(userState.frontend.active)} enabled=${c.bright(userState.frontend.enabled)}`);
683
- console.log(`${c.info('[INFO]')} system state: backend active=${c.bright(systemState.backend.active)} enabled=${c.bright(systemState.backend.enabled)} | frontend active=${c.bright(systemState.frontend.active)} enabled=${c.bright(systemState.frontend.enabled)}`);
684
- console.log(`${c.info('[INFO]')} backend port: ${c.bright(String(selectedModePort))} (${portReachable ? c.ok('reachable') : c.warn('not reachable')})`);
685
- console.log(`${c.info('[INFO]')} frontend mode: ${frontendEnabled ? c.bright('separate Vite service') : c.bright('single backend port')}`);
686
- if (frontendEnabled) {
687
- console.log(`${c.info('[INFO]')} frontend port: ${c.bright(String(selectedModeFrontendPort))} (${frontendPortReachable ? c.ok('reachable') : c.warn('not reachable')})`);
688
- }
689
- if (lastErrorLine) {
690
- console.log(`${c.warn('[WARN]')} Latest error: ${lastErrorLine}`);
691
- }
692
-
693
- console.log(`\n${c.bright('Machine Readable')}`);
694
- console.log(`MODE_REQUESTED=${parsed.options.mode}`);
695
- console.log(`MODE_RESOLVED=${mode}`);
696
- console.log(`USER_BUS_OK=${userBus.ok}`);
697
- console.log(`LINGER=${linger.value}`);
698
- console.log(`USER_BACKEND_UNIT_INSTALLED=${userUnitInstalled}`);
699
- console.log(`USER_FRONTEND_UNIT_INSTALLED=${userFrontendUnitInstalled}`);
700
- console.log(`SYSTEM_BACKEND_UNIT_INSTALLED=${systemUnitInstalled}`);
701
- console.log(`SYSTEM_FRONTEND_UNIT_INSTALLED=${systemFrontendUnitInstalled}`);
702
- console.log(`USER_BACKEND_ACTIVE=${userState.backend.active}`);
703
- console.log(`USER_BACKEND_ENABLED=${userState.backend.enabled}`);
704
- console.log(`USER_FRONTEND_ACTIVE=${userState.frontend.active}`);
705
- console.log(`USER_FRONTEND_ENABLED=${userState.frontend.enabled}`);
706
- console.log(`SYSTEM_BACKEND_ACTIVE=${systemState.backend.active}`);
707
- console.log(`SYSTEM_BACKEND_ENABLED=${systemState.backend.enabled}`);
708
- console.log(`SYSTEM_FRONTEND_ACTIVE=${systemState.frontend.active}`);
709
- console.log(`SYSTEM_FRONTEND_ENABLED=${systemState.frontend.enabled}`);
710
- console.log(`BACKEND_PORT=${selectedModePort}`);
711
- console.log(`BACKEND_PORT_REACHABLE=${portReachable}`);
712
- console.log(`FRONTEND_ENABLED=${frontendEnabled}`);
713
- console.log(`FRONTEND_PORT=${selectedModeFrontendPort ?? ''}`);
714
- console.log(`FRONTEND_PORT_REACHABLE=${frontendPortReachable}`);
715
- console.log(`LAST_ERROR_LINE=${JSON.stringify(lastErrorLine || '')}\n`);
716
- return;
717
- }
718
-
719
- const serviceDefs = [{ servicePath }];
720
- if (frontendEnabled) {
721
- serviceDefs.push({ servicePath: frontendServicePath });
722
- }
723
-
724
- switch (parsed.subcommand) {
725
- case 'install': {
726
- if (parsed.options.mode === 'auto' && mode === 'system' && !userBus.ok) {
727
- console.log(`${c.warn('[WARN]')} User mode is unavailable; auto mode is falling back to system mode.`);
728
- }
729
-
730
- try {
731
- fs.mkdirSync(path.dirname(servicePath), { recursive: true });
732
- if (frontendEnabled) {
733
- fs.mkdirSync(path.dirname(frontendServicePath), { recursive: true });
734
- }
735
-
736
- const backendUnitContent = buildDaemonServiceUnit({
737
- appRoot,
738
- serverPort: portNum,
739
- databasePath,
740
- nodeExecPath: context.nodeExecPath,
741
- cliEntry: context.cliEntry,
742
- });
743
- fs.writeFileSync(servicePath, backendUnitContent, 'utf8');
744
-
745
- if (frontendEnabled) {
746
- const frontendUnitContent = buildFrontendDaemonServiceUnit({
747
- appRoot,
748
- frontendPort: frontendPortNum,
749
- nodeExecPath: context.nodeExecPath,
750
- cliEntry: context.cliEntry,
751
- });
752
- fs.writeFileSync(frontendServicePath, frontendUnitContent, 'utf8');
753
- }
754
- } catch (fileError) {
755
- if (mode === 'system' && (fileError.code === 'EACCES' || fileError.code === 'EPERM')) {
756
- const installHint = buildDaemonCliCommand(
757
- {
758
- subcommand: 'install',
759
- mode: 'system',
760
- extraArgs: frontendEnabled
761
- ? ['--port', String(portNum), '--frontend-port', String(frontendPortNum)]
762
- : ['--port', String(portNum), '--single-port'],
763
- },
764
- daemonCommandContext
765
- );
766
- throw new Error(
767
- `Permission denied writing daemon unit files (${servicePath}, ${frontendServicePath}). ` +
768
- `Try: ${installHint}`
769
- );
770
- }
771
- throw fileError;
772
- }
773
-
774
- runSystemctl(mode, ['daemon-reload']);
775
- runSystemctl(mode, ['enable', '--now', DAEMON_SERVICE_NAME]);
776
- if (frontendEnabled) {
777
- runSystemctl(mode, ['enable', '--now', FRONTEND_DAEMON_SERVICE_NAME]);
778
- } else {
779
- runSystemctl(mode, ['stop', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
780
- runSystemctl(mode, ['disable', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
781
- }
782
-
783
- if (mode === 'user') {
784
- const lingerResult = runCommand('loginctl', ['enable-linger', os.userInfo().username]);
785
- if (lingerResult.status !== 0) {
786
- console.log(`${c.warn('[WARN]')} Could not enable linger automatically.`);
787
- console.log(` ${c.dim(extractCommandError(lingerResult, 'Unknown linger error'))}`);
788
- console.log(` ${c.tip('[TIP]')} Run with sufficient privileges: ${c.bright(`sudo loginctl enable-linger ${os.userInfo().username}`)}`);
789
- }
790
- }
791
-
792
- const installedPort = getPortFromServiceUnit(servicePath) || portNum;
793
- await healthCheckOrThrow(mode, DAEMON_SERVICE_NAME, installedPort, c);
794
- const installedFrontendPort = frontendEnabled
795
- ? getPortFromServiceUnit(frontendServicePath) || frontendPortNum
796
- : undefined;
797
- if (frontendEnabled && installedFrontendPort) {
798
- await healthCheckOrThrow(mode, FRONTEND_DAEMON_SERVICE_NAME, installedFrontendPort, c);
799
- }
800
-
801
- const backendState = getServiceState(mode, DAEMON_SERVICE_NAME);
802
- const frontendState = frontendEnabled
803
- ? getServiceState(mode, FRONTEND_DAEMON_SERVICE_NAME)
804
- : { active: 'disabled', enabled: 'disabled' };
805
- console.log(`\n${c.ok('✔')} Daemon installed and started.`);
806
- console.log(` Mode: ${c.bright(mode)}`);
807
- console.log(` Backend Unit: ${c.dim(servicePath)}`);
808
- console.log(` Frontend Mode: ${c.bright(frontendEnabled ? 'separate service' : 'single backend port')}`);
809
- console.log(` Backend Active: ${c.bright(backendState.active)}`);
810
- console.log(` Backend Enabled:${c.bright(backendState.enabled)}`);
811
- console.log(` Backend URL: ${c.bright(`http://localhost:${installedPort}`)}`);
812
- if (frontendEnabled) {
813
- console.log(` Frontend Unit: ${c.dim(frontendServicePath)}`);
814
- console.log(` Frontend Active:${c.bright(frontendState.active)}`);
815
- console.log(` Frontend Enabled:${c.bright(frontendState.enabled)}`);
816
- console.log(` Frontend URL: ${c.bright(`http://localhost:${installedFrontendPort}`)}`);
817
- }
818
- console.log('');
819
- if (mode === 'system') {
820
- const statusCommand = buildDaemonCliCommand(
821
- { subcommand: 'status', mode: 'system' },
822
- daemonCommandContext
823
- );
824
- const stopCommand = buildDaemonCliCommand(
825
- { subcommand: 'stop', mode: 'system' },
826
- daemonCommandContext
827
- );
828
- const logsCommand = buildDaemonCliCommand(
829
- { subcommand: 'logs', mode: 'system' },
830
- daemonCommandContext
831
- );
832
- console.log(`${c.ok('[OK]')} System daemon is active.`);
833
- console.log(`${c.info('[INFO]')} Backend health: ${c.bright(`http://localhost:${installedPort}/health`)}`);
834
- console.log(`${c.info('[INFO]')} UI: ${c.bright(`http://localhost:${installedPort}/`)}`);
835
- console.log(`${c.info('[INFO]')} Status: ${c.bright(statusCommand)}`);
836
- console.log(`${c.info('[INFO]')} Stop: ${c.bright(stopCommand)}`);
837
- console.log(`${c.info('[INFO]')} Logs: ${c.bright(logsCommand)}\n`);
838
- } else {
839
- const linger = probeLinger();
840
- const statusCommand = buildDaemonCliCommand(
841
- { subcommand: 'status', mode: 'user' },
842
- daemonCommandContext
843
- );
844
- const stopCommand = buildDaemonCliCommand(
845
- { subcommand: 'stop', mode: 'user' },
846
- daemonCommandContext
847
- );
848
- const logsCommand = buildDaemonCliCommand(
849
- { subcommand: 'logs', mode: 'user' },
850
- daemonCommandContext
851
- );
852
- console.log(`${c.ok('[OK]')} User daemon is active.`);
853
- console.log(`${c.info('[INFO]')} Backend health: ${c.bright(`http://localhost:${installedPort}/health`)}`);
854
- console.log(`${c.info('[INFO]')} UI: ${c.bright(`http://localhost:${installedPort}/`)}`);
855
- console.log(`${c.info('[INFO]')} Status: ${c.bright(statusCommand)}`);
856
- console.log(`${c.info('[INFO]')} Stop: ${c.bright(stopCommand)}`);
857
- console.log(`${c.info('[INFO]')} Logs: ${c.bright(logsCommand)}`);
858
- if (linger.value !== 'yes') {
859
- console.log(`${c.tip('[TIP]')} Enable linger for reboot/login persistence: ${c.bright(`sudo loginctl enable-linger ${os.userInfo().username}`)}\n`);
860
- } else {
861
- console.log('');
862
- }
863
- }
864
- break;
865
- }
866
-
867
- case 'start':
868
- runSystemctl(mode, ['start', DAEMON_SERVICE_NAME]);
869
- if (frontendEnabled) runSystemctl(mode, ['start', FRONTEND_DAEMON_SERVICE_NAME]);
870
- await healthCheckOrThrow(mode, DAEMON_SERVICE_NAME, effectivePort, c);
871
- if (frontendEnabled) await healthCheckOrThrow(mode, FRONTEND_DAEMON_SERVICE_NAME, effectiveFrontendPort, c);
872
- console.log(`${c.ok('[OK]')} Pixcode service started.`);
873
- break;
874
-
875
- case 'stop':
876
- runSystemctl(mode, ['stop', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
877
- runSystemctl(mode, ['stop', DAEMON_SERVICE_NAME]);
878
- console.log(`${c.ok('[OK]')} Pixcode service stopped (auto-start remains enabled).`);
879
- break;
880
-
881
- case 'restart':
882
- runSystemctl(mode, ['restart', DAEMON_SERVICE_NAME]);
883
- if (frontendEnabled) runSystemctl(mode, ['restart', FRONTEND_DAEMON_SERVICE_NAME]);
884
- await healthCheckOrThrow(mode, DAEMON_SERVICE_NAME, effectivePort, c);
885
- if (frontendEnabled) await healthCheckOrThrow(mode, FRONTEND_DAEMON_SERVICE_NAME, effectiveFrontendPort, c);
886
- console.log(`${c.ok('[OK]')} Pixcode service restarted.`);
887
- break;
888
-
889
- case 'enable':
890
- runSystemctl(mode, ['enable', DAEMON_SERVICE_NAME]);
891
- if (frontendEnabled) runSystemctl(mode, ['enable', FRONTEND_DAEMON_SERVICE_NAME]);
892
- console.log(`${c.ok('[OK]')} Pixcode service enabled for auto-start.`);
893
- break;
894
-
895
- case 'disable':
896
- runSystemctl(mode, ['disable', DAEMON_SERVICE_NAME]);
897
- runSystemctl(mode, ['disable', FRONTEND_DAEMON_SERVICE_NAME]);
898
- console.log(`${c.ok('[OK]')} Pixcode service disabled for auto-start.`);
899
- break;
900
-
901
- case 'logs': {
902
- const logsResult = readLogs(mode, 100, true, [DAEMON_SERVICE_NAME, FRONTEND_DAEMON_SERVICE_NAME]);
903
- if (logsResult.status !== 0) {
904
- throw new Error(extractCommandError(logsResult, 'Unable to read daemon logs'));
905
- }
906
- break;
907
- }
908
-
909
- case 'uninstall': {
910
- runSystemctl(mode, ['stop', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
911
- runSystemctl(mode, ['disable', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
912
- runSystemctl(mode, ['stop', DAEMON_SERVICE_NAME], { allowFailure: true });
913
- runSystemctl(mode, ['disable', DAEMON_SERVICE_NAME], { allowFailure: true });
914
-
915
- for (const def of serviceDefs) {
916
- if (!fs.existsSync(def.servicePath)) continue;
917
- try {
918
- fs.unlinkSync(def.servicePath);
919
- } catch (unlinkError) {
920
- if (mode === 'system' && (unlinkError.code === 'EACCES' || unlinkError.code === 'EPERM')) {
921
- const uninstallHint = buildDaemonCliCommand(
922
- { subcommand: 'uninstall', mode: 'system' },
923
- daemonCommandContext
924
- );
925
- throw new Error(`Permission denied removing ${def.servicePath}. Try: ${uninstallHint}`);
926
- }
927
- throw unlinkError;
928
- }
929
- }
930
- runSystemctl(mode, ['daemon-reload'], { allowFailure: true });
931
- console.log(`${c.ok('[OK]')} Backend and frontend daemons uninstalled.`);
932
- break;
933
- }
934
-
935
- case 'status':
936
- default: {
937
- const backendState = getServiceState(mode, DAEMON_SERVICE_NAME);
938
- const frontendState = getServiceState(mode, FRONTEND_DAEMON_SERVICE_NAME);
939
- const backendUnitExists = fs.existsSync(servicePath);
940
- const frontendUnitExists = fs.existsSync(frontendServicePath);
941
- const selectedPort = getPortFromServiceUnit(servicePath) || portNum;
942
- const selectedFrontendPort = frontendEnabled
943
- ? getPortFromServiceUnit(frontendServicePath) || frontendPortNum
944
- : undefined;
945
- console.log(`\n${c.bright('Pixcode Daemon Status')}\n`);
946
- console.log(`${c.info('[INFO]')} Mode: ${c.bright(mode)} ${parsed.options.mode === 'auto' ? c.dim('(resolved from auto)') : ''}`);
947
- console.log(`${c.info('[INFO]')} Backend Unit: ${c.dim(servicePath)} ${backendUnitExists ? c.ok('[OK]') : c.warn('[MISSING]')}`);
948
- console.log(`${c.info('[INFO]')} Backend Active: ${c.bright(backendState.active)}`);
949
- console.log(`${c.info('[INFO]')} Backend Enabled:${c.bright(backendState.enabled)}`);
950
- console.log(`${c.info('[INFO]')} Backend Port: ${c.bright(String(selectedPort))}`);
951
- console.log(`${c.info('[INFO]')} UI URL: ${c.bright(`http://localhost:${selectedPort}/`)}`);
952
- console.log(`${c.info('[INFO]')} Frontend Mode: ${frontendEnabled ? c.bright('separate Vite service') : c.bright('single backend port')}`);
953
- if (frontendEnabled) {
954
- console.log(`${c.info('[INFO]')} Frontend Unit: ${c.dim(frontendServicePath)} ${frontendUnitExists ? c.ok('[OK]') : c.warn('[MISSING]')}`);
955
- console.log(`${c.info('[INFO]')} Frontend Active:${c.bright(frontendState.active)}`);
956
- console.log(`${c.info('[INFO]')} Frontend Enabled:${c.bright(frontendState.enabled)}`);
957
- console.log(`${c.info('[INFO]')} Frontend Port: ${c.bright(String(selectedFrontendPort))}`);
958
- } else if (frontendUnitExists) {
959
- console.log(`${c.info('[INFO]')} Legacy Frontend:${c.dim(frontendServicePath)} active=${c.bright(frontendState.active)} enabled=${c.bright(frontendState.enabled)}`);
960
- }
961
- console.log('');
962
- }
963
- }
964
- }
1
+ import fs from 'fs';
2
+ import path from 'path';
3
+ import os from 'os';
4
+ import { spawnSync } from 'child_process';
5
+ import { request } from 'node:http';
6
+ import net from 'node:net';
7
+
8
+ const DAEMON_SERVICE_NAME = 'pixcode.service';
9
+ const FRONTEND_DAEMON_SERVICE_NAME = 'pixcode-frontend.service';
10
+ const DAEMON_USER_SERVICE_PATH = path.join(os.homedir(), '.config', 'systemd', 'user', DAEMON_SERVICE_NAME);
11
+ const DAEMON_SYSTEM_SERVICE_PATH = path.join('/etc', 'systemd', 'system', DAEMON_SERVICE_NAME);
12
+ const FRONTEND_DAEMON_USER_SERVICE_PATH = path.join(os.homedir(), '.config', 'systemd', 'user', FRONTEND_DAEMON_SERVICE_NAME);
13
+ const FRONTEND_DAEMON_SYSTEM_SERVICE_PATH = path.join('/etc', 'systemd', 'system', FRONTEND_DAEMON_SERVICE_NAME);
14
+ const DEFAULT_FRONTEND_PORT = 5173;
15
+ const DAEMON_HEALTH_TIMEOUT_MS = 60000;
16
+ const DAEMON_HEALTH_REQUEST_TIMEOUT_MS = 4000;
17
+ const DAEMON_HEALTH_RETRY_INTERVAL_MS = 1000;
18
+
19
+ const DAEMON_SUBCOMMANDS = new Set([
20
+ 'install',
21
+ 'start',
22
+ 'stop',
23
+ 'restart',
24
+ 'status',
25
+ 'logs',
26
+ 'enable',
27
+ 'disable',
28
+ 'uninstall',
29
+ 'doctor',
30
+ 'help',
31
+ ]);
32
+
33
+ const DAEMON_MODES = new Set(['auto', 'user', 'system']);
34
+ const SYSTEM_MUTATING_DAEMON_SUBCOMMANDS = new Set([
35
+ 'install',
36
+ 'start',
37
+ 'stop',
38
+ 'restart',
39
+ 'enable',
40
+ 'disable',
41
+ 'uninstall',
42
+ 'logs',
43
+ ]);
44
+ let pixcodeBinaryAvailableCache = null;
45
+
46
+ function passthroughColor(text) {
47
+ return text;
48
+ }
49
+
50
+ function getColorHelpers(color) {
51
+ if (color) {
52
+ return color;
53
+ }
54
+ return {
55
+ info: passthroughColor,
56
+ ok: passthroughColor,
57
+ warn: passthroughColor,
58
+ error: passthroughColor,
59
+ tip: passthroughColor,
60
+ bright: passthroughColor,
61
+ dim: passthroughColor,
62
+ };
63
+ }
64
+
65
+ function runCommand(bin, args, opts = {}) {
66
+ const stdio = opts.inherit ? 'inherit' : 'pipe';
67
+ return spawnSync(bin, args, {
68
+ encoding: 'utf8',
69
+ stdio,
70
+ });
71
+ }
72
+
73
+ function extractCommandError(result, fallbackMessage) {
74
+ if (!result) return fallbackMessage;
75
+ const fromError = result.error?.message?.trim();
76
+ if (fromError) return fromError;
77
+ const fromStd = (result.stderr || result.stdout || '').trim();
78
+ if (fromStd) return fromStd;
79
+ return fallbackMessage;
80
+ }
81
+
82
+ function isRootUser() {
83
+ return typeof process.getuid === 'function' && process.getuid() === 0;
84
+ }
85
+
86
+ function quoteShellArg(arg) {
87
+ const value = String(arg);
88
+ if (/^[A-Za-z0-9_./:=+-]+$/.test(value)) {
89
+ return value;
90
+ }
91
+ return `'${value.replace(/'/g, `'\\''`)}'`;
92
+ }
93
+
94
+ function quoteSystemdArg(arg) {
95
+ return `"${String(arg).replace(/(["\\$`])/g, '\\$1')}"`;
96
+ }
97
+
98
+ export function resolveDaemonCliEntryPath(context = {}) {
99
+ const appRoot = context.appRoot || process.cwd();
100
+ const explicitCliEntry = context.cliEntry ? path.resolve(context.cliEntry) : null;
101
+ const argvCliEntry = process.argv[1] ? path.resolve(process.argv[1]) : null;
102
+ const distCliEntry = path.join(appRoot, 'dist-server', 'server', 'cli.js');
103
+ const sourceCliEntry = path.join(appRoot, 'server', 'cli.js');
104
+ const normalizeCliCandidate = (candidate) => {
105
+ if (!candidate) return null;
106
+ const resolved = path.resolve(candidate);
107
+ if (resolved === sourceCliEntry && fs.existsSync(distCliEntry)) {
108
+ return distCliEntry;
109
+ }
110
+ return resolved;
111
+ };
112
+ const candidatePaths = [
113
+ normalizeCliCandidate(explicitCliEntry),
114
+ normalizeCliCandidate(argvCliEntry),
115
+ distCliEntry,
116
+ sourceCliEntry,
117
+ ].filter(Boolean);
118
+
119
+ const existingPath = candidatePaths.find(candidate => fs.existsSync(candidate));
120
+ if (existingPath) {
121
+ return existingPath;
122
+ }
123
+
124
+ return normalizeCliCandidate(explicitCliEntry) || normalizeCliCandidate(argvCliEntry) || distCliEntry;
125
+ }
126
+
127
+ function hasPixcodeBinary() {
128
+ if (pixcodeBinaryAvailableCache !== null) {
129
+ return pixcodeBinaryAvailableCache;
130
+ }
131
+
132
+ const probe = runCommand('pixcode', ['--version']);
133
+ pixcodeBinaryAvailableCache = probe.status === 0;
134
+ return pixcodeBinaryAvailableCache;
135
+ }
136
+
137
+ function getDaemonCommandPrefix(context = {}, { forceLocal = false } = {}) {
138
+ if (!forceLocal && hasPixcodeBinary()) {
139
+ return 'pixcode';
140
+ }
141
+
142
+ const nodeExec = context.nodeExecPath || process.execPath || 'node';
143
+ const cliEntry = resolveDaemonCliEntryPath(context);
144
+ return `${quoteShellArg(nodeExec)} ${quoteShellArg(cliEntry)}`;
145
+ }
146
+
147
+ export function buildDaemonCliCommand({ subcommand, mode = 'system', extraArgs = [] }, context = {}) {
148
+ const normalizedSubcommand = String(subcommand || 'status').trim() || 'status';
149
+ const normalizedMode = String(mode || 'system').trim() || 'system';
150
+ const args = ['daemon', normalizedSubcommand, '--mode', normalizedMode, ...extraArgs.map(value => String(value))];
151
+ const needsSudo =
152
+ normalizedMode === 'system' &&
153
+ SYSTEM_MUTATING_DAEMON_SUBCOMMANDS.has(normalizedSubcommand) &&
154
+ !isRootUser();
155
+ const prefix = getDaemonCommandPrefix(context, { forceLocal: needsSudo });
156
+ const command = `${prefix} ${args.map(quoteShellArg).join(' ')}`;
157
+ return needsSudo ? `sudo ${command}` : command;
158
+ }
159
+
160
+ function getDaemonServicePath(mode) {
161
+ return mode === 'system' ? DAEMON_SYSTEM_SERVICE_PATH : DAEMON_USER_SERVICE_PATH;
162
+ }
163
+
164
+ function getFrontendServicePath(mode) {
165
+ return mode === 'system' ? FRONTEND_DAEMON_SYSTEM_SERVICE_PATH : FRONTEND_DAEMON_USER_SERVICE_PATH;
166
+ }
167
+
168
+ function getSystemctlArgs(mode, commandArgs) {
169
+ return mode === 'user' ? ['--user', ...commandArgs] : commandArgs;
170
+ }
171
+
172
+ function getJournalctlArgs(mode, commandArgs) {
173
+ return mode === 'user' ? ['--user', ...commandArgs] : commandArgs;
174
+ }
175
+
176
+ function parseDaemonArgs(args) {
177
+ const parsed = {
178
+ subcommand: 'status',
179
+ options: {
180
+ mode: 'system',
181
+ },
182
+ };
183
+
184
+ let i = 0;
185
+ if (args[0] && DAEMON_SUBCOMMANDS.has(args[0])) {
186
+ parsed.subcommand = args[0];
187
+ i = 1;
188
+ }
189
+
190
+ for (; i < args.length; i++) {
191
+ const arg = args[i];
192
+ if (arg === '--port' || arg === '-p') {
193
+ parsed.options.serverPort = args[++i];
194
+ } else if (arg.startsWith('--port=')) {
195
+ parsed.options.serverPort = arg.split('=')[1];
196
+ } else if (arg === '--frontend-port') {
197
+ parsed.options.frontendPort = args[++i];
198
+ } else if (arg.startsWith('--frontend-port=')) {
199
+ parsed.options.frontendPort = arg.split('=')[1];
200
+ } else if (arg === '--no-frontend' || arg === '--single-port') {
201
+ parsed.options.noFrontend = true;
202
+ } else if (arg === '--mode' || arg === '-m') {
203
+ parsed.options.mode = (args[++i] || '').toLowerCase();
204
+ } else if (arg.startsWith('--mode=')) {
205
+ parsed.options.mode = (arg.split('=')[1] || '').toLowerCase();
206
+ } else if (arg === '--database-path') {
207
+ parsed.options.databasePath = args[++i];
208
+ } else if (arg.startsWith('--database-path=')) {
209
+ parsed.options.databasePath = arg.split('=')[1];
210
+ } else if (arg === '--help' || arg === '-h') {
211
+ parsed.subcommand = 'help';
212
+ } else {
213
+ parsed.options.extraArgs = parsed.options.extraArgs || [];
214
+ parsed.options.extraArgs.push(arg);
215
+ }
216
+ }
217
+
218
+ return parsed;
219
+ }
220
+
221
+ function buildDaemonExecStart({ appRoot, serverPort, databasePath, nodeExecPath, cliEntry }) {
222
+ const nodeExec = nodeExecPath || process.execPath || 'node';
223
+ const resolvedCliEntry = resolveDaemonCliEntryPath({ appRoot, cliEntry });
224
+
225
+ const args = [nodeExec, resolvedCliEntry, 'start', '--port', String(serverPort)];
226
+ if (databasePath) {
227
+ args.push('--database-path', databasePath);
228
+ }
229
+
230
+ return args.map(quoteSystemdArg).join(' ');
231
+ }
232
+
233
+ function buildDaemonServiceUnit({ appRoot, serverPort, databasePath, nodeExecPath, cliEntry }) {
234
+ const execStart = buildDaemonExecStart({
235
+ appRoot,
236
+ serverPort,
237
+ databasePath,
238
+ nodeExecPath,
239
+ cliEntry,
240
+ });
241
+ return `[Unit]
242
+ Description=Pixcode Server
243
+ After=network.target
244
+
245
+ [Service]
246
+ Type=simple
247
+ WorkingDirectory=${appRoot}
248
+ ExecStart=${execStart}
249
+ Environment=HOST=0.0.0.0
250
+ Environment=CI=true
251
+ Environment=PIXCODE_DAEMON_MANAGED=1
252
+ Restart=always
253
+ RestartSec=2
254
+
255
+ [Install]
256
+ WantedBy=default.target
257
+ `;
258
+ }
259
+
260
+ function resolveFrontendDaemonEntry(appRoot, cliEntry) {
261
+ const cliCandidate = cliEntry
262
+ ? path.resolve(cliEntry)
263
+ : (process.argv[1] ? path.resolve(process.argv[1]) : '');
264
+ const candidates = [];
265
+ if (cliCandidate) {
266
+ candidates.push(path.join(path.dirname(cliCandidate), 'vite-daemon.js'));
267
+ }
268
+ candidates.push(path.join(appRoot, 'dist-server', 'server', 'vite-daemon.js'));
269
+ candidates.push(path.join(appRoot, 'server', 'vite-daemon.js'));
270
+
271
+ const resolved = candidates.find(candidate => fs.existsSync(candidate));
272
+ if (!resolved) {
273
+ throw new Error(
274
+ `Frontend daemon entry was not found. Checked: ${candidates.join(', ')}. ` +
275
+ `Run "npm run build:server" or ensure server/vite-daemon.js exists.`
276
+ );
277
+ }
278
+ return resolved;
279
+ }
280
+
281
+ function buildFrontendDaemonExecStart({ appRoot, frontendPort, nodeExecPath, cliEntry }) {
282
+ const nodeExec = nodeExecPath || process.execPath || 'node';
283
+ const frontendEntry = resolveFrontendDaemonEntry(appRoot, cliEntry);
284
+ const args = [
285
+ nodeExec,
286
+ frontendEntry,
287
+ '--host',
288
+ '0.0.0.0',
289
+ '--port',
290
+ String(frontendPort),
291
+ '--strictPort',
292
+ ];
293
+ return args.map(quoteSystemdArg).join(' ');
294
+ }
295
+
296
+ function buildFrontendDaemonServiceUnit({ appRoot, frontendPort, nodeExecPath, cliEntry }) {
297
+ const execStart = buildFrontendDaemonExecStart({
298
+ appRoot,
299
+ frontendPort,
300
+ nodeExecPath,
301
+ cliEntry,
302
+ });
303
+ return `[Unit]
304
+ Description=Pixcode Frontend (Vite Dev Server)
305
+ After=network.target
306
+
307
+ [Service]
308
+ Type=simple
309
+ WorkingDirectory=${appRoot}
310
+ ExecStart=${execStart}
311
+ Environment=HOST=0.0.0.0
312
+ Environment=CI=true
313
+ Environment=PIXCODE_DAEMON_MANAGED=1
314
+ Restart=always
315
+ RestartSec=2
316
+
317
+ [Install]
318
+ WantedBy=default.target
319
+ `;
320
+ }
321
+
322
+ function normalizeState(value) {
323
+ const text = (value || '').trim();
324
+ if (!text) return 'unknown';
325
+ if (/No such file or directory/i.test(text)) return 'not-found';
326
+ return text;
327
+ }
328
+
329
+ function getServiceState(mode, serviceName) {
330
+ const activeRes = runCommand('systemctl', getSystemctlArgs(mode, ['is-active', serviceName]));
331
+ const enabledRes = runCommand('systemctl', getSystemctlArgs(mode, ['is-enabled', serviceName]));
332
+
333
+ return {
334
+ active: normalizeState(activeRes.stdout || activeRes.stderr),
335
+ enabled: normalizeState(enabledRes.stdout || enabledRes.stderr),
336
+ };
337
+ }
338
+
339
+ function readLogs(mode, lines = 100, inherit = false, serviceNames = [DAEMON_SERVICE_NAME]) {
340
+ const unitArgs = serviceNames.flatMap((serviceName) => ['-u', serviceName]);
341
+ const args = [...getJournalctlArgs(mode, unitArgs), '-n', String(lines), '--no-pager'];
342
+ return runCommand('journalctl', args, { inherit });
343
+ }
344
+
345
+ function getPortFromServiceUnit(servicePath) {
346
+ if (!fs.existsSync(servicePath)) return null;
347
+ try {
348
+ const content = fs.readFileSync(servicePath, 'utf8');
349
+ const quoted = content.match(/"--port"\s+"(\d+)"/);
350
+ if (quoted) return Number(quoted[1]);
351
+ const plain = content.match(/--port(?:\s+|=)(\d+)/);
352
+ if (plain) return Number(plain[1]);
353
+ } catch {
354
+ // Ignore parse errors and use fallback port.
355
+ }
356
+ return null;
357
+ }
358
+
359
+ function findLatestErrorLine(logText) {
360
+ if (!logText) return '';
361
+ const lines = logText.split('\n').map(line => line.trim()).filter(Boolean);
362
+ const errorLine = [...lines].reverse().find(line => /(error|failed|exception|denied|cannot|traceback)/i.test(line));
363
+ return errorLine || '';
364
+ }
365
+
366
+ function probeUserBus() {
367
+ const result = runCommand('systemctl', ['--user', 'show-environment']);
368
+ return {
369
+ ok: result.status === 0,
370
+ detail: extractCommandError(result, 'systemd user bus is not reachable'),
371
+ };
372
+ }
373
+
374
+ function probeLinger() {
375
+ const result = runCommand('loginctl', ['show-user', os.userInfo().username, '-p', 'Linger']);
376
+ if (result.status !== 0) {
377
+ return {
378
+ value: 'unknown',
379
+ detail: extractCommandError(result, 'Could not read linger status'),
380
+ };
381
+ }
382
+ const output = (result.stdout || '').trim();
383
+ const value = output.includes('=') ? output.split('=')[1].trim().toLowerCase() : output.toLowerCase();
384
+ return {
385
+ value: value || 'unknown',
386
+ detail: '',
387
+ };
388
+ }
389
+
390
+ function resolveDaemonMode({ requestedMode, subcommand, userBusAvailable }) {
391
+ if (requestedMode !== 'auto') {
392
+ return requestedMode;
393
+ }
394
+
395
+ // Auto mode is intentionally system-first to guarantee boot-time startup
396
+ // even without an interactive user session.
397
+ const systemUnitInstalled = fs.existsSync(getDaemonServicePath('system'));
398
+ const userUnitInstalled = fs.existsSync(getDaemonServicePath('user'));
399
+
400
+ if (systemUnitInstalled) return 'system';
401
+ if (subcommand === 'install') return 'system';
402
+ if (userUnitInstalled && userBusAvailable) return 'user';
403
+ return 'system';
404
+ }
405
+
406
+ function runSystemctl(mode, commandArgs, opts = {}) {
407
+ const result = runCommand('systemctl', getSystemctlArgs(mode, commandArgs), { inherit: opts.inherit });
408
+ if (result.status !== 0 && !opts.allowFailure) {
409
+ let errorText = extractCommandError(result, `systemctl ${commandArgs.join(' ')} failed`);
410
+ if (mode === 'system' && /(access denied|permission denied|must be root|interactive authentication required|not permitted)/i.test(errorText)) {
411
+ errorText += '\nTry rerunning this daemon operation with elevated privileges (sudo).';
412
+ }
413
+ throw new Error(errorText);
414
+ }
415
+ return result;
416
+ }
417
+
418
+ async function sleep(ms) {
419
+ await new Promise(resolve => setTimeout(resolve, ms));
420
+ }
421
+
422
+ async function isPortReachable(port, timeoutMs = 1000) {
423
+ return await new Promise(resolve => {
424
+ const socket = net.createConnection({ host: '127.0.0.1', port: Number(port) });
425
+ let settled = false;
426
+ const done = (value) => {
427
+ if (settled) return;
428
+ settled = true;
429
+ socket.destroy();
430
+ resolve(value);
431
+ };
432
+ socket.setTimeout(timeoutMs);
433
+ socket.once('connect', () => done(true));
434
+ socket.once('timeout', () => done(false));
435
+ socket.once('error', () => done(false));
436
+ });
437
+ }
438
+
439
+ async function requestHealthOnce(port, timeoutMs = DAEMON_HEALTH_REQUEST_TIMEOUT_MS) {
440
+ return await new Promise((resolve, reject) => {
441
+ const req = request({
442
+ host: '127.0.0.1',
443
+ port: Number(port),
444
+ method: 'GET',
445
+ path: '/health',
446
+ timeout: timeoutMs,
447
+ }, (res) => {
448
+ res.resume();
449
+ resolve({ ok: true, statusCode: res.statusCode });
450
+ });
451
+
452
+ req.on('timeout', () => req.destroy(new Error(`Health check timed out after ${timeoutMs}ms`)));
453
+ req.on('error', reject);
454
+ req.end();
455
+ });
456
+ }
457
+
458
+ async function waitForHealth(port, timeoutMs = DAEMON_HEALTH_TIMEOUT_MS) {
459
+ const deadline = Date.now() + timeoutMs;
460
+ let lastError = null;
461
+ while (Date.now() < deadline) {
462
+ try {
463
+ return await requestHealthOnce(port);
464
+ } catch (error) {
465
+ lastError = error;
466
+ if (await isPortReachable(port, 700)) {
467
+ return { ok: true, statusCode: null, probe: 'tcp' };
468
+ }
469
+ await sleep(DAEMON_HEALTH_RETRY_INTERVAL_MS);
470
+ }
471
+ }
472
+ throw new Error(lastError?.message || `Service did not become healthy on port ${port}`);
473
+ }
474
+
475
+ async function healthCheckOrThrow(mode, serviceName, port, c) {
476
+ const state = getServiceState(mode, serviceName);
477
+ if (state.active !== 'active' && state.active !== 'activating') {
478
+ throw new Error(`Service ${serviceName} is not active (state: ${state.active})`);
479
+ }
480
+
481
+ try {
482
+ const health = await waitForHealth(port);
483
+ if (health.probe === 'tcp') {
484
+ console.log(`${c.warn('[WARN]')} HTTP /health probe delayed; TCP port ${port} is already accepting connections.`);
485
+ }
486
+ } catch (healthError) {
487
+ const logsResult = readLogs(mode, 50, false, [serviceName]);
488
+ const logText = (logsResult.stdout || logsResult.stderr || '').trim();
489
+ const lastErrorLine = findLatestErrorLine(logText);
490
+
491
+ if (logText) {
492
+ console.log(`\n${c.warn('[WARN]')} Last 50 log lines for ${serviceName}:`);
493
+ console.log(logText);
494
+ }
495
+
496
+ if (lastErrorLine) {
497
+ throw new Error(`Health check failed for ${serviceName}: ${healthError.message}\nLikely cause: ${lastErrorLine}`);
498
+ }
499
+ throw new Error(`Health check failed for ${serviceName}: ${healthError.message}`);
500
+ }
501
+ }
502
+
503
+ function ensureLinux() {
504
+ if (process.platform !== 'linux') {
505
+ throw new Error('The daemon command is supported on Linux only.');
506
+ }
507
+ }
508
+
509
+ function ensureSystemctl() {
510
+ const probe = runCommand('systemctl', ['--version']);
511
+ if (probe.status !== 0) {
512
+ throw new Error(extractCommandError(probe, 'systemctl is not available in this environment'));
513
+ }
514
+ }
515
+
516
+ function showDaemonHelp(c, context = {}) {
517
+ const usagePrefix = getDaemonCommandPrefix(context);
518
+ const installExample = buildDaemonCliCommand(
519
+ {
520
+ subcommand: 'install',
521
+ mode: 'system',
522
+ extraArgs: ['--port', '3001', '--single-port'],
523
+ },
524
+ context
525
+ );
526
+ const statusExample = buildDaemonCliCommand({ subcommand: 'status', mode: 'system' }, context);
527
+ const doctorExample = buildDaemonCliCommand({ subcommand: 'doctor', mode: 'auto' }, context);
528
+ const logsExample = buildDaemonCliCommand({ subcommand: 'logs', mode: 'system' }, context);
529
+ console.log(`
530
+ ${c.bright('Pixcode Daemon')} - Persistent Linux service manager
531
+
532
+ Usage:
533
+ ${usagePrefix} daemon [subcommand] [options]
534
+
535
+ Subcommands:
536
+ ${c.bright('install')} Install/update unit, reload daemon, enable and start now
537
+ ${c.bright('start')} Start the service
538
+ ${c.bright('stop')} Stop the service (temporary; auto-start remains enabled)
539
+ ${c.bright('restart')} Restart the service
540
+ ${c.bright('status')} Show active/enabled state
541
+ ${c.bright('logs')} Show recent service logs
542
+ ${c.bright('enable')} Enable auto-start at boot
543
+ ${c.bright('disable')} Disable auto-start at boot
544
+ ${c.bright('uninstall')} Stop, disable, and remove the service unit
545
+ ${c.bright('doctor')} Run diagnostics (bus, linger, units, state, port, logs)
546
+ ${c.bright('help')} Show this help
547
+
548
+ Options:
549
+ -p, --port <port> Set service server port (default: 3001)
550
+ --frontend-port <port> Start a separate frontend Vite service on this port (legacy/dev)
551
+ --single-port, --no-frontend
552
+ Serve the built UI from the backend port only (default)
553
+ -m, --mode <mode> Service mode: user | system | auto (default: system)
554
+ --database-path <path> Set service database path
555
+
556
+ Examples:
557
+ $ ${installExample}
558
+ $ ${statusExample}
559
+ $ ${doctorExample}
560
+ $ ${logsExample}
561
+ `);
562
+ }
563
+
564
+ export function hasInstalledDaemonUnit() {
565
+ return (
566
+ fs.existsSync(DAEMON_USER_SERVICE_PATH) ||
567
+ fs.existsSync(DAEMON_SYSTEM_SERVICE_PATH) ||
568
+ fs.existsSync(FRONTEND_DAEMON_USER_SERVICE_PATH) ||
569
+ fs.existsSync(FRONTEND_DAEMON_SYSTEM_SERVICE_PATH)
570
+ );
571
+ }
572
+
573
+ export async function handleDaemonCommand(args, context = {}) {
574
+ const c = getColorHelpers(context.color);
575
+ const parsed = parseDaemonArgs(args);
576
+ const appRoot = context.appRoot || process.cwd();
577
+ const daemonCommandContext = {
578
+ appRoot,
579
+ cliEntry: context.cliEntry,
580
+ nodeExecPath: context.nodeExecPath,
581
+ };
582
+
583
+ if (parsed.options.extraArgs?.length) {
584
+ showDaemonHelp(c, daemonCommandContext);
585
+ throw new Error(`Unknown daemon arguments: ${parsed.options.extraArgs.join(' ')}`);
586
+ }
587
+
588
+ if (parsed.subcommand === 'help') {
589
+ showDaemonHelp(c, daemonCommandContext);
590
+ return;
591
+ }
592
+
593
+ if (!DAEMON_MODES.has(parsed.options.mode)) {
594
+ throw new Error(`Invalid daemon mode "${parsed.options.mode}". Use one of: auto, user, system.`);
595
+ }
596
+
597
+ ensureLinux();
598
+ ensureSystemctl();
599
+
600
+ const defaultPort = context.defaultPort || process.env.SERVER_PORT || process.env.PORT || '3001';
601
+ const defaultFrontendPort = context.defaultFrontendPort || process.env.VITE_PORT || String(DEFAULT_FRONTEND_PORT);
602
+ const configuredPort = parsed.options.serverPort || defaultPort;
603
+ const configuredFrontendPort = parsed.options.frontendPort || defaultFrontendPort;
604
+ const frontendEnabled = parsed.options.noFrontend !== true &&
605
+ (Boolean(parsed.options.frontendPort) || process.env.PIXCODE_SEPARATE_FRONTEND === '1');
606
+ const databasePath = parsed.options.databasePath || process.env.DATABASE_PATH || '';
607
+
608
+ const portNum = Number(configuredPort);
609
+ if (!Number.isInteger(portNum) || portNum < 1 || portNum > 65535) {
610
+ throw new Error(`Invalid port "${configuredPort}". Expected an integer between 1 and 65535.`);
611
+ }
612
+ const frontendPortNum = Number(configuredFrontendPort);
613
+ if (frontendEnabled && (!Number.isInteger(frontendPortNum) || frontendPortNum < 1 || frontendPortNum > 65535)) {
614
+ throw new Error(`Invalid frontend port "${configuredFrontendPort}". Expected an integer between 1 and 65535.`);
615
+ }
616
+
617
+ const userBus = probeUserBus();
618
+ const mode = resolveDaemonMode({
619
+ requestedMode: parsed.options.mode,
620
+ subcommand: parsed.subcommand,
621
+ userBusAvailable: userBus.ok,
622
+ });
623
+ const servicePath = getDaemonServicePath(mode);
624
+ const frontendServicePath = getFrontendServicePath(mode);
625
+ const effectivePort = getPortFromServiceUnit(servicePath) || portNum;
626
+ const effectiveFrontendPort = getPortFromServiceUnit(frontendServicePath) || frontendPortNum;
627
+
628
+ if (mode === 'user' && !userBus.ok) {
629
+ const installSystemCommand = buildDaemonCliCommand(
630
+ { subcommand: 'install', mode: 'system' },
631
+ daemonCommandContext
632
+ );
633
+ throw new Error(
634
+ `Could not connect to your systemd user session.\n${userBus.detail}\n` +
635
+ `Try ${c.bright(installSystemCommand)} or enable user linger: ${c.bright(`sudo loginctl enable-linger ${os.userInfo().username}`)}`
636
+ );
637
+ }
638
+
639
+ if (parsed.subcommand === 'doctor') {
640
+ const linger = probeLinger();
641
+ const userUnitInstalled = fs.existsSync(getDaemonServicePath('user'));
642
+ const userFrontendUnitInstalled = fs.existsSync(getFrontendServicePath('user'));
643
+ const systemUnitInstalled = fs.existsSync(getDaemonServicePath('system'));
644
+ const systemFrontendUnitInstalled = fs.existsSync(getFrontendServicePath('system'));
645
+ const selectedModePort = getPortFromServiceUnit(servicePath) || portNum;
646
+ const selectedModeFrontendPort = frontendEnabled
647
+ ? getPortFromServiceUnit(frontendServicePath) || frontendPortNum
648
+ : undefined;
649
+ const portReachable = await isPortReachable(selectedModePort);
650
+ const frontendPortReachable = selectedModeFrontendPort
651
+ ? await isPortReachable(selectedModeFrontendPort)
652
+ : false;
653
+ const userState = userBus.ok
654
+ ? {
655
+ backend: getServiceState('user', DAEMON_SERVICE_NAME),
656
+ frontend: getServiceState('user', FRONTEND_DAEMON_SERVICE_NAME),
657
+ }
658
+ : {
659
+ backend: { active: 'unavailable', enabled: 'unavailable' },
660
+ frontend: { active: 'unavailable', enabled: 'unavailable' },
661
+ };
662
+ const systemState = {
663
+ backend: getServiceState('system', DAEMON_SERVICE_NAME),
664
+ frontend: getServiceState('system', FRONTEND_DAEMON_SERVICE_NAME),
665
+ };
666
+ const logsResult = readLogs(mode, 50, false, [DAEMON_SERVICE_NAME, FRONTEND_DAEMON_SERVICE_NAME]);
667
+ const logsText = (logsResult.stdout || logsResult.stderr || '').trim();
668
+ const lastErrorLine = findLatestErrorLine(logsText);
669
+
670
+ console.log(`\n${c.bright('Pixcode Daemon Doctor')}\n`);
671
+ console.log(`${c.info('[INFO]')} Requested mode: ${c.bright(parsed.options.mode)}`);
672
+ console.log(`${c.info('[INFO]')} Resolved mode: ${c.bright(mode)}`);
673
+ console.log(`${c.info('[INFO]')} user-bus: ${userBus.ok ? c.ok('ok') : c.warn('unavailable')}`);
674
+ if (!userBus.ok) {
675
+ console.log(` ${c.dim(userBus.detail)}`);
676
+ }
677
+ console.log(`${c.info('[INFO]')} linger: ${c.bright(linger.value)}${linger.detail ? ` ${c.dim(`(${linger.detail})`)}` : ''}`);
678
+ console.log(`${c.info('[INFO]')} user backend: ${userUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getDaemonServicePath('user'))})`);
679
+ console.log(`${c.info('[INFO]')} user frontend: ${userFrontendUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getFrontendServicePath('user'))})`);
680
+ console.log(`${c.info('[INFO]')} system backend: ${systemUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getDaemonServicePath('system'))})`);
681
+ console.log(`${c.info('[INFO]')} system frontend:${systemFrontendUnitInstalled ? c.ok('installed') : c.warn('missing')} (${c.dim(getFrontendServicePath('system'))})`);
682
+ console.log(`${c.info('[INFO]')} user state: backend active=${c.bright(userState.backend.active)} enabled=${c.bright(userState.backend.enabled)} | frontend active=${c.bright(userState.frontend.active)} enabled=${c.bright(userState.frontend.enabled)}`);
683
+ console.log(`${c.info('[INFO]')} system state: backend active=${c.bright(systemState.backend.active)} enabled=${c.bright(systemState.backend.enabled)} | frontend active=${c.bright(systemState.frontend.active)} enabled=${c.bright(systemState.frontend.enabled)}`);
684
+ console.log(`${c.info('[INFO]')} backend port: ${c.bright(String(selectedModePort))} (${portReachable ? c.ok('reachable') : c.warn('not reachable')})`);
685
+ console.log(`${c.info('[INFO]')} frontend mode: ${frontendEnabled ? c.bright('separate Vite service') : c.bright('single backend port')}`);
686
+ if (frontendEnabled) {
687
+ console.log(`${c.info('[INFO]')} frontend port: ${c.bright(String(selectedModeFrontendPort))} (${frontendPortReachable ? c.ok('reachable') : c.warn('not reachable')})`);
688
+ }
689
+ if (lastErrorLine) {
690
+ console.log(`${c.warn('[WARN]')} Latest error: ${lastErrorLine}`);
691
+ }
692
+
693
+ console.log(`\n${c.bright('Machine Readable')}`);
694
+ console.log(`MODE_REQUESTED=${parsed.options.mode}`);
695
+ console.log(`MODE_RESOLVED=${mode}`);
696
+ console.log(`USER_BUS_OK=${userBus.ok}`);
697
+ console.log(`LINGER=${linger.value}`);
698
+ console.log(`USER_BACKEND_UNIT_INSTALLED=${userUnitInstalled}`);
699
+ console.log(`USER_FRONTEND_UNIT_INSTALLED=${userFrontendUnitInstalled}`);
700
+ console.log(`SYSTEM_BACKEND_UNIT_INSTALLED=${systemUnitInstalled}`);
701
+ console.log(`SYSTEM_FRONTEND_UNIT_INSTALLED=${systemFrontendUnitInstalled}`);
702
+ console.log(`USER_BACKEND_ACTIVE=${userState.backend.active}`);
703
+ console.log(`USER_BACKEND_ENABLED=${userState.backend.enabled}`);
704
+ console.log(`USER_FRONTEND_ACTIVE=${userState.frontend.active}`);
705
+ console.log(`USER_FRONTEND_ENABLED=${userState.frontend.enabled}`);
706
+ console.log(`SYSTEM_BACKEND_ACTIVE=${systemState.backend.active}`);
707
+ console.log(`SYSTEM_BACKEND_ENABLED=${systemState.backend.enabled}`);
708
+ console.log(`SYSTEM_FRONTEND_ACTIVE=${systemState.frontend.active}`);
709
+ console.log(`SYSTEM_FRONTEND_ENABLED=${systemState.frontend.enabled}`);
710
+ console.log(`BACKEND_PORT=${selectedModePort}`);
711
+ console.log(`BACKEND_PORT_REACHABLE=${portReachable}`);
712
+ console.log(`FRONTEND_ENABLED=${frontendEnabled}`);
713
+ console.log(`FRONTEND_PORT=${selectedModeFrontendPort ?? ''}`);
714
+ console.log(`FRONTEND_PORT_REACHABLE=${frontendPortReachable}`);
715
+ console.log(`LAST_ERROR_LINE=${JSON.stringify(lastErrorLine || '')}\n`);
716
+ return;
717
+ }
718
+
719
+ const serviceDefs = [{ servicePath }];
720
+ if (frontendEnabled) {
721
+ serviceDefs.push({ servicePath: frontendServicePath });
722
+ }
723
+
724
+ switch (parsed.subcommand) {
725
+ case 'install': {
726
+ if (parsed.options.mode === 'auto' && mode === 'system' && !userBus.ok) {
727
+ console.log(`${c.warn('[WARN]')} User mode is unavailable; auto mode is falling back to system mode.`);
728
+ }
729
+
730
+ try {
731
+ fs.mkdirSync(path.dirname(servicePath), { recursive: true });
732
+ if (frontendEnabled) {
733
+ fs.mkdirSync(path.dirname(frontendServicePath), { recursive: true });
734
+ }
735
+
736
+ const backendUnitContent = buildDaemonServiceUnit({
737
+ appRoot,
738
+ serverPort: portNum,
739
+ databasePath,
740
+ nodeExecPath: context.nodeExecPath,
741
+ cliEntry: context.cliEntry,
742
+ });
743
+ fs.writeFileSync(servicePath, backendUnitContent, 'utf8');
744
+
745
+ if (frontendEnabled) {
746
+ const frontendUnitContent = buildFrontendDaemonServiceUnit({
747
+ appRoot,
748
+ frontendPort: frontendPortNum,
749
+ nodeExecPath: context.nodeExecPath,
750
+ cliEntry: context.cliEntry,
751
+ });
752
+ fs.writeFileSync(frontendServicePath, frontendUnitContent, 'utf8');
753
+ }
754
+ } catch (fileError) {
755
+ if (mode === 'system' && (fileError.code === 'EACCES' || fileError.code === 'EPERM')) {
756
+ const installHint = buildDaemonCliCommand(
757
+ {
758
+ subcommand: 'install',
759
+ mode: 'system',
760
+ extraArgs: frontendEnabled
761
+ ? ['--port', String(portNum), '--frontend-port', String(frontendPortNum)]
762
+ : ['--port', String(portNum), '--single-port'],
763
+ },
764
+ daemonCommandContext
765
+ );
766
+ throw new Error(
767
+ `Permission denied writing daemon unit files (${servicePath}, ${frontendServicePath}). ` +
768
+ `Try: ${installHint}`
769
+ );
770
+ }
771
+ throw fileError;
772
+ }
773
+
774
+ runSystemctl(mode, ['daemon-reload']);
775
+ runSystemctl(mode, ['enable', '--now', DAEMON_SERVICE_NAME]);
776
+ if (frontendEnabled) {
777
+ runSystemctl(mode, ['enable', '--now', FRONTEND_DAEMON_SERVICE_NAME]);
778
+ } else {
779
+ runSystemctl(mode, ['stop', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
780
+ runSystemctl(mode, ['disable', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
781
+ }
782
+
783
+ if (mode === 'user') {
784
+ const lingerResult = runCommand('loginctl', ['enable-linger', os.userInfo().username]);
785
+ if (lingerResult.status !== 0) {
786
+ console.log(`${c.warn('[WARN]')} Could not enable linger automatically.`);
787
+ console.log(` ${c.dim(extractCommandError(lingerResult, 'Unknown linger error'))}`);
788
+ console.log(` ${c.tip('[TIP]')} Run with sufficient privileges: ${c.bright(`sudo loginctl enable-linger ${os.userInfo().username}`)}`);
789
+ }
790
+ }
791
+
792
+ const installedPort = getPortFromServiceUnit(servicePath) || portNum;
793
+ await healthCheckOrThrow(mode, DAEMON_SERVICE_NAME, installedPort, c);
794
+ const installedFrontendPort = frontendEnabled
795
+ ? getPortFromServiceUnit(frontendServicePath) || frontendPortNum
796
+ : undefined;
797
+ if (frontendEnabled && installedFrontendPort) {
798
+ await healthCheckOrThrow(mode, FRONTEND_DAEMON_SERVICE_NAME, installedFrontendPort, c);
799
+ }
800
+
801
+ const backendState = getServiceState(mode, DAEMON_SERVICE_NAME);
802
+ const frontendState = frontendEnabled
803
+ ? getServiceState(mode, FRONTEND_DAEMON_SERVICE_NAME)
804
+ : { active: 'disabled', enabled: 'disabled' };
805
+ console.log(`\n${c.ok('✔')} Daemon installed and started.`);
806
+ console.log(` Mode: ${c.bright(mode)}`);
807
+ console.log(` Backend Unit: ${c.dim(servicePath)}`);
808
+ console.log(` Frontend Mode: ${c.bright(frontendEnabled ? 'separate service' : 'single backend port')}`);
809
+ console.log(` Backend Active: ${c.bright(backendState.active)}`);
810
+ console.log(` Backend Enabled:${c.bright(backendState.enabled)}`);
811
+ console.log(` Backend URL: ${c.bright(`http://localhost:${installedPort}`)}`);
812
+ if (frontendEnabled) {
813
+ console.log(` Frontend Unit: ${c.dim(frontendServicePath)}`);
814
+ console.log(` Frontend Active:${c.bright(frontendState.active)}`);
815
+ console.log(` Frontend Enabled:${c.bright(frontendState.enabled)}`);
816
+ console.log(` Frontend URL: ${c.bright(`http://localhost:${installedFrontendPort}`)}`);
817
+ }
818
+ console.log('');
819
+ if (mode === 'system') {
820
+ const statusCommand = buildDaemonCliCommand(
821
+ { subcommand: 'status', mode: 'system' },
822
+ daemonCommandContext
823
+ );
824
+ const stopCommand = buildDaemonCliCommand(
825
+ { subcommand: 'stop', mode: 'system' },
826
+ daemonCommandContext
827
+ );
828
+ const logsCommand = buildDaemonCliCommand(
829
+ { subcommand: 'logs', mode: 'system' },
830
+ daemonCommandContext
831
+ );
832
+ console.log(`${c.ok('[OK]')} System daemon is active.`);
833
+ console.log(`${c.info('[INFO]')} Backend health: ${c.bright(`http://localhost:${installedPort}/health`)}`);
834
+ console.log(`${c.info('[INFO]')} UI: ${c.bright(`http://localhost:${installedPort}/`)}`);
835
+ console.log(`${c.info('[INFO]')} Status: ${c.bright(statusCommand)}`);
836
+ console.log(`${c.info('[INFO]')} Stop: ${c.bright(stopCommand)}`);
837
+ console.log(`${c.info('[INFO]')} Logs: ${c.bright(logsCommand)}\n`);
838
+ } else {
839
+ const linger = probeLinger();
840
+ const statusCommand = buildDaemonCliCommand(
841
+ { subcommand: 'status', mode: 'user' },
842
+ daemonCommandContext
843
+ );
844
+ const stopCommand = buildDaemonCliCommand(
845
+ { subcommand: 'stop', mode: 'user' },
846
+ daemonCommandContext
847
+ );
848
+ const logsCommand = buildDaemonCliCommand(
849
+ { subcommand: 'logs', mode: 'user' },
850
+ daemonCommandContext
851
+ );
852
+ console.log(`${c.ok('[OK]')} User daemon is active.`);
853
+ console.log(`${c.info('[INFO]')} Backend health: ${c.bright(`http://localhost:${installedPort}/health`)}`);
854
+ console.log(`${c.info('[INFO]')} UI: ${c.bright(`http://localhost:${installedPort}/`)}`);
855
+ console.log(`${c.info('[INFO]')} Status: ${c.bright(statusCommand)}`);
856
+ console.log(`${c.info('[INFO]')} Stop: ${c.bright(stopCommand)}`);
857
+ console.log(`${c.info('[INFO]')} Logs: ${c.bright(logsCommand)}`);
858
+ if (linger.value !== 'yes') {
859
+ console.log(`${c.tip('[TIP]')} Enable linger for reboot/login persistence: ${c.bright(`sudo loginctl enable-linger ${os.userInfo().username}`)}\n`);
860
+ } else {
861
+ console.log('');
862
+ }
863
+ }
864
+ break;
865
+ }
866
+
867
+ case 'start':
868
+ runSystemctl(mode, ['start', DAEMON_SERVICE_NAME]);
869
+ if (frontendEnabled) runSystemctl(mode, ['start', FRONTEND_DAEMON_SERVICE_NAME]);
870
+ await healthCheckOrThrow(mode, DAEMON_SERVICE_NAME, effectivePort, c);
871
+ if (frontendEnabled) await healthCheckOrThrow(mode, FRONTEND_DAEMON_SERVICE_NAME, effectiveFrontendPort, c);
872
+ console.log(`${c.ok('[OK]')} Pixcode service started.`);
873
+ break;
874
+
875
+ case 'stop':
876
+ runSystemctl(mode, ['stop', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
877
+ runSystemctl(mode, ['stop', DAEMON_SERVICE_NAME]);
878
+ console.log(`${c.ok('[OK]')} Pixcode service stopped (auto-start remains enabled).`);
879
+ break;
880
+
881
+ case 'restart':
882
+ runSystemctl(mode, ['restart', DAEMON_SERVICE_NAME]);
883
+ if (frontendEnabled) runSystemctl(mode, ['restart', FRONTEND_DAEMON_SERVICE_NAME]);
884
+ await healthCheckOrThrow(mode, DAEMON_SERVICE_NAME, effectivePort, c);
885
+ if (frontendEnabled) await healthCheckOrThrow(mode, FRONTEND_DAEMON_SERVICE_NAME, effectiveFrontendPort, c);
886
+ console.log(`${c.ok('[OK]')} Pixcode service restarted.`);
887
+ break;
888
+
889
+ case 'enable':
890
+ runSystemctl(mode, ['enable', DAEMON_SERVICE_NAME]);
891
+ if (frontendEnabled) runSystemctl(mode, ['enable', FRONTEND_DAEMON_SERVICE_NAME]);
892
+ console.log(`${c.ok('[OK]')} Pixcode service enabled for auto-start.`);
893
+ break;
894
+
895
+ case 'disable':
896
+ runSystemctl(mode, ['disable', DAEMON_SERVICE_NAME]);
897
+ runSystemctl(mode, ['disable', FRONTEND_DAEMON_SERVICE_NAME]);
898
+ console.log(`${c.ok('[OK]')} Pixcode service disabled for auto-start.`);
899
+ break;
900
+
901
+ case 'logs': {
902
+ const logsResult = readLogs(mode, 100, true, [DAEMON_SERVICE_NAME, FRONTEND_DAEMON_SERVICE_NAME]);
903
+ if (logsResult.status !== 0) {
904
+ throw new Error(extractCommandError(logsResult, 'Unable to read daemon logs'));
905
+ }
906
+ break;
907
+ }
908
+
909
+ case 'uninstall': {
910
+ runSystemctl(mode, ['stop', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
911
+ runSystemctl(mode, ['disable', FRONTEND_DAEMON_SERVICE_NAME], { allowFailure: true });
912
+ runSystemctl(mode, ['stop', DAEMON_SERVICE_NAME], { allowFailure: true });
913
+ runSystemctl(mode, ['disable', DAEMON_SERVICE_NAME], { allowFailure: true });
914
+
915
+ for (const def of serviceDefs) {
916
+ if (!fs.existsSync(def.servicePath)) continue;
917
+ try {
918
+ fs.unlinkSync(def.servicePath);
919
+ } catch (unlinkError) {
920
+ if (mode === 'system' && (unlinkError.code === 'EACCES' || unlinkError.code === 'EPERM')) {
921
+ const uninstallHint = buildDaemonCliCommand(
922
+ { subcommand: 'uninstall', mode: 'system' },
923
+ daemonCommandContext
924
+ );
925
+ throw new Error(`Permission denied removing ${def.servicePath}. Try: ${uninstallHint}`);
926
+ }
927
+ throw unlinkError;
928
+ }
929
+ }
930
+ runSystemctl(mode, ['daemon-reload'], { allowFailure: true });
931
+ console.log(`${c.ok('[OK]')} Backend and frontend daemons uninstalled.`);
932
+ break;
933
+ }
934
+
935
+ case 'status':
936
+ default: {
937
+ const backendState = getServiceState(mode, DAEMON_SERVICE_NAME);
938
+ const frontendState = getServiceState(mode, FRONTEND_DAEMON_SERVICE_NAME);
939
+ const backendUnitExists = fs.existsSync(servicePath);
940
+ const frontendUnitExists = fs.existsSync(frontendServicePath);
941
+ const selectedPort = getPortFromServiceUnit(servicePath) || portNum;
942
+ const selectedFrontendPort = frontendEnabled
943
+ ? getPortFromServiceUnit(frontendServicePath) || frontendPortNum
944
+ : undefined;
945
+ console.log(`\n${c.bright('Pixcode Daemon Status')}\n`);
946
+ console.log(`${c.info('[INFO]')} Mode: ${c.bright(mode)} ${parsed.options.mode === 'auto' ? c.dim('(resolved from auto)') : ''}`);
947
+ console.log(`${c.info('[INFO]')} Backend Unit: ${c.dim(servicePath)} ${backendUnitExists ? c.ok('[OK]') : c.warn('[MISSING]')}`);
948
+ console.log(`${c.info('[INFO]')} Backend Active: ${c.bright(backendState.active)}`);
949
+ console.log(`${c.info('[INFO]')} Backend Enabled:${c.bright(backendState.enabled)}`);
950
+ console.log(`${c.info('[INFO]')} Backend Port: ${c.bright(String(selectedPort))}`);
951
+ console.log(`${c.info('[INFO]')} UI URL: ${c.bright(`http://localhost:${selectedPort}/`)}`);
952
+ console.log(`${c.info('[INFO]')} Frontend Mode: ${frontendEnabled ? c.bright('separate Vite service') : c.bright('single backend port')}`);
953
+ if (frontendEnabled) {
954
+ console.log(`${c.info('[INFO]')} Frontend Unit: ${c.dim(frontendServicePath)} ${frontendUnitExists ? c.ok('[OK]') : c.warn('[MISSING]')}`);
955
+ console.log(`${c.info('[INFO]')} Frontend Active:${c.bright(frontendState.active)}`);
956
+ console.log(`${c.info('[INFO]')} Frontend Enabled:${c.bright(frontendState.enabled)}`);
957
+ console.log(`${c.info('[INFO]')} Frontend Port: ${c.bright(String(selectedFrontendPort))}`);
958
+ } else if (frontendUnitExists) {
959
+ console.log(`${c.info('[INFO]')} Legacy Frontend:${c.dim(frontendServicePath)} active=${c.bright(frontendState.active)} enabled=${c.bright(frontendState.enabled)}`);
960
+ }
961
+ console.log('');
962
+ }
963
+ }
964
+ }