Skip to content

CNDB/CNDB

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README for the CNDB model

Authors

Christian Tanzer <tanzer@swing.co.at>

Ralf Schlatterbeck <rsc@runtux.com>

The common node database is a framework that captures the object model for community networks, in particular community wireless networks.

It uses the tapyr framework.

Object model

This object model (in SVG format) is automagically rendered using graph.py, the result of the last run is kept under version control (so you can see our progress) in nodedb.svg.

Object model graph

Some notes on the object model: We try to keep only the relevant attributes of a real-world object in the object itself — everything else is modelled as a relation. The blue arrows denote inheritance relationships ("IS_A"). The yellow arrows are attributes, e.g., the Node has an attribute manager of type Person which is required (this is implemented as a foreign key in the database).

The black arrows are 1:N relationships (also implemented as foreign keys in the database) but the relation objects have their own identity. This is used to separate the attribute of an object from its links to other objects. It also implements referential integrity constraints: A link is deleted if the object to which it points is deleted.

There are different link attributes. A two-way link (implementing an N:M relationship) has a left and a right side which are also the default attribute names. An example is Wireless_Interface_uses_Wireless_Channel, in the diagram this link object is displayed as _uses_ between the CNDB.Wireless_Channel and CNDB.Wireless_Interface. The black arrows connecting these are labelled left and right which indicates how this should be read. Note that in this case the left attribute is on the right side in the diagram. A two-way link like this has an identity and can have additional attributes besides left and right.

There are also unary links with only a left side. An example is the Device which cannot exist without its left attribute, the Device_Type. There can be several devices with the same device type. This relationship is inherited by Antenna and Antenna_Type and Net_Device and Net_Device_Type.

System requirements

Package Installation for Debian Stable aka Wheezy

The following is an example installation on Debian Wheezy. It contains some information that is applicable to other distributions but is quite Debian-specific in other parts.

If you are running in a virtual machine, you need at least 384 MB of RAM, 256 MB isn't enough.

Some of the needed Packages are either not in Debian or are too old to be useful. The following packages can be installed via the Debian installer:

$ apt-get install \
    apache2-mpm-worker build-essential git libapache2-mod-fcgid \
    postgresql python-pip python-babel python-bs4 python-dateutil \
    python-dev python-distribute python-docutils python-flup \
    python-jinja2 python-m2crypto python-openssl python-passlib \
    python-psycopg2 python-pyasn1 python-pyquery python-sqlalchemy \
    python-tz python-virtualenv python-werkzeug swig

Other packages can be installed using pip — note that you may want to install some of these into a virtual python environment (virtualenv), see later in sectioni How to install — depending on your estimate how often you want to change external packages:

$ pip install plumbum py-bcrypt rcssmin rjsmin rsclib pyspkac

Create user and database user permitted to create databases. For instance, for Funkfeuer Wien:

$ adduser ffw
$ sudo postgres createuser -d ffw -P

Note: Depending on your setup the createuser command has to be executed by a different user.

How to install

Assuming an account ffw located in /home/ffw, you'll need something like the following:

### Logged in as `ffw`
$ cd /home/ffw

### Define config
$ vi .ffw.config
  ### Add the lines (using the appropriate values for **your** install)::
    cookie_salt   = 'some random value, e.g., the result of uuid.uuid4 ()'
    db_name       = "ffw"
    db_url        = "postgresql://<account>:<password>@localhost"
    languages     = "de", "en"
    locale_code   = "de"
    smtp_server   = "localhost"
    target_db_url = db_url
    time_zone     = "Mars/Olympos Mons"

### create a virtual environment for Python
$ mkdir bin
$ mkdir PVE
$ python -m virtualenv --system-site-packages PVE/std
$ (cd PVE ; ln -s std active)

Depending on the packages you have already installed system-wide, you may want to install some packages into the virtual environment if you anticipate that these will change:

### install Python packages into the virtualenv
### if one of these packages is already installed in the system
### Python, you'll need to say `pip install --upgrade`, not `pip install`
$ source PVE/active/bin/activate
$ pip install plumbum pytz py-bcrypt rcssmin rjsmin rsclib pyspkac

Then we continue with the setup of an active and a passive branch of the web application. With this you can upgrade the passive application while the active application is running without risking a non-functional system should something go wrong during the upgrade:

### create a directory with an `active` and `passive` branch of the
### web application
###
### * the active branch will be the one that serves apache requests
###
### * the passive branch can be used for updating the software and
###   testing it. It all works will the branches can be switched
###

$ mkdir fcgi
$ mkdir -p v/1/www/media
$ ln -s v/1 active
$ ln -s v/2 passive
$ git clone git://github.com/Tapyr/tapyr.git v/1/tapyr
$ git clone git://github.com/CNDB/CNDB.git   v/1/cndb
$ git clone git://github.com/FFM/FFW.git     v/1/www/app
$ (cd v/1/www/media ; ln -s ../app/media/images images)
$ cp -a v/1 v/2

$ vi active/.ffw.config
  ### Add the lines (using the appropriate values for **your** install)::
    db_name       = "ffw1"
$ vi passive/.ffw.config
    db_name       = "ffw2"

### Define PYTHONPATH
$ export PYTHONPATH=/home/ffw/active/cndb:/home/ffw/active/tapyr

With a small config-file, the deploy-app can automatically create an Apache configuration file and a fcgi script. You can find sample config-files in active/www/app/httpd_config/. For instance, active/www/app/httpd_config/ffw_gg32_com__443.config contains:

config_path     = "~/fcgi/ffw_gg32_com__443.config"
host_macro      = "gtw_host_ssl"
port            = "443"
script_path     = "~/fcgi/ffw_gg32_com__443.fcgi"
server_admin    = "christian.tanzer@gmail.com"
server_name     = "ffw.gg32.com"
ssl_key_name    = "srvr1-gg32-com-2048"

Create a config:

### Create a fcgi script and config for Apache
$ python active/www/app/deploy.py create_config \
    -HTTP_Config <your-config> -input_encoding=utf-8

You can use the created Apache configuration as is, or modify it manually or by modifiying the template.

For Debian, the apache configuration should be placed into /etc/apache2/sites-available/, e.g., into the file nodedb2.example.com, and enabled. You probably will have to disable the default site installed. We used the following commands — we also enable some needed modules:

$ a2ensite nodedb2.example.com
$ a2dissite default
$ a2enmod expires
$ a2enmod fcgid
$ /etc/init.d/apache2 restart

For https sites, you'll also need the modules:

$ a2enmod rewrite
$ a2enmod ssl

Finally we create a database and populate it with data:

### Create a database
$ python active/www/app/deploy.py app create

### Put some data into the database

Whenever we need to upgrade the installation, we can update the passive configuration, set up everything, migrate the data from the active to the passive configuration, and if everything went OK, enable it by exchanging the symbolic links to the active and passive configuration:

### Test deployment script and generate some needed files
  ### Update source code
  $ python passive/www/app/deploy.py update

  ### Byte compile python files
  $ python passive/www/app/deploy.py pycompile

  ### Compile translations
  $ python passive/www/app/deploy.py babel compile

  ### Migrate database from active to passive
  $ python passive/www/app/deploy.py migrate -Active -Passive -verbose

  ### Setup app cache
  $ python passive/www/app/deploy.py setup_cache

### Switch active and passive branches
$ python passive/www/app/deploy.py switch
$ sudo /etc/init.d/apache2 restart

Contact

Christian Tanzer <tanzer@swing.co.at> and Ralf Schlatterbeck <rsc@runtux.com>

About

Funkfeuer model of nodes

Resources

License

Unknown, BSD-3-Clause licenses found

Licenses found

Unknown
LICENSE
BSD-3-Clause
BSD_3_LICENSE

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 90.0%
  • Gettext Catalog 8.6%
  • JavaScript 1.3%
  • Shell 0.1%