mirror of https://github.com/jetkvm/kvm.git
Compare commits
No commits in common. "0cc84f0c54e06947eb7883e18e968acecf84340a" and "9832be29ef76f9c2a1b7272d371019d285b30fb4" have entirely different histories.
0cc84f0c54
...
9832be29ef
|
|
@ -311,27 +311,13 @@ func (s *State) checkUpdateStatus(
|
||||||
appUpdateStatus.available = false
|
appUpdateStatus.available = false
|
||||||
}
|
}
|
||||||
|
|
||||||
components := params.Components
|
// Handle custom target versions
|
||||||
// skip check if no components are specified
|
if slices.Contains(params.Components, "app") && params.AppTargetVersion != "" {
|
||||||
if len(components) == 0 {
|
appUpdateStatus.available = appVersionRemote.String() != appUpdateStatus.localVersion
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: simplify this
|
if slices.Contains(params.Components, "system") && params.SystemTargetVersion != "" {
|
||||||
if slices.Contains(components, "app") {
|
systemUpdateStatus.available = systemVersionRemote.String() != systemUpdateStatus.localVersion
|
||||||
if params.AppTargetVersion != "" {
|
|
||||||
appUpdateStatus.available = appVersionRemote.String() != appVersionLocal.String()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
appUpdateStatus.available = false
|
|
||||||
}
|
|
||||||
|
|
||||||
if slices.Contains(components, "system") {
|
|
||||||
if params.SystemTargetVersion != "" {
|
|
||||||
systemUpdateStatus.available = systemVersionRemote.String() != systemVersionLocal.String()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
systemUpdateStatus.available = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
package ota
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"net/http"
|
|
||||||
"os"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/Masterminds/semver/v3"
|
|
||||||
"github.com/rs/zerolog"
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func pseudoGetLocalVersion() (systemVersion *semver.Version, appVersion *semver.Version, err error) {
|
|
||||||
systemVersion = semver.MustParse("0.2.5")
|
|
||||||
appVersion = semver.MustParse("0.4.7")
|
|
||||||
return systemVersion, appVersion, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func newOtaState() *State {
|
|
||||||
logger := zerolog.New(os.Stdout).Level(zerolog.TraceLevel)
|
|
||||||
otaState := NewState(Options{
|
|
||||||
SkipConfirmSystem: true,
|
|
||||||
Logger: &logger,
|
|
||||||
ReleaseAPIEndpoint: "https://api.jetkvm.com/releases",
|
|
||||||
GetHTTPClient: func() *http.Client {
|
|
||||||
transport := http.DefaultTransport.(*http.Transport).Clone()
|
|
||||||
client := &http.Client{
|
|
||||||
Transport: transport,
|
|
||||||
}
|
|
||||||
return client
|
|
||||||
},
|
|
||||||
GetLocalVersion: pseudoGetLocalVersion,
|
|
||||||
HwReboot: func(force bool, postRebootAction *PostRebootAction, delay time.Duration) error { return nil },
|
|
||||||
ResetConfig: func() error { return nil },
|
|
||||||
OnStateUpdate: func(state *RPCState) {},
|
|
||||||
OnProgressUpdate: func(progress float32) {},
|
|
||||||
})
|
|
||||||
return otaState
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestCheckUpdateComponents(t *testing.T) {
|
|
||||||
otaState := newOtaState()
|
|
||||||
updateParams := UpdateParams{
|
|
||||||
DeviceID: "test",
|
|
||||||
IncludePreRelease: false,
|
|
||||||
SystemTargetVersion: "0.2.2",
|
|
||||||
Components: []string{"system"},
|
|
||||||
}
|
|
||||||
info, err := otaState.GetUpdateStatus(context.Background(), updateParams)
|
|
||||||
t.Logf("update status: %+v", info)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("failed to check update: %v", err)
|
|
||||||
}
|
|
||||||
assert.True(t, info.SystemUpdateAvailable)
|
|
||||||
assert.False(t, info.AppUpdateAvailable)
|
|
||||||
}
|
|
||||||
|
|
@ -203,7 +203,6 @@ type Options struct {
|
||||||
HwReboot HwRebootFunc
|
HwReboot HwRebootFunc
|
||||||
ReleaseAPIEndpoint string
|
ReleaseAPIEndpoint string
|
||||||
ResetConfig ResetConfigFunc
|
ResetConfig ResetConfigFunc
|
||||||
SkipConfirmSystem bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewState creates a new OTA state
|
// NewState creates a new OTA state
|
||||||
|
|
@ -222,9 +221,7 @@ func NewState(opts Options) *State {
|
||||||
releaseAPIEndpoint: opts.ReleaseAPIEndpoint,
|
releaseAPIEndpoint: opts.ReleaseAPIEndpoint,
|
||||||
resetConfig: opts.ResetConfig,
|
resetConfig: opts.ResetConfig,
|
||||||
}
|
}
|
||||||
if !opts.SkipConfirmSystem {
|
|
||||||
go s.confirmCurrentSystem()
|
go s.confirmCurrentSystem()
|
||||||
}
|
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
4
ota.go
4
ota.go
|
|
@ -91,7 +91,7 @@ func getUpdateStatus(includePreRelease bool) (*ota.UpdateStatus, error) {
|
||||||
updateStatus.Error = err.Error()
|
updateStatus.Error = err.Error()
|
||||||
}
|
}
|
||||||
|
|
||||||
otaLogger.Info().Interface("updateStatus", updateStatus).Msg("Update status")
|
logger.Info().Interface("updateStatus", updateStatus).Msg("Update status")
|
||||||
|
|
||||||
return updateStatus, nil
|
return updateStatus, nil
|
||||||
}
|
}
|
||||||
|
|
@ -189,7 +189,7 @@ func rpcTryUpdateComponents(params updateParams, includePreRelease bool, resetCo
|
||||||
go func() {
|
go func() {
|
||||||
err := otaState.TryUpdate(context.Background(), updateParams)
|
err := otaState.TryUpdate(context.Background(), updateParams)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
otaLogger.Warn().Err(err).Msg("failed to try update")
|
logger.Warn().Err(err).Msg("failed to try update")
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
|
|
@ -603,9 +603,6 @@ export interface UpdateState {
|
||||||
|
|
||||||
updateErrorMessage: string | null;
|
updateErrorMessage: string | null;
|
||||||
setUpdateErrorMessage: (errorMessage: string) => void;
|
setUpdateErrorMessage: (errorMessage: string) => void;
|
||||||
|
|
||||||
shouldReload: boolean;
|
|
||||||
setShouldReload: (reloadRequired: boolean) => void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useUpdateStore = create<UpdateState>(set => ({
|
export const useUpdateStore = create<UpdateState>(set => ({
|
||||||
|
|
@ -643,9 +640,6 @@ export const useUpdateStore = create<UpdateState>(set => ({
|
||||||
updateErrorMessage: null,
|
updateErrorMessage: null,
|
||||||
setUpdateErrorMessage: (errorMessage: string) =>
|
setUpdateErrorMessage: (errorMessage: string) =>
|
||||||
set({ updateErrorMessage: errorMessage }),
|
set({ updateErrorMessage: errorMessage }),
|
||||||
|
|
||||||
shouldReload: false,
|
|
||||||
setShouldReload: (reloadRequired: boolean) => set({ shouldReload: reloadRequired }),
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export type UsbConfigModalViews = "updateUsbConfig" | "updateUsbConfigSuccess";
|
export type UsbConfigModalViews = "updateUsbConfig" | "updateUsbConfigSuccess";
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ export default function SettingsGeneralUpdateRoute() {
|
||||||
const [searchParams] = useSearchParams();
|
const [searchParams] = useSearchParams();
|
||||||
const { updateSuccess } = location.state || {};
|
const { updateSuccess } = location.state || {};
|
||||||
|
|
||||||
const { setModalView, otaState, shouldReload, setShouldReload } = useUpdateStore();
|
const { setModalView, otaState } = useUpdateStore();
|
||||||
const { send } = useJsonRpc();
|
const { send } = useJsonRpc();
|
||||||
|
|
||||||
const customAppVersion = useMemo(() => searchParams.get("custom_app_version") || undefined, [searchParams]);
|
const customAppVersion = useMemo(() => searchParams.get("custom_app_version") || undefined, [searchParams]);
|
||||||
|
|
@ -28,19 +28,15 @@ export default function SettingsGeneralUpdateRoute() {
|
||||||
|
|
||||||
const onClose = useCallback(async () => {
|
const onClose = useCallback(async () => {
|
||||||
navigate(".."); // back to the devices.$id.settings page
|
navigate(".."); // back to the devices.$id.settings page
|
||||||
|
// Add 1s delay between navigation and calling reload() to prevent reload from interrupting the navigation.
|
||||||
if (shouldReload) {
|
await sleep(1000);
|
||||||
setShouldReload(false);
|
|
||||||
await sleep(1000); // Add 1s delay between navigation and calling reload() to prevent reload from interrupting the navigation.
|
|
||||||
window.location.reload(); // force a full reload to ensure the current device/cloud UI version is loaded
|
window.location.reload(); // force a full reload to ensure the current device/cloud UI version is loaded
|
||||||
}
|
}, [navigate]);
|
||||||
}, [navigate, setShouldReload, shouldReload]);
|
|
||||||
|
|
||||||
const onConfirmUpdate = useCallback(() => {
|
const onConfirmUpdate = useCallback(() => {
|
||||||
setShouldReload(true);
|
|
||||||
send("tryUpdate", {});
|
send("tryUpdate", {});
|
||||||
setModalView("updating");
|
setModalView("updating");
|
||||||
}, [send, setModalView, setShouldReload]);
|
}, [send, setModalView]);
|
||||||
|
|
||||||
const onConfirmCustomUpdate = useCallback((appTargetVersion?: string, systemTargetVersion?: string) => {
|
const onConfirmCustomUpdate = useCallback((appTargetVersion?: string, systemTargetVersion?: string) => {
|
||||||
const components = [];
|
const components = [];
|
||||||
|
|
@ -101,9 +97,10 @@ export function Dialog({
|
||||||
const { modalView, setModalView, otaState } = useUpdateStore();
|
const { modalView, setModalView, otaState } = useUpdateStore();
|
||||||
const forceCustomUpdate = customSystemVersion !== undefined || customAppVersion !== undefined;
|
const forceCustomUpdate = customSystemVersion !== undefined || customAppVersion !== undefined;
|
||||||
const onConfirmCustomUpdate = useCallback(() => {
|
const onConfirmCustomUpdate = useCallback(() => {
|
||||||
|
console.debug("onConfirmCustomUpdate", customAppVersion, customSystemVersion, versionInfo);
|
||||||
onConfirmCustomUpdateCallback(
|
onConfirmCustomUpdateCallback(
|
||||||
customAppVersion !== undefined ? versionInfo?.remote?.appVersion : undefined,
|
customAppVersion !== undefined ? customAppVersion : versionInfo?.remote?.appVersion,
|
||||||
customSystemVersion !== undefined ? versionInfo?.remote?.systemVersion : undefined,
|
customSystemVersion !== undefined ? customSystemVersion : versionInfo?.remote?.systemVersion,
|
||||||
);
|
);
|
||||||
}, [onConfirmCustomUpdateCallback, customAppVersion, customSystemVersion, versionInfo]);
|
}, [onConfirmCustomUpdateCallback, customAppVersion, customSystemVersion, versionInfo]);
|
||||||
|
|
||||||
|
|
|
||||||
4
web.go
4
web.go
|
|
@ -814,7 +814,7 @@ func handleSendWOLMagicPacket(c *gin.Context) {
|
||||||
inputMacAddr := c.Param("mac-addr")
|
inputMacAddr := c.Param("mac-addr")
|
||||||
macAddr, err := net.ParseMAC(inputMacAddr)
|
macAddr, err := net.ParseMAC(inputMacAddr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Warn().Err(err).Str("inputMacAddr", inputMacAddr).Msg("Invalid MAC address provided")
|
logger.Warn().Err(err).Str("sendWol", inputMacAddr).Msg("Invalid mac address provided")
|
||||||
c.String(http.StatusBadRequest, "Invalid mac address provided")
|
c.String(http.StatusBadRequest, "Invalid mac address provided")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -822,7 +822,7 @@ func handleSendWOLMagicPacket(c *gin.Context) {
|
||||||
macAddrString := macAddr.String()
|
macAddrString := macAddr.String()
|
||||||
err = rpcSendWOLMagicPacket(macAddrString)
|
err = rpcSendWOLMagicPacket(macAddrString)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Warn().Err(err).Str("macAddrString", macAddrString).Msg("Failed to send WOL magic packet")
|
logger.Warn().Err(err).Str("sendWOL", macAddrString).Msg("Failed to send WOL magic packet")
|
||||||
c.String(http.StatusInternalServerError, "Failed to send WOL to %s: %v", macAddrString, err)
|
c.String(http.StatusInternalServerError, "Failed to send WOL to %s: %v", macAddrString, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue