-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5075 from rvykydal/webui-bz-report-offline
Webui bz report offline
- Loading branch information
Showing
7 changed files
with
156 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (C) 2023 Red Hat, Inc. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; either version 2.1 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with This program; If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { | ||
getConnected, | ||
} from "../apis/network.js"; | ||
|
||
export const getConnectedAction = () => { | ||
return async (dispatch) => { | ||
const connected = await getConnected(); | ||
|
||
return dispatch({ | ||
type: "GET_NETWORK_CONNECTED", | ||
payload: { connected } | ||
}); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Copyright (C) 2023 Red Hat, Inc. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; either version 2.1 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with This program; If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import cockpit from "cockpit"; | ||
|
||
import { getConnectedAction } from "../actions/network-actions.js"; | ||
import { debug } from "../helpers/log.js"; | ||
|
||
export class NetworkClient { | ||
constructor (address) { | ||
if (NetworkClient.instance && (!address || NetworkClient.instance.address === address)) { | ||
return NetworkClient.instance; | ||
} | ||
|
||
NetworkClient.instance?.client.close(); | ||
|
||
NetworkClient.instance = this; | ||
|
||
this.client = cockpit.dbus( | ||
"org.fedoraproject.Anaconda.Modules.Network", | ||
{ superuser: "try", bus: "none", address } | ||
); | ||
this.address = address; | ||
} | ||
|
||
init () { | ||
this.client.addEventListener("close", () => console.error("Network client closed")); | ||
} | ||
} | ||
|
||
/** | ||
* @returns {Promise} The bool state of the network connection | ||
*/ | ||
export const getConnected = () => { | ||
return ( | ||
new NetworkClient().client.call( | ||
"/org/fedoraproject/Anaconda/Modules/Network", | ||
"org.freedesktop.DBus.Properties", | ||
"Get", | ||
["org.fedoraproject.Anaconda.Modules.Network", "Connected"] | ||
) | ||
.then(res => res[0].v) | ||
); | ||
}; | ||
|
||
export const startEventMonitorNetwork = ({ dispatch }) => { | ||
return new NetworkClient().client.subscribe( | ||
{ }, | ||
(path, iface, signal, args) => { | ||
switch (signal) { | ||
case "PropertiesChanged": | ||
if (args[0] === "org.fedoraproject.Anaconda.Modules.Network" && Object.hasOwn(args[1], "Connected")) { | ||
dispatch(getConnectedAction()); | ||
} else { | ||
debug(`Unhandled signal on ${path}: ${iface}.${signal}`, JSON.stringify(args)); | ||
} | ||
break; | ||
default: | ||
debug(`Unhandled signal on ${path}: ${iface}.${signal}`, JSON.stringify(args)); | ||
} | ||
} | ||
); | ||
}; | ||
|
||
export const initDataNetwork = ({ dispatch }) => { | ||
return Promise.all([ | ||
dispatch(getConnectedAction()) | ||
]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters