Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Clash Verge
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Clash Verge
Commits
f260d5df
There was an error fetching the commit references. Please try again later.
Unverified
Commit
f260d5df
authored
3 years ago
by
GyDi
Browse files
Options
Downloads
Patches
Plain Diff
feat: enhanced profile (wip)
parent
808b861d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src-tauri/src/core/clash.rs
+47
-13
47 additions, 13 deletions
src-tauri/src/core/clash.rs
src-tauri/src/core/profiles.rs
+68
-0
68 additions, 0 deletions
src-tauri/src/core/profiles.rs
src-tauri/src/utils/resolve.rs
+4
-0
4 additions, 0 deletions
src-tauri/src/utils/resolve.rs
with
119 additions
and
13 deletions
src-tauri/src/core/clash.rs
+
47
−
13
View file @
f260d5df
use
std
::
collections
::
HashMap
;
use
super
::{
Profiles
,
Verge
};
use
super
::{
Profiles
,
Verge
};
use
crate
::
utils
::{
config
,
dirs
};
use
crate
::
utils
::{
config
,
dirs
,
help
};
use
anyhow
::{
bail
,
Result
};
use
anyhow
::{
bail
,
Result
};
use
reqwest
::
header
::
HeaderMap
;
use
reqwest
::
header
::
HeaderMap
;
use
serde
::{
Deserialize
,
Serialize
};
use
serde
::{
Deserialize
,
Serialize
};
use
serde_yaml
::{
Mapping
,
Value
};
use
serde_yaml
::{
Mapping
,
Value
};
use
std
::{
collections
::
HashMap
,
time
::
Duration
};
use
tauri
::
api
::
process
::{
Command
,
CommandChild
,
CommandEvent
};
use
tauri
::
api
::
process
::{
Command
,
CommandChild
,
CommandEvent
};
use
tokio
::
time
::
sleep
;
#[derive(Default,
Debug,
Clone,
Deserialize,
Serialize)]
#[derive(Default,
Debug,
Clone,
Deserialize,
Serialize)]
pub
struct
ClashInfo
{
pub
struct
ClashInfo
{
...
@@ -241,17 +241,8 @@ impl Clash {
...
@@ -241,17 +241,8 @@ impl Clash {
self
.save_config
()
self
.save_config
()
}
}
/// activate the profile
fn
_activate
(
info
:
ClashInfo
,
config
:
Mapping
)
->
Result
<
()
>
{
pub
fn
activate
(
&
self
,
profiles
:
&
Profiles
)
->
Result
<
()
>
{
let
temp_path
=
dirs
::
profiles_temp_path
();
let
temp_path
=
dirs
::
profiles_temp_path
();
let
info
=
self
.info
.clone
();
let
mut
config
=
self
.config
.clone
();
let
gen_config
=
profiles
.gen_activate
()
?
;
for
(
key
,
value
)
in
gen_config
.into_iter
()
{
config
.insert
(
key
,
value
);
}
config
::
save_yaml
(
temp_path
.clone
(),
&
config
,
Some
(
"# Clash Verge Temp File"
))
?
;
config
::
save_yaml
(
temp_path
.clone
(),
&
config
,
Some
(
"# Clash Verge Temp File"
))
?
;
tauri
::
async_runtime
::
spawn
(
async
move
{
tauri
::
async_runtime
::
spawn
(
async
move
{
...
@@ -288,6 +279,49 @@ impl Clash {
...
@@ -288,6 +279,49 @@ impl Clash {
Ok
(())
Ok
(())
}
}
/// activate the profile
pub
fn
activate
(
&
self
,
profiles
:
&
Profiles
)
->
Result
<
()
>
{
let
info
=
self
.info
.clone
();
let
mut
config
=
self
.config
.clone
();
let
gen_map
=
profiles
.gen_activate
()
?
;
for
(
key
,
value
)
in
gen_map
.into_iter
()
{
config
.insert
(
key
,
value
);
}
Self
::
_activate
(
info
,
config
)
}
/// enhanced profiles mode
pub
fn
activate_enhanced
(
&
self
,
profiles
:
&
Profiles
,
win
:
tauri
::
Window
)
->
Result
<
()
>
{
let
event_name
=
help
::
get_uid
(
"e"
);
let
event_name
=
format!
(
"script-cb-{event_name}"
);
let
info
=
self
.info
.clone
();
let
mut
config
=
self
.config
.clone
();
win
.once
(
&
event_name
,
move
|
event
|
{
if
let
Some
(
result
)
=
event
.payload
()
{
let
gen_map
:
Mapping
=
serde_json
::
from_str
(
result
)
.unwrap
();
for
(
key
,
value
)
in
gen_map
.into_iter
()
{
config
.insert
(
key
,
value
);
}
Self
::
_activate
(
info
,
config
)
.unwrap
();
}
});
// generate the payload
let
payload
=
profiles
.gen_enhanced
();
tauri
::
async_runtime
::
spawn
(
async
move
{
sleep
(
Duration
::
from_secs
(
5
))
.await
;
win
.emit
(
"script-handler"
,
payload
)
.unwrap
();
});
Ok
(())
}
}
}
impl
Default
for
Clash
{
impl
Default
for
Clash
{
...
...
This diff is collapsed.
Click to expand it.
src-tauri/src/core/profiles.rs
+
68
−
0
View file @
f260d5df
...
@@ -436,4 +436,72 @@ impl Profiles {
...
@@ -436,4 +436,72 @@ impl Profiles {
bail!
(
"failed to found the uid
\"
{current}
\"
"
);
bail!
(
"failed to found the uid
\"
{current}
\"
"
);
}
}
/// gen the enhanced profiles
pub
fn
gen_enhanced
(
&
self
)
->
PrfEnhanced
{
let
current
=
self
.gen_activate
()
.unwrap
();
let
chain
=
match
self
.chain
.as_ref
()
{
Some
(
chain
)
=>
chain
.iter
()
.map
(|
uid
|
self
.get_item
(
uid
))
.filter
(|
item
|
item
.is_ok
())
.map
(|
item
|
item
.unwrap
())
.map
(|
item
|
PrfData
::
from_item
(
item
))
.filter
(|
o
|
o
.is_some
())
.map
(|
o
|
o
.unwrap
())
.collect
::
<
Vec
<
PrfData
>>
(),
None
=>
vec!
[],
};
PrfEnhanced
{
current
,
chain
}
}
}
#[derive(Default,
Debug,
Clone,
Serialize,
Deserialize)]
pub
struct
PrfEnhanced
{
current
:
Mapping
,
chain
:
Vec
<
PrfData
>
,
}
#[derive(Default,
Debug,
Clone,
Serialize,
Deserialize)]
pub
struct
PrfData
{
item
:
PrfItem
,
#[serde(skip_serializing_if
=
"Option::is_none"
)]
merge
:
Option
<
Mapping
>
,
#[serde(skip_serializing_if
=
"Option::is_none"
)]
script
:
Option
<
String
>
,
}
impl
PrfData
{
pub
fn
from_item
(
item
:
&
PrfItem
)
->
Option
<
PrfData
>
{
match
item
.itype
.as_ref
()
{
Some
(
itype
)
=>
{
let
file
=
item
.file
.clone
()
?
;
let
path
=
dirs
::
app_profiles_dir
()
.join
(
file
);
if
!
path
.exists
()
{
return
None
;
}
match
itype
.as_str
()
{
"script"
=>
Some
(
PrfData
{
item
:
item
.clone
(),
script
:
Some
(
fs
::
read_to_string
(
path
)
.unwrap_or
(
""
.into
())),
merge
:
None
,
}),
"merge"
=>
Some
(
PrfData
{
item
:
item
.clone
(),
merge
:
Some
(
config
::
read_yaml
::
<
Mapping
>
(
path
)),
script
:
None
,
}),
_
=>
None
,
}
}
None
=>
None
,
}
}
}
}
This diff is collapsed.
Click to expand it.
src-tauri/src/utils/resolve.rs
+
4
−
0
View file @
f260d5df
...
@@ -26,6 +26,10 @@ pub fn resolve_setup(app: &App) {
...
@@ -26,6 +26,10 @@ pub fn resolve_setup(app: &App) {
*
profiles
=
Profiles
::
read_file
();
*
profiles
=
Profiles
::
read_file
();
log_if_err!
(
clash
.activate
(
&
profiles
));
log_if_err!
(
clash
.activate
(
&
profiles
));
app
.get_window
(
"main"
)
.map
(|
win
|
log_if_err!
(
clash
.activate_enhanced
(
&
profiles
,
win
)));
verge
.init_sysproxy
(
clash
.info.port
.clone
());
verge
.init_sysproxy
(
clash
.info.port
.clone
());
// enable tun mode
// enable tun mode
if
verge
.config.enable_tun_mode
.clone
()
.unwrap_or
(
false
)
if
verge
.config.enable_tun_mode
.clone
()
.unwrap_or
(
false
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment