railwayapp 4.54.0

Interact with Railway via CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
use std::cmp::Ordering;
use std::ffi::OsString;

use anyhow::Result;
use clap::error::ErrorKind;

mod commands;
use commands::*;
use config::Configs;
use is_terminal::IsTerminal;
use util::{check_update::UpdateCheck, compare_semver::compare_semver};

mod client;
mod config;
mod consts;
mod controllers;
mod errors;
mod gql;
mod oauth;
mod resources;
mod subscription;
mod table;
mod util;
mod workspace;

#[macro_use]
mod macros;
mod telemetry;

// Generates the commands based on the modules in the commands directory
// Specify the modules you want to include in the commands_enum! macro
commands!(
    add,
    agent,
    autoupdate,
    bucket,
    completion,
    connect,
    delete,
    deploy,
    deployment,
    dev(develop),
    domain,
    docs,
    down,
    environment(env),
    init,
    link,
    list,
    login,
    logout,
    logs,
    mcp,
    metrics,
    open,
    project,
    run(local),
    service,
    setup,
    shell,
    skills,
    ssh,
    starship,
    status,
    telemetry_cmd(telemetry),
    templates,
    unlink,
    up,
    upgrade,
    variable(variables, vars, var),
    whoami,
    volume,
    redeploy,
    restart,
    scale,
    check_updates,
    functions(function, func, fn, funcs, fns)
);

/// Groups the state needed to decide whether and how to check for / dispatch
/// a background update.
struct UpdateContext {
    known_version: Option<String>,
    auto_update_enabled: bool,
    skipped_version: Option<String>,
    check_gate_armed: bool,
}

/// Routes a pending version to the appropriate background updater.
fn try_dispatch_update(
    version: &str,
    skipped_version: Option<&str>,
    method: &util::install_method::InstallMethod,
) {
    if skipped_version == Some(version) {
        return;
    }
    if method.can_self_update() && method.can_write_binary() {
        let _ = util::self_update::spawn_background_download(version);
    } else if method.can_auto_run_package_manager() {
        let _ = util::check_update::spawn_package_manager_update(*method);
    }
}

fn spawn_update_task(
    ctx: UpdateContext,
) -> tokio::task::JoinHandle<anyhow::Result<Option<String>>> {
    tokio::spawn(async move {
        let method = util::install_method::InstallMethod::detect();

        // Safe to eagerly dispatch from cache: the gate means no API call
        // will race with a newer version during this invocation.
        if ctx.auto_update_enabled && ctx.check_gate_armed {
            if let Some(ref version) = ctx.known_version {
                try_dispatch_update(version, ctx.skipped_version.as_deref(), &method);
            }
        }

        // Skip the network check entirely when auto-update is disabled
        // and there is no TTY to show a banner on (e.g. CI / scripts).
        let (from_cache, latest_version) =
            if !ctx.auto_update_enabled && !std::io::stdout().is_terminal() {
                (ctx.known_version.is_some(), ctx.known_version)
            } else {
                match util::check_update::check_update(false).await {
                    Ok(Some(v)) => (false, Some(v)),
                    Ok(None) | Err(_) => (ctx.known_version.is_some(), ctx.known_version),
                }
            };

        if let Some(ref version) = latest_version {
            if ctx.auto_update_enabled && !from_cache {
                try_dispatch_update(version, ctx.skipped_version.as_deref(), &method);
            }
        }

        Ok(latest_version)
    })
}

fn project_command_suggestion(raw_args: &[String]) -> Option<&'static str> {
    let raw_subcommand = raw_args.iter().find(|arg| !arg.starts_with('-'))?;

    if raw_subcommand == "projects" {
        Some("I think you meant `railway project`; running that command instead.")
    } else {
        None
    }
}

/// Waits for the background update task to finish, but no longer than a
/// couple of seconds so that short-lived commands are not noticeably delayed.
/// The heavy download work runs in a detached process, so this timeout only
/// gates the fast version-check API call.
async fn handle_update_task(
    handle: Option<tokio::task::JoinHandle<anyhow::Result<Option<String>>>>,
) {
    use std::time::Duration;

    if let Some(handle) = handle {
        match tokio::time::timeout(Duration::from_secs(1), handle).await {
            Ok(Ok(Ok(_))) => {}
            Ok(Ok(Err(_))) | Ok(Err(_)) => {} // update error or task panic — non-fatal
            Err(_) => {} // timeout — the API check was slow; next invocation retries
        }
    }
}

