Difference between revisions of "Mesh/Firmware/Web Admin Development"

From Sudo Room
Jump to navigation Jump to search
(Created page with "== Web Admin Development == See [Mesh/Firmware Firmware Wants] for a description of what we're hoping to be able to implement with our web admin page. === Luci === Luci is ...")
 
m (adding resource links)
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Web Admin Development ==


See [Mesh/Firmware Firmware Wants] for a description of what we're hoping to be able to implement with our web admin page.
This used to be a page on our old Luci-based web admin UI, but that UI is being deprecated.


=== Luci ===
We are now writing [https://github.com/sudomesh/sudowrt-web-ui a new UI] that uses ubus via uhttpd-mod-ubus instead of Luci.


Luci is the web admin framework that OpenWrt ships with and seems to be a popular choice among other projects. It is written in Lua, which is a sort of procedural language that's kind of a mix between javascript and ruby (??).  
ubus is the system bus for OpenWRT, similar to D-Bus but very light-weight. Using ubus it is possible to configure all OpenWRT config files in the /etc/config directory, and even run scripts on the router. uhttpd-mod-ubus allows access to ubus over http with access restricted by access control lists. More info on this [http://wiki.openwrt.org/doc/techref/ubus#access_to_ubus_over_http here].


All of the Luci code is contained on the router in /usr/lib/lua/luci
The new UI includes a simulator (written in node.js) that pretends to be a sudowrt router, which makes it easy for developers to test their client-side code without having to always have a sudowrt router with them.


Documentation related to the Luci project can be found at:
== Resource Links ==


[http://luci.subsignal.org/trac/wiki/Documentation Luci Documentation]
* [https://wiki.openwrt.org/doc/techref/ubus#access_to_ubus_over_http OpenWRT.org - Access to ubus over HTTP]
* [https://wiki.openwrt.org/doc/techref/luci2 Luci2 Web Interface Documentation]
* [https://en.wikipedia.org/wiki/XMLHttpRequest Wikipedia - XMLHttpRequest]
* [https://github.com/sudomesh/sudowrt-firmware Github - SudoWRT-Firmware]

Latest revision as of 21:34, 10 May 2016

This used to be a page on our old Luci-based web admin UI, but that UI is being deprecated.

We are now writing a new UI that uses ubus via uhttpd-mod-ubus instead of Luci.

ubus is the system bus for OpenWRT, similar to D-Bus but very light-weight. Using ubus it is possible to configure all OpenWRT config files in the /etc/config directory, and even run scripts on the router. uhttpd-mod-ubus allows access to ubus over http with access restricted by access control lists. More info on this here.

The new UI includes a simulator (written in node.js) that pretends to be a sudowrt router, which makes it easy for developers to test their client-side code without having to always have a sudowrt router with them.

Resource Links