summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-attendedsysupgrade/htdocs
AgeCommit message (Collapse)Author
2021-09-05luci-app-attendedsysupgrade: use correct linter settingsPaul Spooren
The previous settings would use spaces which messed up things since LuCI uses tabs everywhere. Also removed a stray console.log Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-08-30luci-app-attendedsysupgrade: support revision checksPaul Spooren
SNAPSHOTS are not real releases and therefore the app always offers an upgrade, even if running the latest build. To prevent that all SNAPSHOTS now check for the running revision and if a newer one is available. Also do a bunch of refactoring based on JavaScript I learned over the last week. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-08-22luci-app-attendedsysupgrade: use detail not messagePaul Spooren
The new API unifies all human readable responses in the `detail` field to follow the newly used framework. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-08-16luci-app-attendedsysupgrade: use latest.jsonPaul Spooren
The content is the same response as for `/api/latest.json` but statically hosted by a webserver rather than Python generated. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-08-16luci-app-attendedsysupgrade: show position in queuePaul Spooren
The server provides a queue_position argument, show it. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-08-09luci-app-attendedsysupgrade: add timeout and catchPaul Spooren
If the upgrade server API does not respond, show an error message. Fix #5222 While at it, minimal code linting Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-07-26luci-app-attendedsysupgrade: fix empty array conditionPaul Spooren
In JavaScript (other than in Python) an empty array is considered `true` within if statements. Fix this by checking for the array length rather than its existence. This fixes the issue of an empty dropdown menu in case the user is running the latest release. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-07-05luci-app-attendedsysupgrade: fix typoPaul Spooren
Suggested-by: Jo-Philipp Wich <jo@mein.io> Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-05-05luci-app-attendedsysupgrade: fix branch detectionPaul Spooren
The running branch determines which upgrades are suggested. A jump to a newer branch (e.g. 19.07.8 to 21.02.1) is only suggested if the advanced mode is enable, since it may break the router. OpenWrt versions end in either `-SNAPSHOT`, `.X-rcY` or `.x`. All these suffixes are removed, resulting in the branch name. Previously the `-SNAPSHOT` suffix wasn't removed resulting in wrong branch names. Also clean up some log spam. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-04-29luci-app-attendedsysupgrade: hide branch updatePaul Spooren
Branch updates (e.g. 19.07 to 21.02) are risky and shouldn't be suggested by default. Hide those unless the advanced mode is enabled. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-04-26luci-app-attendedsysupgrade: add target in reuqestPaul Spooren
The updated ASU api requires `target` within reuqests since the `profile` or `board_name` is never truely unique. This is especially a problem for x86 devices which mostly use `generic` as profile name. Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-03-07luci-app-attendedsysupgrade: Render on clientPaul Spooren
Use new LuCI JavaScript code instead of a mix of Lua and JS. Signed-off-by: Paul Spooren <mail@aparcar.org>