/// Runs in a detached child process to download and stage an update.
async fn background_stage_update(version: &str) -> Result<()> {
    use util::check_update::UpdateCheck;

    let result = async {
        if telemetry::is_auto_update_disabled() {
            return Ok(());
        }

        match util::self_update::download_and_stage(version).await {
            Ok(true) => {}  // Staged successfully; cache stays until try_apply_staged() succeeds.
            Ok(false) => {} // Lock held by another process, will retry
            Err(_) => UpdateCheck::record_download_failure(),
        }
        Ok(())
    }
    .await;

    if let Ok(pid_path) = util::self_update::download_update_pid_path() {
        let _ = std::fs::remove_file(pid_path);
    }

    result
}

#[tokio::main]
async fn main() -> Result<()> {
    // Internal: detached background download spawned by a prior invocation.
    if let Ok(version) = std::env::var(consts::RAILWAY_STAGE_UPDATE_ENV) {
        return background_stage_update(&version).await;
    }

    let raw_os_args: Vec<OsString> = std::env::args_os().collect();
    let normalized_os_args = scale::normalize_legacy_scale_args(raw_os_args.clone());
    let args = build_args().try_get_matches_from(normalized_os_args);
    let is_tty = std::io::stdout().is_terminal();
    // Help, version, and parse-error paths are read-only: no staged-binary
    // apply, no background update spawn, no extra latency.
    let is_help_or_error = args.as_ref().is_err();

    // Peek at the subcommand early so we can skip the staged-update
    // apply and background updater when the user is explicitly managing
    // updates (`railway upgrade` or `railway autoupdate`).
    // Check raw args too so that help/error paths (where clap returns Err)
    // are also detected — e.g. `railway upgrade --help` should not apply
    // a staged update as a side effect.
    let raw_args: Vec<String> = raw_os_args
        .iter()
        .skip(1)
        .map(|arg| arg.to_string_lossy().into_owned())
        .collect();
    let raw_subcommand = raw_args.iter().find(|a| !a.starts_with('-')).cloned();

    let is_update_management_cmd = matches!(
        raw_subcommand.as_deref(),
        Some("upgrade" | "autoupdate" | "check_updates" | "check-updates")
    );
    // Bare `railway` and `railway help` show help — treat as read-only so
    // first-time users don't trigger update side effects.
    let is_read_only_invocation = is_help_or_error
        || raw_subcommand.is_none()
        || matches!(raw_subcommand.as_deref(), Some("help"));
    let auto_update_enabled = !telemetry::is_auto_update_disabled();

    // Non-TTY invocations are a supported path for coding agents and other
    // automated CLI users. They are allowed to refresh the update cache and
    // kick off background installs, but we keep staged-binary apply TTY-only
    // so the running binary never changes under a scripted invocation.
    let auto_applied_version =
        if auto_update_enabled && is_tty && !is_update_management_cmd && !is_read_only_invocation {
            util::self_update::try_apply_staged()
        } else {
            None
        };

    let update = UpdateCheck::read_normalized();
    let skipped_version = update.skipped_version.clone();
    let check_gate_armed = update
        .last_update_check
        .map(|t| (chrono::Utc::now() - t) < chrono::Duration::hours(12))
        .unwrap_or(false);

    // Pass any pending version to spawn_update_task so it can skip the
    // 12h short-circuit and retry a download that timed out in a
    // prior run.  The background task clears latest_version on success.
    //
    // If the running binary has already caught up to (or surpassed) the
    // cached version, clear the stale cache so spawn_update_task falls
    // through to a fresh check_update() and can discover newer releases.
    let known_pending = update.latest_version;

    // Show the "new version available" banner only for TTY users. Coding
    // agents and other non-interactive callers should still refresh update
    // state in the background, but they should not receive human-facing
    // upgrade prompts in command output.
    //
    // When auto-update is disabled via preference, we still show the banner
    // to cautious interactive users who want release visibility. Suppress it
    // when disabled via env var or CI, where extra output is noise.
    let env_or_ci_suppressed = telemetry::is_auto_update_disabled_by_env() || Configs::env_is_ci();
    if is_tty && !env_or_ci_suppressed {
        if let Some(ref latest_version) = known_pending {
            let is_skipped = skipped_version.as_deref() == Some(latest_version.as_str());
            if !is_skipped
                && matches!(
                    compare_semver(env!("CARGO_PKG_VERSION"), latest_version),
                    Ordering::Less
                )
            {
                eprintln!(
                    "{} v{} visit {} for more info",
                    "New version available:".green().bold(),
                    latest_version.yellow(),
                    "https://docs.railway.com/guides/cli".purple(),
                );
            }
        }
    }

    // Spawn the background version check for all invocations (including
    // non-TTY) so the version cache stays fresh for both humans and coding
    // agents. Non-TTY callers are a first-class auto-update path: they may
    // trigger background downloads/package-manager installs, but staged-binary
    // apply and user-facing banners remain TTY-only.
    let check_updates_handle = if is_update_management_cmd || is_read_only_invocation {
        None
    } else {
        Some(spawn_update_task(UpdateContext {
            known_version: known_pending,
            auto_update_enabled,
            skipped_version,
            check_gate_armed,
        }))
    };

    // https://github.com/clap-rs/clap/blob/cb2352f84a7663f32a89e70f01ad24446d5fa1e2/clap_builder/src/error/mod.rs#L210-L215
    let cli = match args {
        Ok(args) => args,
        // Clap's source code specifically says that these errors should be
        // printed to stdout and exit with a status of 0.
        Err(e) if e.kind() == ErrorKind::DisplayHelp || e.kind() == ErrorKind::DisplayVersion => {
            println!("{e}");
            handle_update_task(check_updates_handle).await;
            std::process::exit(0);
        }
        Err(e) => {
            eprintln!("{e}");
            handle_update_task(check_updates_handle).await;
            std::process::exit(2); // The default behavior is exit 2
        }
    };

    if let Some(suggestion) = project_command_suggestion(&raw_args) {
        eprintln!("{suggestion}");
    }

    // Commands that do not require authentication -- skip token refresh for these.
    const NO_AUTH_COMMANDS: &[&str] = &[
        "login",
        "logout",
        "completion",
        "docs",
        "setup",
        "skills",
        "upgrade",
        "autoupdate",
        "telemetry_cmd",
        "templates",
        "check_updates",
    ];

    let is_mcp_install = matches!(
        cli.subcommand(),
        Some(("mcp", mcp_matches)) if mcp_matches.subcommand_name() == Some("install")
    );

    let needs_refresh = cli
        .subcommand_name()
        .map(|cmd| !NO_AUTH_COMMANDS.contains(&cmd) && !is_mcp_install)
        .unwrap_or(false);

    if needs_refresh {
        if let Ok(mut configs) = Configs::new() {
            if let Err(e) = client::ensure_valid_token(&mut configs).await {
                eprintln!("{}: {e}", "Warning: failed to refresh OAuth token".yellow());
            }
        }
    }

    let subcommand_name = cli.subcommand_name().map(str::to_string);
    let exec_result = exec_cli(cli).await;

    // Send telemetry for silent auto-update apply (after auth is available).
    if let Some(ref version) = auto_applied_version {
        telemetry::send(telemetry::CliTrackEvent {
            command: "autoupdate_apply".to_string(),
            sub_command: Some(version.clone()),
            success: true,
            error_message: None,
            duration_ms: 0,
            cli_version: env!("CARGO_PKG_VERSION"),
            os: std::env::consts::OS,
            arch: std::env::consts::ARCH,
            is_ci: Configs::env_is_ci(),
        })
        .await;
    }

    if let Err(e) = exec_result {
        let root_cause = e.root_cause().to_string();
        if root_cause == inquire::InquireError::OperationInterrupted.to_string()
            || root_cause == inquire::InquireError::OperationCanceled.to_string()
        {
            eprintln!("Operation cancelled.");
            handle_update_task(check_updates_handle).await;
            std::process::exit(130);
        }

        eprintln!("{e:?}");

        handle_update_task(check_updates_handle).await;
        std::process::exit(1);
    }

    util::agent_advisory::maybe_show(&raw_args, subcommand_name.as_deref()).await;

    handle_update_task(check_updates_handle).await;

    Ok(())
}

#[cfg(test)]
mod cli_tests {
    use super::*;

    fn parse(args: &[&str]) -> Result<clap::ArgMatches, clap::Error> {
        let mut full_args = vec!["railway"];
        full_args.extend(args);
        let full_args = full_args.into_iter().map(OsString::from).collect();
        build_args().try_get_matches_from(scale::normalize_legacy_scale_args(full_args))
    }

    fn assert_parses(args: &[&str]) {
        assert!(
            parse(args).is_ok(),
            "Command should parse: railway {}",
            args.join(" ")
        );
    }

    fn assert_subcommand(args: &[&str], expected: &str) {
        let matches = parse(args).unwrap_or_else(|_| panic!("Failed to parse: {:?}", args));
        assert_eq!(
            matches.subcommand_name(),
            Some(expected),
            "Expected subcommand '{}' for args {:?}",
            expected,
            args
        );
    }

    mod backwards_compat {
        use super::*;

        #[test]
        fn root_commands_exist() {
            assert_subcommand(&["logs"], "logs");
            assert_subcommand(&["list"], "list");
            assert_subcommand(&["delete"], "delete");
            assert_subcommand(&["restart"], "restart");
            assert_subcommand(&["scale"], "scale");
            assert_parses(&["scale", "eu-west=2"]);
            assert_parses(&["scale", "--eu-west", "2"]);
            assert_parses(&["scale", "--service", "worker", "eu-west=2", "us-east=1"]);
            assert_parses(&["scale", "eu-west=2", "--json"]);
            assert_subcommand(&["link"], "link");
            assert_subcommand(&["up"], "up");
            assert_subcommand(&["redeploy"], "redeploy");
        }

