Skip to content

Commit f73c45c

Browse files
authored
Merge pull request #40 from code-troopers/feat/39
feat(39): allow to open uri from aliases
2 parents ddfde57 + 4d944b6 commit f73c45c

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

.ctproject

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ combine=echo "toto is dumb" && echo "tata is a ragdoll" # no recursive ct invoke
77
envvar='CTENV="azerty qsdf";echo $CTENV'
88
# comment on line
99
front='cd ui; ct run' #debugging #18
10-
dual="ct help && ct help"
10+
dual="ct help && ct help"
11+
url="http://code-troopers.com"
12+
file="file:///tmp"

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ futures = "0.1.21"
2020
linked-hash-map = "0.5.1"
2121
lazy_static = "1.0"
2222
clap = "2.0.0"
23+
url = "1.7.1"
24+
open = "1.2.1"

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ Use it
5858
--
5959
Simply call `ct` followed by your alias to launch the command in your current directory. If you execute the command without specifying a command, help screen with the available commands will be printed.
6060

61+
Alias URIs
62+
--
63+
You can alias URIs straight away in your `.ctproject` to allow users to open it right away (for example a swagger entrypoint).
64+
65+
swagger="http://localhost:9000/swagger-ui/index.html" #opens swagger ui
66+
target="file:///data" # open /data in your file explorer
67+
68+
6169
Protip
6270
--
6371
Use consistent aliases in your `.ctproject` files, this way, you can define global aliases for your shell that will allow you to use consistent shortcut regardless of the project type you're on.

src/extract.rs

+12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
extern crate linked_hash_map;
22
extern crate regex;
3+
extern crate url;
4+
extern crate open;
5+
36

47
use cli::Config;
58
use file_finder::CTFile;
69
use log::debug_log;
710
use self::linked_hash_map::*;
811
use self::regex::Regex;
912
use std::process::*;
13+
use self::url::Url;
1014

1115
#[derive(Debug)]
1216
pub struct RunCommand {
@@ -49,6 +53,14 @@ impl RunCommand{
4953
}
5054

5155
pub fn run(&self, ct_file: &CTFile){
56+
if let Ok(url) = Url::parse(&self.command){
57+
if open::that(url.to_string()).is_ok(){
58+
println!("🌍 Opened resource 🌎")
59+
}else{
60+
println!("🚧 Unable to open {:?}", url.to_string())
61+
}
62+
return
63+
}
5264
let sh_sub_command = self.build_subcommand();
5365
debug_log(|| format!("About to run `sh -c {:?}`", sh_sub_command));
5466
let s : Child;

0 commit comments

Comments
 (0)