@@ -6,7 +6,8 @@ use device::{device_cmds, Device};
6
6
use directories:: ProjectDirs ;
7
7
use postcard_rpc:: host_client:: { EndpointReport , TopicReport } ;
8
8
use poststation_sdk:: {
9
- connect, connect_insecure, schema:: schema:: owned:: OwnedDataModelType , PoststationClient ,
9
+ connect, connect_insecure, schema:: schema:: owned:: OwnedDataModelType , ConnectError ,
10
+ PoststationClient ,
10
11
} ;
11
12
12
13
mod device;
@@ -62,12 +63,29 @@ async fn inner_main(cli: Cli) -> anyhow::Result<()> {
62
63
. unwrap_or_else ( || "127.0.0.1:51837" . parse ( ) . unwrap ( ) ) ;
63
64
64
65
let command = cli. command ;
65
- let client = if cli. insecure {
66
+ let client_res = if cli. insecure {
66
67
connect_insecure ( server. port ( ) ) . await
67
68
} else {
68
69
connect ( server) . await
69
- }
70
- . unwrap ( ) ;
70
+ } ;
71
+
72
+ let client = match client_res {
73
+ Ok ( c) => c,
74
+ Err ( e) => match e {
75
+ ConnectError :: CaCertificate => {
76
+ bail ! ( "An error with the CA certificate occurred. Ensure you have the correct path and certificate for the server you want to connect to." ) ;
77
+ }
78
+ ConnectError :: Connection => {
79
+ bail ! ( "An error occurred while establishing a a connection. Ensure the server is running, and your CLI and server settings match." ) ;
80
+ }
81
+ ConnectError :: Protocol => {
82
+ bail ! ( "A protocol error occurred. Ensure that your CLI and Server are compatible versions" ) ;
83
+ }
84
+ other => {
85
+ bail ! ( "An unknown error occurred: {other:?}" ) ;
86
+ }
87
+ } ,
88
+ } ;
71
89
72
90
match command {
73
91
Commands :: Ls => {
0 commit comments