        #[test]
        fn variable_aliases() {
            assert_subcommand(&["variable"], "variable");
            assert_subcommand(&["variables"], "variable");
            assert_subcommand(&["vars"], "variable");
            assert_subcommand(&["var"], "variable");
        }

        #[test]
        fn logs_http_flag_parses() {
            assert_parses(&["logs", "--http"]);
            assert_parses(&["logs", "--http", "--lines", "50"]);
            assert_parses(&["service", "logs", "--http"]);
        }

        #[test]
        fn logs_http_examples_parse() {
            assert_parses(&["logs", "--http", "--lines", "50"]);
            assert_parses(&[
                "logs",
                "--http",
                "--filter",
                "@path:/api/users @httpStatus:200",
            ]);
            assert_parses(&[
                "logs",
                "--http",
                "--json",
                "--filter",
                "@requestId:abcd1234",
            ]);
            assert_parses(&[
                "service",
                "logs",
                "--http",
                "--lines",
                "10",
                "--filter",
                "@httpStatus:404",
            ]);
        }

        #[test]
        fn variable_legacy_flags() {
            assert_parses(&["variable", "--set", "KEY=value"]);
            assert_parses(&["variable", "--set", "KEY=value", "--set", "KEY2=value2"]);
            assert_parses(&["variable", "-s", "myservice"]);
            assert_parses(&["variable", "-e", "production"]);
            assert_parses(&["variable", "--kv"]);
            assert_parses(&["variable", "--json"]);
            assert_parses(&["variable", "--skip-deploys", "--set", "KEY=value"]);
            assert_parses(&["variables", "--set", "KEY=value"]); // via alias
        }

        #[test]
        fn environment_implicit_link() {
            assert_parses(&["environment", "production"]); // legacy positional
            assert_parses(&["env", "production"]); // alias
        }

        #[test]
        fn service_implicit_link() {
            assert_parses(&["service"]); // prompts for link
            assert_parses(&["service", "myservice"]); // legacy positional link
        }

        #[test]
        fn functions_aliases() {
            assert_subcommand(&["functions", "list"], "functions");
            assert_subcommand(&["function", "list"], "functions");
            assert_subcommand(&["func", "list"], "functions");
            assert_subcommand(&["fn", "list"], "functions");
            assert_subcommand(&["funcs", "list"], "functions");
            assert_subcommand(&["fns", "list"], "functions");
        }

        #[test]
        fn dev_run_aliases() {
            assert_subcommand(&["dev"], "dev");
            assert_subcommand(&["develop"], "dev");
            assert_subcommand(&["run"], "run");
            assert_subcommand(&["local"], "run");
        }

        #[test]
        fn variable_set_from_stdin_legacy() {
            assert_parses(&["variable", "--set-from-stdin", "MY_KEY"]);
            assert_parses(&["variable", "--set-from-stdin", "KEY", "-s", "myservice"]);
            assert_parses(&["variable", "--set-from-stdin", "KEY", "--skip-deploys"]);
            assert_parses(&["variables", "--set-from-stdin", "KEY"]);
        }

        #[test]
        fn variable_list_kv_format() {
            assert_parses(&["variable", "--kv"]);
            assert_parses(&["variable", "-k"]);
            assert_parses(&["variables", "--kv"]);
        }
    }

    mod new_commands {
        use super::*;

        #[test]
        fn variable_subcommands() {
            assert_parses(&["variable", "list"]);
            assert_parses(&["variable", "list", "-s", "myservice"]);
            assert_parses(&["variable", "list", "--json"]);
            assert_parses(&["variable", "set", "KEY=value"]);
            assert_parses(&["variable", "set", "KEY=value", "KEY2=value2"]); // multiple
            assert_parses(&["variable", "set", "A=1", "B=2", "C=3", "--skip-deploys"]);
            assert_parses(&["variable", "set", "KEY", "--stdin"]);
            assert_parses(&["variable", "set", "KEY=value", "--skip-deploys"]);
            assert_parses(&["variable", "delete", "KEY"]);
            assert_parses(&["variable", "rm", "KEY"]); // alias
            assert_parses(&["variable", "delete", "KEY", "--json"]);
        }

        #[test]
        fn environment_link_subcommand() {
            assert_parses(&["environment", "link"]);
            assert_parses(&["environment", "link", "production"]);
            assert_parses(&["environment", "link", "--json"]);
        }

        #[test]
        fn service_subcommands() {
            assert_parses(&["service", "link"]);
            assert_parses(&["service", "status"]);
            assert_parses(&["service", "status", "--all"]);
            assert_parses(&["service", "status", "--json"]);
            assert_parses(&["service", "logs"]);
            assert_parses(&["service", "logs", "-s", "myservice"]);
            assert_parses(&["service", "redeploy"]);
            assert_parses(&["service", "redeploy", "-s", "myservice"]);
            assert_parses(&["service", "restart"]);
            assert_parses(&["service", "scale"]);
            assert_parses(&["service", "scale", "eu-west=2"]);
            assert_parses(&["service", "scale", "--eu-west", "2"]);
            assert_parses(&[
                "service",
                "scale",
                "--service",
                "worker",
                "eu-west=2",
                "us-east=1",
            ]);
        }

        #[test]
        fn project_subcommands() {
            assert_parses(&["project", "list"]);
            assert_parses(&["projects", "list"]);
            assert_subcommand(&["projects", "list"], "project");
            assert_parses(&["project", "ls"]); // alias
            assert_parses(&["project", "list", "--json"]);
            assert_parses(&["project", "link"]);
            assert_parses(&["project", "delete"]);
            assert_parses(&["project", "rm"]); // alias
            assert_parses(&["project", "delete", "-y"]);
        }

        #[test]
        fn projects_alias_shows_suggestion() {
            let raw_args = vec!["projects".to_string(), "list".to_string()];

            assert_eq!(
                project_command_suggestion(&raw_args),
                Some("I think you meant `railway project`; running that command instead.")
            );
        }

        #[test]
        fn variable_list_aliases() {
            assert_parses(&["variable", "ls"]);
            assert_parses(&["variable", "ls", "--kv"]);
            assert_parses(&["variable", "ls", "-s", "myservice"]);
        }

        #[test]
        fn variable_delete_remove_alias() {
            assert_parses(&["variable", "remove", "KEY"]);
        }

        #[test]
        fn variable_set_stdin_key_only() {
            assert_parses(&["variable", "set", "KEY", "--stdin"]);
            assert_parses(&["variable", "set", "MY_VAR", "--stdin", "-s", "myservice"]);
            assert_parses(&["variable", "set", "SECRET", "--stdin", "--skip-deploys"]);
        }

        #[test]
        fn setup_agent_subcommand() {
            assert_subcommand(&["setup", "agent"], "setup");
            assert_parses(&["setup", "agent"]);
            assert_parses(&["setup", "agent", "--yes"]);
            assert_parses(&["setup", "agent", "-y"]);
            assert_parses(&["setup", "agent", "--remote"]);
            assert_parses(&["setup", "agent", "--remote", "-y"]);
        }

        #[test]
        fn mcp_install_subcommand() {
            assert_parses(&["mcp"]); // no subcommand: still launches server
            assert_parses(&["mcp", "install"]);
            assert_parses(&["mcp", "install", "--agent", "cursor"]);
            assert_parses(&[
                "mcp",
                "install",
                "--agent",
                "cursor",
                "--agent",
                "claude-code",
            ]);
            assert_parses(&["mcp", "install", "--remote"]);
            assert_parses(&["mcp", "install", "--remote", "--agent", "cursor"]);
            assert_parses(&["mcp", "install", "--remote", "--agent", "codex"]);
        }
    }
}