mirror of
https://github.com/kunkunsh/kunkun-ext-wifi-password.git
synced 2025-04-03 18:56:43 +00:00
feat: support ubuntu
This commit is contained in:
parent
c79d2bbb4c
commit
061390104f
@ -21,6 +21,9 @@ JSR Package `@kunkun/kunkun-ext-wifi-password`: https://jsr.io/@kunkun/kunkun-ex
|
|||||||
password=$(nmcli device wifi show-password | grep Password | cut -d : -f 2 | xargs)
|
password=$(nmcli device wifi show-password | grep Password | cut -d : -f 2 | xargs)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Ubuntu currently only supports showing passwords for connected wifi, I didn't find a way to find password for all wifis.
|
||||||
|
There is command for listing all wifi ssids, but not passwords.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Reveal Wifi Password from current machine
|
- Reveal Wifi Password from current machine
|
||||||
|
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kunkun/kunkun-ext-wifi-password",
|
"name": "@kunkun/kunkun-ext-wifi-password",
|
||||||
"version": "0.1.7",
|
"version": "0.1.8",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"exports": "./mod.ts",
|
"exports": "./mod.ts",
|
||||||
"publish": {
|
"publish": {
|
||||||
|
12
package.json
12
package.json
@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://schema.kunkun.sh",
|
"$schema": "https://schema.kunkun.sh",
|
||||||
"name": "kunkun-ext-wifi-password",
|
"name": "kunkun-ext-wifi-password",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "0.1.7",
|
"version": "0.1.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "Wifi Password",
|
"name": "Wifi Password",
|
||||||
@ -67,6 +67,16 @@
|
|||||||
"key=clear"
|
"key=clear"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cmd": {
|
||||||
|
"program": "nmcli",
|
||||||
|
"args": [
|
||||||
|
"device",
|
||||||
|
"wifi",
|
||||||
|
"show-password"
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
48
src/index.ts
48
src/index.ts
@ -59,9 +59,44 @@ async function windowsGetWifiSsids() {
|
|||||||
.map((line) => line.split(":")[1].trim());
|
.map((line) => line.split(":")[1].trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function getCurrentWifiInfo() {
|
||||||
|
// nmcli device wifi show-password
|
||||||
|
const cmd = shell.createCommand("nmcli", [
|
||||||
|
"device",
|
||||||
|
"wifi",
|
||||||
|
"show-password"
|
||||||
|
])
|
||||||
|
const result = await cmd.execute();
|
||||||
|
if (result.code !== 0) {
|
||||||
|
if (result.stderr.includes("No Wi-Fi device found")) {
|
||||||
|
toast.warning('Not connected to wifi')
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
const lines = result.stdout.split("\n")
|
||||||
|
const ssidLines = lines.filter(line => line.includes("SSID"))
|
||||||
|
if (ssidLines.length === 0) {
|
||||||
|
toast.error("No wifi ssid found")
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
const ssid = ssidLines[0].split(":")[1].trim()
|
||||||
|
const passwordLines = lines.filter(line => line.includes("Password:"))
|
||||||
|
if (passwordLines.length === 0) {
|
||||||
|
toast.error("No wifi password found")
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
const password = passwordLines[0].split(":")[1].trim()
|
||||||
|
return {
|
||||||
|
ssid,
|
||||||
|
password
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
class ListWifiPasswords extends WorkerExtension {
|
class ListWifiPasswords extends WorkerExtension {
|
||||||
networks: string[] = [];
|
networks: string[] = [];
|
||||||
currentWifiPassword: string | undefined;
|
currentWifiPassword: string | undefined;
|
||||||
|
currentWifiSsid: string | undefined;
|
||||||
|
|
||||||
get listItems() {
|
get listItems() {
|
||||||
return this.networks.map(
|
return this.networks.map(
|
||||||
@ -72,7 +107,7 @@ class ListWifiPasswords extends WorkerExtension {
|
|||||||
icon: new Icon({
|
icon: new Icon({
|
||||||
type: IconEnum.Iconify,
|
type: IconEnum.Iconify,
|
||||||
value: "mdi:wifi",
|
value: "mdi:wifi",
|
||||||
hexColor: this.currentWifiPassword === x ? "#ff0" : undefined,
|
hexColor: this.currentWifiSsid === x ? "#ff0" : undefined,
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
@ -99,9 +134,16 @@ class ListWifiPasswords extends WorkerExtension {
|
|||||||
.slice(1)
|
.slice(1)
|
||||||
.map((x) => x.trim());
|
.map((x) => x.trim());
|
||||||
} else if (platform === "windows") {
|
} else if (platform === "windows") {
|
||||||
this.currentWifiPassword = await windowsGetCurrentWifiSsid();
|
this.currentWifiSsid = await windowsGetCurrentWifiSsid();
|
||||||
this.networks = (await windowsGetWifiSsids()) ?? [];
|
this.networks = (await windowsGetWifiSsids()) ?? [];
|
||||||
} else if (platform === "linux") {
|
} else if (platform === "linux") {
|
||||||
|
const ubuntuWifiInfo = await getCurrentWifiInfo()
|
||||||
|
console.log(ubuntuWifiInfo);
|
||||||
|
if (ubuntuWifiInfo) {
|
||||||
|
this.currentWifiPassword = ubuntuWifiInfo.password
|
||||||
|
this.currentWifiSsid = ubuntuWifiInfo.ssid
|
||||||
|
this.networks = [ubuntuWifiInfo.ssid]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return ui.render(
|
return ui.render(
|
||||||
new List.List({
|
new List.List({
|
||||||
@ -137,6 +179,8 @@ class ListWifiPasswords extends WorkerExtension {
|
|||||||
wifiPassword = result.stdout.trim();
|
wifiPassword = result.stdout.trim();
|
||||||
} else if (platform === "windows") {
|
} else if (platform === "windows") {
|
||||||
wifiPassword = await windowsGetWifiPassword(ssid);
|
wifiPassword = await windowsGetWifiPassword(ssid);
|
||||||
|
} else if (platform === "linux") {
|
||||||
|
wifiPassword = this.currentWifiPassword
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wifiPassword) {
|
if (!wifiPassword) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user