├── LICENSE ├── Makefile ├── README.md ├── htdocs └── luci-static │ └── quickstart │ ├── index.js │ ├── style.css │ └── vendor.js ├── luasrc ├── controller │ ├── istore_backend.lua │ └── quickstart.lua └── view │ └── quickstart │ ├── home.htm │ └── main.htm └── root ├── etc └── uci-defaults │ └── 50_luci-quickstart └── usr ├── libexec └── quickstart │ └── auto_setup.sh └── share └── luci └── menu.d └── luci-app-quickstart.json /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 Openwrt.org 2 | # 3 | # This is free software, licensed under the Apache License, Version 2.0 . 4 | # 5 | 6 | include $(TOPDIR)/rules.mk 7 | 8 | PKG_NAME:=luci-app-quickstart 9 | PKG_VERSION:=1.0.2-20230817 10 | PKG_MAINTAINER:=istoreos 11 | 12 | LUCI_TITLE:=LuCI support for Quickstart 13 | LUCI_DEPENDS:=+quickstart +luci-app-nlbwmon 14 | LUCI_PKGARCH:=all 15 | 16 | LUCI_MINIFY_CSS:=0 17 | LUCI_MINIFY_JS:=0 18 | 19 | include $(TOPDIR)/feeds/luci/luci.mk 20 | 21 | # call BuildPackage - OpenWrt buildroot signature 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LuCI support for Quickstart 2 | 3 | ## Simple Dashboard for OpenWrt 4 | 5 | 6 | 7 | The Quickstart is default Dashboard of iStoreOS project, there are several adjustments in this repository, including: Interface language adapted to English and some tools for Indonesian users. 8 | 9 | If you want to use iStoreOS, please click this iStoreOS. 10 | 11 | Source code : [iStoreOS](https://github.com/istoreos/istoreos) 12 | -------------------------------------------------------------------------------- /luasrc/controller/istore_backend.lua: -------------------------------------------------------------------------------- 1 | -- Copyright 2022 xiaobao 2 | -- Licensed to the public under the MIT License 3 | 4 | local http = require "luci.http" 5 | local nixio = require "nixio" 6 | local ltn12 = require "luci.ltn12" 7 | local table = require "table" 8 | local util = require "luci.util" 9 | 10 | module("luci.controller.istore_backend", package.seeall) 11 | 12 | local BLOCKSIZE = 2048 13 | local ISTOREOS_PORT = 3038 14 | 15 | function index() 16 | entry({"admin", "nas"}, firstchild(), _("NAS") , 45).dependent = false 17 | entry({"istore"}, call("istore_backend")).leaf=true 18 | end 19 | 20 | local function sink_socket(sock, io_err) 21 | if sock then 22 | return function(chunk, err) 23 | if not chunk then 24 | return 1 25 | else 26 | return sock:send(chunk) 27 | end 28 | end 29 | else 30 | return ltn12.sink.error(io_err or "unable to send socket") 31 | end 32 | end 33 | 34 | local function session_retrieve(sid, allowed_users) 35 | local sdat = util.ubus("session", "get", { ubus_rpc_session = sid }) 36 | if type(sdat) == "table" and 37 | type(sdat.values) == "table" and 38 | type(sdat.values.token) == "string" and 39 | (not allowed_users or 40 | util.contains(allowed_users, sdat.values.username)) 41 | then 42 | return sid, sdat.values 43 | end 44 | return nil, nil 45 | end 46 | 47 | local function get_session() 48 | local sid 49 | local key 50 | local sdat 51 | for _, key in ipairs({"sysauth_https", "sysauth_http", "sysauth"}) do 52 | sid = http.getcookie(key) 53 | if sid then 54 | sid, sdat = session_retrieve(sid, nil) 55 | if sid and sdat then 56 | return sid, sdat 57 | end 58 | end 59 | end 60 | return nil, nil 61 | end 62 | 63 | local function chunksource(sock, buffer) 64 | buffer = buffer or "" 65 | return function() 66 | local output 67 | local _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") 68 | while not count and #buffer <= 1024 do 69 | local newblock, code = sock:recv(1024 - #buffer) 70 | if not newblock then 71 | return nil, code 72 | end 73 | buffer = buffer .. newblock 74 | _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") 75 | end 76 | count = tonumber(count, 16) 77 | if not count then 78 | return nil, -1, "invalid encoding" 79 | elseif count == 0 then 80 | return nil 81 | elseif count + 2 <= #buffer - endp then 82 | output = buffer:sub(endp+1, endp+count) 83 | buffer = buffer:sub(endp+count+3) 84 | return output 85 | else 86 | output = buffer:sub(endp+1, endp+count) 87 | buffer = "" 88 | if count - #output > 0 then 89 | local remain, code = sock:recvall(count-#output) 90 | if not remain then 91 | return nil, code 92 | end 93 | output = output .. remain 94 | count, code = sock:recvall(2) 95 | else 96 | count, code = sock:recvall(count+2-#buffer+endp) 97 | end 98 | if not count then 99 | return nil, code 100 | end 101 | return output 102 | end 103 | end 104 | end 105 | 106 | function istore_backend() 107 | local sock = nixio.connect("127.0.0.1", ISTOREOS_PORT) 108 | if not sock then 109 | http.status(500, "connect failed") 110 | return 111 | end 112 | local input = {} 113 | input[#input+1] = http.getenv("REQUEST_METHOD") .. " " .. http.getenv("REQUEST_URI") .. " HTTP/1.1" 114 | local req = http.context.request 115 | local start = "HTTP_" 116 | local start_len = string.len(start) 117 | local ctype = http.getenv("CONTENT_TYPE") 118 | if ctype then 119 | input[#input+1] = "Content-Type: " .. ctype 120 | end 121 | for k, v in pairs(req.message.env) do 122 | if string.sub(k, 1, start_len) == start and not string.find(k, "FORWARDED") then 123 | input[#input+1] = string.sub(k, start_len+1, string.len(k)) .. ": " .. v 124 | end 125 | end 126 | local sid, sdat = get_session() 127 | if sdat ~= nil then 128 | input[#input+1] = "X-Forwarded-Sid: " .. sid 129 | input[#input+1] = "X-Forwarded-Token: " .. sdat.token 130 | end 131 | -- input[#input+1] = "X-Forwarded-For: " .. http.getenv("REMOTE_HOST") ..":".. http.getenv("REMOTE_PORT") 132 | local num = tonumber(http.getenv("CONTENT_LENGTH")) or 0 133 | input[#input+1] = "Content-Length: " .. tostring(num) 134 | input[#input+1] = "\r\n" 135 | local source = ltn12.source.cat(ltn12.source.string(table.concat(input, "\r\n")), http.source()) 136 | local ret = ltn12.pump.all(source, sink_socket(sock, "write sock error")) 137 | if ret ~= 1 then 138 | sock:close() 139 | http.status(500, "proxy error") 140 | return 141 | end 142 | 143 | local linesrc = sock:linesource() 144 | local line, code, error = linesrc() 145 | if not line then 146 | sock:close() 147 | http.status(500, "response parse failed") 148 | return 149 | end 150 | 151 | local protocol, status, msg = line:match("^([%w./]+) ([0-9]+) (.*)") 152 | if not protocol then 153 | sock:close() 154 | http.status(500, "response protocol error") 155 | return 156 | end 157 | num = tonumber(status) or 0 158 | http.status(num, msg) 159 | 160 | local chunked = 0 161 | line = linesrc() 162 | while line and line ~= "" do 163 | local key, val = line:match("^([%w-]+)%s?:%s?(.*)") 164 | if key and key ~= "Status" then 165 | if key == "Transfer-Encoding" and val == "chunked" then 166 | chunked = 1 167 | end 168 | if key ~= "Connection" and key ~= "Transfer-Encoding" and key ~= "Content-Length" then 169 | http.header(key, val) 170 | end 171 | end 172 | line = linesrc() 173 | end 174 | if not line then 175 | sock:close() 176 | http.status(500, "parse header failed") 177 | return 178 | end 179 | 180 | local body_buffer = linesrc(true) 181 | if chunked == 1 then 182 | ltn12.pump.all(chunksource(sock, body_buffer), http.write) 183 | else 184 | local body_source = ltn12.source.cat(ltn12.source.string(body_buffer), sock:blocksource()) 185 | ltn12.pump.all(body_source, http.write) 186 | end 187 | 188 | sock:close() 189 | end 190 | 191 | -------------------------------------------------------------------------------- /luasrc/controller/quickstart.lua: -------------------------------------------------------------------------------- 1 | local http = require "luci.http" 2 | 3 | module("luci.controller.quickstart", package.seeall) 4 | 5 | function index() 6 | entry({"admin", "nas"}, firstchild(), _("NAS") , 45).dependent = false 7 | if luci.sys.call("pgrep quickstart >/dev/null") == 0 then 8 | entry({"admin", "quickstart"}, template("quickstart/home"), _("Dashboard"), 1).leaf = true 9 | if nixio.fs.access("/usr/lib/lua/luci/view/quickstart/main_dev.htm") then 10 | entry({"admin", "quickstart_dev"}, call("quickstart_dev", {index={"admin", "quickstart_dev"}})).leaf = true 11 | end 12 | entry({"admin", "nas", "smart"}, call("quickstart_index", {index={"admin", "nas"}}), _("S.M.A.R.T"), 11).leaf = true 13 | entry({"admin", "network", "network_guide"}, call("networkguide_index"), _("Network Guide"), 10) 14 | entry({"admin", "network", "network_guide", "pages"}, call("quickstart_index", {index={"admin", "network", "network_guide", "pages"}})).leaf = true 15 | entry({"admin", "network", "interfaceconfig"}, call("quickstart_index", {index={"admin", "network"}}), _("Network Port"), 11).leaf = true 16 | 17 | entry({"admin", "nas", "quickstart"}).dependent = false 18 | entry({"admin", "nas", "quickstart", "auto_setup"}, post("auto_setup")) 19 | entry({"admin", "nas", "quickstart", "setup_result"}, call("setup_result")) 20 | else 21 | entry({"admin", "quickstart"}, call("redirect_fallback")).leaf = true 22 | end 23 | end 24 | 25 | function networkguide_index() 26 | luci.http.redirect(luci.dispatcher.build_url("admin", "network", "network_guide", "pages", "network")) 27 | end 28 | 29 | function redirect_fallback() 30 | luci.http.redirect(luci.dispatcher.build_url("admin", "status")) 31 | end 32 | 33 | function quickstart_index(param) 34 | luci.template.render("quickstart/main", {prefix=luci.dispatcher.build_url(unpack(param.index))}) 35 | end 36 | 37 | function quickstart_dev(param) 38 | luci.template.render("quickstart/main_dev", {prefix=luci.dispatcher.build_url(unpack(param.index))}) 39 | end 40 | 41 | function auto_setup() 42 | local os = require "os" 43 | local fs = require "nixio.fs" 44 | local rshift = nixio.bit.rshift 45 | 46 | -- json style 47 | -- local jsonc = require "luci.jsonc" 48 | -- local json_parse = jsonc.parse 49 | -- local req = json_parse(luci.http.content()) 50 | -- local pkgs = "" 51 | -- for k, v in pairs(req.packages) do 52 | -- pkgs = pkgs .. " " .. luci.util.shellquote(v) 53 | -- end 54 | 55 | -- form style 56 | local packages = luci.http.formvalue("packages") 57 | local pkgs = "" 58 | if type(packages) == "table" then 59 | if #packages > 0 then 60 | for k, v in pairs(packages) do 61 | pkgs = pkgs .. " " .. luci.util.shellquote(v) 62 | end 63 | end 64 | else 65 | if packages ~= nil and packages ~= "" then 66 | pkgs = luci.util.shellquote(packages) 67 | end 68 | end 69 | 70 | 71 | local ret 72 | if pkgs == "" then 73 | ret = { 74 | success = 1, 75 | scope = "params", 76 | error = "Parameter 'packages' undefined!", 77 | } 78 | else 79 | local cmd = "/usr/libexec/quickstart/auto_setup.sh " .. pkgs 80 | cmd = "/etc/init.d/tasks task_add auto_setup " .. luci.util.shellquote(cmd) 81 | local r = os.execute(cmd .. " >/var/log/auto_setup.stdout 2>/var/log/auto_setup.stderr") 82 | local e = fs.readfile("/var/log/auto_setup.stderr") 83 | local o = fs.readfile("/var/log/auto_setup.stdout") 84 | 85 | fs.unlink("/var/log/auto_setup.stderr") 86 | fs.unlink("/var/log/auto_setup.stdout") 87 | e = e or "" 88 | if r == 256 and e == "" then 89 | e = "os.execute exit code 1" 90 | end 91 | r = rshift(r,8) 92 | ret = { 93 | success = r, 94 | scope = "taskd", 95 | error = e, 96 | detail = o, 97 | } 98 | end 99 | luci.http.prepare_content("application/json") 100 | luci.http.write_json(ret) 101 | end 102 | 103 | function setup_result() 104 | local fs = require "nixio.fs" 105 | local taskd = require "luci.model.tasks" 106 | local packages = nil 107 | local success = nil 108 | local failed = nil 109 | local status = taskd.status("auto_setup") 110 | local ret = { 111 | } 112 | if status.running or status.exit_code ~= 404 then 113 | local item 114 | local po = fs.readfile("/var/log/auto_setup.input") or "" 115 | for item in po:gmatch("[^\n]+") do 116 | if packages then 117 | packages[#packages+1] = item 118 | else 119 | packages = {item} 120 | end 121 | end 122 | local so = fs.readfile("/var/log/auto_setup.success") or "" 123 | for item in so:gmatch("[^\n]+") do 124 | if success then 125 | success[#success+1] = item 126 | else 127 | success = {item} 128 | end 129 | end 130 | local fo = fs.readfile("/var/log/auto_setup.failed") or "" 131 | for item in fo:gmatch("[^\n]+") do 132 | if failed then 133 | failed[#failed+1] = item 134 | else 135 | failed = {item} 136 | end 137 | end 138 | ret.success = 0 139 | ret.result = { 140 | ongoing = status.running, 141 | packages = packages, 142 | success = success, 143 | failed = failed, 144 | } 145 | else 146 | ret.success = 404 147 | ret.scope = "taskd" 148 | ret.error = "task not found" 149 | end 150 | luci.http.prepare_content("application/json") 151 | luci.http.write_json(ret) 152 | end 153 | -------------------------------------------------------------------------------- /luasrc/view/quickstart/home.htm: -------------------------------------------------------------------------------- 1 | 2 | <% luci.template.render("quickstart/main", {prefix=luci.dispatcher.build_url("admin", "quickstart")}) %> 3 | -------------------------------------------------------------------------------- /luasrc/view/quickstart/main.htm: -------------------------------------------------------------------------------- 1 | <%+header%> 2 | <% 3 | local jsonc = require "luci.jsonc" 4 | local features = { "_lua_force_array_" } 5 | local configs = {} 6 | if luci.sys.call("which ota >/dev/null 2>&1 && ota >/dev/null 2>&1") == 0 then 7 | features[#features+1] = "ota" 8 | end 9 | if luci.sys.call("[ -d /ext_overlay ] >/dev/null 2>&1") == 0 then 10 | features[#features+1] = "sandbox" 11 | end 12 | if luci.sys.call("[ -e /etc/init.d/dockerd ] >/dev/null 2>&1") == 0 then 13 | features[#features+1] = "dockerd" 14 | end 15 | if luci.sys.call("[ -e /etc/init.d/unishare ] >/dev/null 2>&1") == 0 then 16 | features[#features+1] = "unishare" 17 | end 18 | if luci.sys.call("/etc/init.d/ttyd running >/dev/null 2>&1") == 0 then 19 | features[#features+1] = "ttyd" 20 | local uci = require "luci.model.uci".cursor() 21 | local port = uci:get_first("ttyd", "ttyd", "port") or "7681" 22 | local ssl = uci:get_first("ttyd", "ttyd", "ssl") or "0" 23 | configs["ttyd"] = { 24 | port = tonumber(port), 25 | ssl = ssl == "1" 26 | } 27 | end 28 | -%> 29 | 45 |
46 |
47 | 48 | 49 | <%+footer%> 50 | -------------------------------------------------------------------------------- /root/etc/uci-defaults/50_luci-quickstart: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache 4 | exit 0 5 | -------------------------------------------------------------------------------- /root/usr/libexec/quickstart/auto_setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | > /var/log/auto_setup.success 4 | > /var/log/auto_setup.failed 5 | > /var/log/auto_setup.input 6 | 7 | save_input() { 8 | local pkg 9 | for pkg in $@; do 10 | echo "$pkg" >> /var/log/auto_setup.input 11 | done 12 | } 13 | save_input "$@" 14 | 15 | . /lib/functions.sh 16 | 17 | load_quickstart_cfg() { 18 | config_load quickstart || return $? 19 | 20 | local main_dir conf_dir pub_dir dl_dir tmp_dir 21 | config_get main_dir "main" main_dir 22 | [ -z "$main_dir" ] && { echo "Home dir not configured!" >&2 ; return 1 ; } 23 | config_get conf_dir "main" conf_dir "$main_dir/Configs" 24 | config_get pub_dir "main" pub_dir "$main_dir/Public" 25 | config_get tmp_dir "main" tmp_dir "$main_dir/Caches" 26 | config_get dl_dir "main" dl_dir "$pub_dir/Downloads" 27 | 28 | export ISTORE_CONF_DIR="$conf_dir" 29 | export ISTORE_DL_DIR="$dl_dir" 30 | export ISTORE_CACHE_DIR="$tmp_dir" 31 | export ISTORE_PUBLIC_DIR="$pub_dir" 32 | 33 | mkdir -p "$ISTORE_CONF_DIR" "$ISTORE_DL_DIR" "$ISTORE_CACHE_DIR" "$ISTORE_PUBLIC_DIR" 34 | chmod 777 "$ISTORE_DL_DIR" 35 | } 36 | 37 | auto_setup_app() { 38 | local pkg=$1 39 | is-opkg install "app-meta-$pkg" || return 1 40 | sh -c ". '/usr/libexec/istorea/$pkg.sh'" 41 | } 42 | 43 | auto_setup_apps() { 44 | local pkg 45 | for pkg in $@; do 46 | echo "Setting up $pkg..." 47 | if auto_setup_app $pkg; then 48 | echo "Set up $pkg success" 49 | echo "$pkg" >> /var/log/auto_setup.success 50 | else 51 | echo "Set up $pkg failed" 52 | echo "$pkg" >> /var/log/auto_setup.failed 53 | fi 54 | done 55 | } 56 | 57 | load_quickstart_cfg || exit $? 58 | 59 | auto_setup_apps "$@" 60 | 61 | [ ! -s /var/log/auto_setup.failed ] 62 | -------------------------------------------------------------------------------- /root/usr/share/luci/menu.d/luci-app-quickstart.json: -------------------------------------------------------------------------------- 1 | { 2 | "admin/quickstart/*": { 3 | "title": "Dashboard", 4 | "order": 1, 5 | "action": { 6 | "type": "template", 7 | "path": "quickstart/home" 8 | } 9 | } 10 | } --------------------------------------------------------------------------------