Skip to content
Snippets Groups Projects
Commit c287b27c authored by Bob Mottram's avatar Bob Mottram
Browse files

Describe architecture

parent cb30f976
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,44 @@ Then run the administrator control panel and you should see the new app within *
Submit your working app to *https://code.freedombone.net/bashrc/freedombone/issues*, create a pull request or if you don't have an account there you can send patches via email to bob@freedombone.net.
* Translations
* Architecture
** Apps
Apps are scripts beginning with *src/freedombone-app-*. New scripts can be created with the template command described above. Each script contains a number of function interfaces which enable the app to be installed, removed, backed up and for logging to be turned on or off. The interfaces are:
#+BEGIN_SRC bash
install_appname
install_interactive_appname
configure_interactive_appname
remove_appname
upgrade_appname
backup_local_appname
restore_local_appname
backup_remote_appname
restore_remote_appname
logging_on_appname
logging_off_appname
add_user_appname
remove_user_appname
#+END_SRC
*install_interactive* and *configure_interactive* are only used by the dialog menu interface accessible via ssh.
*backup_remote* and *restore_local* are not currently implemented and are expected to be used by a future distributed network backup system.
** Web interface
The web interface consists of a set of html files within *webadmin/EN*. These use forms to reference some php files within *webadmin* and those generate files which are then picked up by a systemd daemon running in the background (webadmin.service) which is implemented by *src/freedombone-installer*.
Typically the daemon detects the presence of a file, extracts the variables from it, maybe does some additional validation and then does whatever it needs to do with those.
The separate daemon also avoids having php code making any direct changes to the underlying system, which could create security risks. The files created by the php scripts are very small and can typically be fully validated.
The user interface is regenerated by the function *install_web_admin* within *src/freedombone-utils-webadmin*.
** How translations happen
Translations are stored within *webadmin/translations*. When you select a language html files are copied from *webadmin/EN* and then the English strings are searched and replaced. Strings to be translated are indicated within the html files with the parameter *translate=*"*yes*".
Doing it this way avoids having duplicated versions of the many html files for different languages. See the *change_language* function within *src/freedombone-installer* for details of how this process works.
* Doing translations
These can be added or edited within the web UI. Navigate to http://freedombone/admin or its onion address, select *settings* then *language*. Select the language that you want to translate to then the *translate* button. In the right hand column you can then manually edit the translated strings. When you are done select the *update* button.
The format of the translation files is very simple. It's:
......
......@@ -4,7 +4,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Freedombone</title>
<!-- 2018-09-26 Wed 20:40 -->
<!-- 2018-09-27 Thu 10:55 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="generator" content="Org-mode" />
<meta name="author" content="Bob Mottram" />
......@@ -371,8 +371,80 @@ Submit your working app to <b><a href="https://code.freedombone.net/bashrc/freed
</div>
<div id="outline-container-sec-6" class="outline-2">
<h2 id="sec-6">Translations</h2>
<h2 id="sec-6">Architecture</h2>
<div class="outline-text-2" id="text-6">
</div><div id="outline-container-sec-6-1" class="outline-3">
<h3 id="sec-6-1">Apps</h3>
<div class="outline-text-3" id="text-6-1">
<p>
Apps are scripts beginning with <b>src/freedombone-app-</b>. New scripts can be created with the template command described above. Each script contains a number of function interfaces which enable the app to be installed, removed, backed up and for logging to be turned on or off. The interfaces are:
</p>
<div class="org-src-container">
<pre class="src src-bash">install_appname
install_interactive_appname
configure_interactive_appname
remove_appname
upgrade_appname
backup_local_appname
restore_local_appname
backup_remote_appname
restore_remote_appname
logging_on_appname
logging_off_appname
add_user_appname
remove_user_appname
</pre>
</div>
<p>
<b>install_interactive</b> and <b>configure_interactive</b> are only used by the dialog menu interface accessible via ssh.
</p>
<p>
<b>backup_remote</b> and <b>restore_local</b> are not currently implemented and are expected to be used by a future distributed network backup system.
</p>
</div>
</div>
<div id="outline-container-sec-6-2" class="outline-3">
<h3 id="sec-6-2">Web interface</h3>
<div class="outline-text-3" id="text-6-2">
<p>
The web interface consists of a set of html files within <b>webadmin/EN</b>. These use forms to reference some php files within <b>webadmin</b> and those generate files which are then picked up by a systemd daemon running in the background (webadmin.service) which is implemented by <b>src/freedombone-installer</b>.
</p>
<p>
Typically the daemon detects the presence of a file, extracts the variables from it, maybe does some additional validation and then does whatever it needs to do with those.
</p>
<p>
The separate daemon also avoids having php code making any direct changes to the underlying system, which could create security risks. The files created by the php scripts are very small and can typically be fully validated.
</p>
<p>
The user interface is regenerated by the function <b>install_web_admin</b> within <b>src/freedombone-utils-webadmin</b>.
</p>
</div>
</div>
<div id="outline-container-sec-6-3" class="outline-3">
<h3 id="sec-6-3">How translations happen</h3>
<div class="outline-text-3" id="text-6-3">
<p>
Translations are stored within <b>webadmin/translations</b>. When you select a language html files are copied from <b>webadmin/EN</b> and then the English strings are searched and replaced. Strings to be translated are indicated within the html files with the parameter <b>translate=</b>"<b>yes</b>".
</p>
<p>
Doing it this way avoids having duplicated versions of the many html files for different languages. See the <b>change_language</b> function within <b>src/freedombone-installer</b> for details of how this process works.
</p>
</div>
</div>
</div>
<div id="outline-container-sec-7" class="outline-2">
<h2 id="sec-7">Doing translations</h2>
<div class="outline-text-2" id="text-7">
<p>
These can be added or edited within the web UI. Navigate to <a href="http://freedombone/admin">http://freedombone/admin</a> or its onion address, select <b>settings</b> then <b>language</b>. Select the language that you want to translate to then the <b>translate</b> button. In the right hand column you can then manually edit the translated strings. When you are done select the <b>update</b> button.
</p>
......@@ -393,9 +465,9 @@ If you prefer to edit the raw files within your own editor of choice they can be
</div>
</div>
<div id="outline-container-sec-7" class="outline-2">
<h2 id="sec-7">Icons</h2>
<div class="outline-text-2" id="text-7">
<div id="outline-container-sec-8" class="outline-2">
<h2 id="sec-8">Icons</h2>
<div class="outline-text-2" id="text-8">
<p>
If you want to change the icons of the web user interface they can be found within the <b>webadmin/images</b> directory of the repo.
</p>
......@@ -406,9 +478,9 @@ Icons used for the mesh desktop can be found within <b>img</b> and <b>img/avatar
</div>
</div>
<div id="outline-container-sec-8" class="outline-2">
<h2 id="sec-8">Customising mesh images</h2>
<div class="outline-text-2" id="text-8">
<div id="outline-container-sec-9" class="outline-2">
<h2 id="sec-9">Customising mesh images</h2>
<div class="outline-text-2" id="text-9">
<p>
If you want to make your own specially branded version of the mesh images, such as for a particular event, then to change the default desktop backgrounds edit the images within <b>img/backgrounds</b> and to change the available avatars and desktop icons edit the images within <b>img/avatars</b>. Re-create disk images using the instructions shown previously.
</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment