Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F393241
http.rs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
http.rs
View Options
use
crate
::
process
::
Remote
;
use
macros_rs
::{
fmtstr
,
str
,
string
};
use
reqwest
::
blocking
::{
Client
,
Response
};
use
reqwest
::
header
::{
HeaderMap
,
HeaderValue
};
use
serde
::
Serialize
;
use
std
::
path
::
PathBuf
;
#[derive(Serialize)]
struct
ActionBody
{
pub
method
:
String
,
}
pub
struct
LogResponse
{
pub
path
:
&
'
static
str
,
pub
lines
:
Vec
<
String
>
,
}
#[derive(Serialize)]
struct
CreateBody
<'
c
>
{
pub
name
:
&
'
c
String
,
pub
script
:
&
'
c
String
,
pub
path
:
PathBuf
,
pub
watch
:
&
'
c
Option
<
String
>
,
}
fn
client
(
token
:
&
Option
<
String
>
)
->
(
Client
,
HeaderMap
)
{
let
client
=
Client
::
new
();
let
mut
headers
=
HeaderMap
::
new
();
if
let
Some
(
token
)
=
token
{
headers
.
insert
(
"token"
,
HeaderValue
::
from_static
(
str
!
(
token
.
to_owned
())));
}
return
(
client
,
headers
);
}
pub
fn
info
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
id
:
usize
)
->
Result
<
Response
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
Ok
(
client
.
get
(
fmtstr
!
(
"{address}/process/{id}/info"
)).
headers
(
headers
).
send
()
?
)
}
pub
fn
logs
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
id
:
usize
,
kind
:
&
str
)
->
Result
<
LogResponse
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
let
response
=
client
.
get
(
fmtstr
!
(
"{address}/process/{id}/logs/{kind}/raw"
)).
headers
(
headers
).
send
()
?
;
let
log
=
response
.
text
()
?
;
Ok
(
LogResponse
{
lines
:
log
.
lines
().
skip
(
1
).
map
(
|
line
|
line
.
to_string
()).
collect
::
<
Vec
<
String
>>
(),
path
:
Box
::
leak
(
Box
::
from
(
log
.
lines
().
next
().
unwrap_or
(
""
).
split_whitespace
().
last
().
unwrap_or
(
""
))),
})
}
pub
fn
create
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
name
:
&
String
,
script
:
&
String
,
path
:
PathBuf
,
watch
:
&
Option
<
String
>
)
->
Result
<
Response
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
let
content
=
CreateBody
{
name
,
script
,
path
,
watch
};
Ok
(
client
.
post
(
fmtstr
!
(
"{address}/process/create"
)).
json
(
&
content
).
headers
(
headers
).
send
()
?
)
}
pub
fn
restart
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
id
:
usize
)
->
Result
<
Response
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
let
content
=
ActionBody
{
method
:
string
!
(
"restart"
)
};
Ok
(
client
.
post
(
fmtstr
!
(
"{address}/process/{id}/action"
)).
json
(
&
content
).
headers
(
headers
).
send
()
?
)
}
pub
fn
rename
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
id
:
usize
,
name
:
String
)
->
Result
<
Response
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
Ok
(
client
.
post
(
fmtstr
!
(
"{address}/process/{id}/rename"
)).
body
(
name
).
headers
(
headers
).
send
()
?
)
}
pub
fn
stop
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
id
:
usize
)
->
Result
<
Response
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
let
content
=
ActionBody
{
method
:
string
!
(
"stop"
)
};
Ok
(
client
.
post
(
fmtstr
!
(
"{address}/process/{id}/action"
)).
json
(
&
content
).
headers
(
headers
).
send
()
?
)
}
pub
fn
remove
(
Remote
{
address
,
token
,
..
}:
&
Remote
,
id
:
usize
)
->
Result
<
Response
,
anyhow
::
Error
>
{
let
(
client
,
headers
)
=
client
(
token
);
let
content
=
ActionBody
{
method
:
string
!
(
"remove"
)
};
Ok
(
client
.
post
(
fmtstr
!
(
"{address}/process/{id}/action"
)).
json
(
&
content
).
headers
(
headers
).
send
()
?
)
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sun, Apr 20, 6:46 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
49175
Default Alt Text
http.rs (3 KB)
Attached To
Mode
rPMC Process Management Controller
Attached
Detach File
Event Timeline
Log In to Comment