2016-03-23 18:39:41 +01:00
# FabManager
2015-05-05 03:10:25 +02:00
2016-05-03 11:27:01 +02:00
FabManager is the FabLab management solution. It is web-based, open-source and totally free.
2015-05-05 03:10:25 +02:00
2017-02-15 15:41:25 +01:00
##### Table of Contents
2016-03-23 18:39:41 +01:00
1. [Software stack ](#software-stack )
2. [Contributing ](#contributing )
2016-09-01 18:06:18 +02:00
3. [Setup a production environment ](#setup-a-production-environment )
2016-04-11 20:24:09 +02:00
4. [Setup a development environment ](#setup-a-development-environment )< br />
4.1. [General Guidelines ](#general-guidelines )< br />
4.2. [Environment Configuration ](#environment-configuration )
5. [PostgreSQL ](#postgresql )< br />
5.1. [Install PostgreSQL 9.4 on Ubuntu/Debian ](#postgresql-on-debian )< br />
5.2. [Install and launch PostgreSQL on MacOS X ](#postgresql-on-macosx )< br />
2016-09-01 18:06:18 +02:00
5.3. [Setup the FabManager database in PostgreSQL ](#setup-fabmanager-in-postgresql )< br />
5.4. [PostgreSQL Limitations ](#postgresql-limitations )
2016-04-11 20:24:09 +02:00
6. [ElasticSearch ](#elasticsearch )< br />
6.1. [Install ElasticSearch on Ubuntu/Debian ](#elasticsearch-on-debian )< br />
6.2. [Install ElasticSearch on MacOS X ](#elasticsearch-on-macosx )< br />
2016-06-14 16:24:46 +02:00
6.3. [Setup ElasticSearch for the FabManager ](#setup-fabmanager-in-elasticsearch )< br />
6.4. [Backup and Restore ](#backup-and-restore-elasticsearch )
2016-04-11 20:24:09 +02:00
7. [Internationalization (i18n) ](#i18n )< br />
7.1. [Translation ](#i18n-translation )< br />
7.1.1. [Front-end translations ](#i18n-translation-front )< br />
7.1.2. [Back-end translations ](#i18n-translation-back )< br />
7.2. [Configuration ](#i18n-configuration )< br />
7.2.1. [Settings ](#i18n-settings )< br />
7.2.2. [Applying changes ](#i18n-apply )
2016-05-03 11:27:01 +02:00
8. [Open Projects ](#open-projects )
2016-06-16 18:01:45 +02:00
9. [Plugins ](#plugins )
2016-09-12 17:29:44 +02:00
10. [Single Sign-On ](#sso )
11. [Known issues ](#known-issues )
12. [Related Documentation ](#related-documentation )
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
< a name = "software-stack" > < / a >
## Software stack
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
FabManager is a Ruby on Rails / AngularJS web application that runs on the following software:
2015-05-05 03:10:25 +02:00
2016-09-01 18:06:18 +02:00
- Ubuntu LTS 14.04+ / Debian 8+
2016-03-31 11:56:58 +02:00
- Ruby 2.3
2016-03-23 18:39:41 +01:00
- Git 1.9.1+
- Redis 2.8.4+
- Sidekiq 3.3.4+
- Elasticsearch 1.7
- PostgreSQL 9.4
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
< a name = "contributing" > < / a >
## Contributing
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
Contributions are welcome. Please read [the contribution guidelines ](CONTRIBUTING.md ) for more information about the contribution process.
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
**IMPORTANT**: **do not** update Arshaw/fullCalendar.js as it contains a hack for the remove-event cross.
2015-05-05 03:10:25 +02:00
2016-04-11 20:24:09 +02:00
< a name = "setup-a-production-environment" > < / a >
2016-09-01 18:06:18 +02:00
## Setup a production environment
2016-04-11 20:24:09 +02:00
2016-09-01 18:06:18 +02:00
To run fab-manager as a production application, this is highly recommended to use [Docker ](https://www.docker.com/ ).
The procedure to follow is described in the [docker readme ](docker/README.md ).
2016-04-11 20:24:09 +02:00
2016-03-23 18:39:41 +01:00
< a name = "setup-a-development-environment" > < / a >
## Setup a development environment
2015-05-05 03:10:25 +02:00
2016-09-01 18:06:18 +02:00
In you only intend to run fab-manager on your local machine for testing purposes or to contribute to the project development, you can set it up with the following procedure.
2016-03-23 18:39:41 +01:00
< a name = "general-guidelines" > < / a >
### General Guidelines
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
1. Install RVM with the ruby version specified in the [.ruby-version file ](.ruby-version ).
For more details about the process, Please read the [official RVM documentation ](http://rvm.io/rvm/install ).
2016-05-03 11:27:01 +02:00
2015-05-05 03:10:25 +02:00
2. Retrieve the project from Git
2016-03-23 18:39:41 +01:00
```bash
git clone https://github.com/LaCasemate/fab-manager.git
```
3. Install the software dependencies.
2016-08-23 16:59:12 +02:00
First install [PostgreSQL ](#postgresql ) and [ElasticSearch ](#elasticsearch ) as specified in their respective documentations.
Then install the other dependencies:
2016-03-23 18:39:41 +01:00
- For Ubuntu/Debian:
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
```bash
2016-08-23 16:59:12 +02:00
sudo apt-get install libpq-dev redis-server imagemagick
2016-03-23 18:39:41 +01:00
```
- For MacOS X:
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
```bash
2016-08-23 16:59:12 +02:00
brew install redis imagemagick
2016-03-23 18:39:41 +01:00
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
4. Init the RVM instance and check it was correctly configured
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
```bash
cd fab-manager
rvm current
2016-03-31 10:06:07 +02:00
# Must print ruby-X.Y.Z@fab-manager (where X.Y.Z match the version in .ruby-version)
2016-03-23 18:39:41 +01:00
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
5. Install bundler in the current RVM gemset
```bash
gem install bundler
```
6. Install the required ruby gems
```bash
bundle install
```
2016-05-03 11:27:01 +02:00
2016-03-31 21:16:11 +02:00
7. Create the default configuration files **and configure them!** (see the [Environment Configuration ](#environment-configuration ) section)
2016-05-03 11:27:01 +02:00
2016-03-31 21:16:11 +02:00
```bash
cp config/database.yml.default config/database.yml
cp config/application.yml.default config/application.yml
2016-05-03 11:27:01 +02:00
vi config/application.yml
2016-03-31 21:16:11 +02:00
# or use your favorite text editor instead of vi (nano, ne...)
```
2016-05-03 11:27:01 +02:00
2016-08-23 16:59:12 +02:00
8. Build the database. You may have to follow the steps described in [the PostgreSQL configuration chapter ](#setup-fabmanager-in-postgresql ) before, if you don't already had done it.
2017-02-16 11:21:43 +01:00
**Warning** : **NO NOT** run `rake db:setup` instead of these commands, as this will not run some required raw SQL instructions.
2016-03-23 18:39:41 +01:00
```bash
2017-02-16 11:21:43 +01:00
rake db:create
rake db:migrate
rake db:seed
2016-03-23 18:39:41 +01:00
```
2016-05-03 11:27:01 +02:00
2016-03-31 21:16:11 +02:00
9. Create the pids folder used by Sidekiq. If you want to use a different location, you can configure it in `config/sidekiq.yml`
2016-03-23 18:39:41 +01:00
```bash
mkdir -p tmp/pids
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
10. Start the development web server
```bash
foreman s -p 3000
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
11. You should now be able to access your local development FabManager instance by accessing `http://localhost:3000` in your web browser.
12. You can login as the default administrator using the following credentials:
- user: admin@fab-manager.com
2016-05-03 11:27:01 +02:00
- password: adminadmin
2016-03-23 18:39:41 +01:00
< a name = "environment-configuration" > < / a >
### Environment Configuration
The settings in `config/application.yml` configure the environment variables of the application.
If you are in a development environment, your can keep the default values, otherwise, in production, values must be configured carefully.
2016-03-24 11:03:26 +01:00
POSTGRES_HOST
2016-03-23 18:39:41 +01:00
DNS name or IP address of the server hosting the PostgreSQL database of the application (see [PostgreSQL ](#postgresql )).
2016-09-01 18:06:18 +02:00
This value is only used when deploying with Docker, otherwise this is configured in `config/database.yml` .
2016-03-23 18:39:41 +01:00
2016-03-24 11:03:26 +01:00
POSTGRES_PASSWORD
2016-03-23 18:39:41 +01:00
Password for the PostgreSQL user, as specified in `database.yml` .
2016-10-07 11:11:58 +02:00
Please see [Setup the FabManager database in PostgreSQL ](#setup-fabmanager-in-postgresql ) for information on how to create a user and set his password.
2016-09-01 18:06:18 +02:00
This value is only used when deploying with Docker, otherwise this is configured in `config/database.yml` .
2016-03-23 18:39:41 +01:00
2016-03-24 11:03:26 +01:00
REDIS_HOST
2016-03-23 18:39:41 +01:00
DNS name or IP address of the server hosting the redis database.
2016-03-24 11:03:26 +01:00
ELASTICSEARCH_HOST
2016-03-23 18:39:41 +01:00
DNS name or IP address of the server hosting the elasticSearch database.
2016-03-24 11:03:26 +01:00
SECRET_KEY_BASE
2016-03-23 18:39:41 +01:00
Used by the authentication system to generate random tokens, eg. for resetting passwords.
2016-04-05 11:09:17 +02:00
Used by Rails to verify the integrity of signed cookies.
2016-03-23 18:39:41 +01:00
You can generate such a random key by running `rake secret` .
2016-03-24 11:03:26 +01:00
STRIPE_API_KEY & STRIPE_PUBLISHABLE_KEY
2016-03-23 18:39:41 +01:00
2016-03-24 12:06:07 +01:00
Key and secret used to identify you Stripe account through the API.
2016-03-23 18:39:41 +01:00
Retrieve them from https://dashboard.stripe.com/account/apikeys.
2016-03-24 11:03:26 +01:00
STRIPE_CURRENCY
2016-03-23 18:39:41 +01:00
2016-05-03 11:27:01 +02:00
Currency used by stripe to charge the final customer.
2016-03-23 18:39:41 +01:00
See https://support.stripe.com/questions/which-currencies-does-stripe-support for a list of available 3-letters ISO code.
2016-05-03 11:27:01 +02:00
**BEWARE**: stripe currency cannot be changed during the application life.
2016-03-24 11:03:26 +01:00
Changing the currency after the application has already run, may result in several bugs and prevent the users to pay through stripe.
So set this setting carefully before starting the application for the first time.
INVOICE_PREFIX
2016-03-23 18:39:41 +01:00
2016-04-05 11:09:17 +02:00
When payments are done on the platform, an invoice will be generated as a PDF file.
The PDF file name will be of the form "(INVOICE_PREFIX) - (invoice ID) _ (invoice date) .pdf"
2016-03-23 18:39:41 +01:00
2016-03-24 11:03:26 +01:00
FABLAB_WITHOUT_PLANS
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
If set to 'true', the subscription plans will be fully disabled and invisible in the application.
2017-02-15 15:41:25 +01:00
It is not recommended to disable plans if at least one subscription was took on the platform.
FABLAB_WITHOUT_SPACES
If set to 'false', enable the spaces management and reservation in the application.
It is not recommended to disable spaces if at least one space reservation was made on the system.
2015-05-05 03:10:25 +02:00
2016-03-24 11:03:26 +01:00
DEFAULT_MAIL_FROM
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
When sending notification mails, the platform will use this address to identify the sender.
2015-05-05 03:10:25 +02:00
2016-03-24 11:03:26 +01:00
DELIVERY_METHOD
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
Configure the Rails' Action Mailer delivery method.
See http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details.
2016-03-24 11:03:26 +01:00
DEFAULT_HOST, DEFAULT_PROTOCOL, SMTP_ADDRESS, SMTP_PORT, SMTP_USER_NAME & SMTP_PASSWORD
2016-03-23 18:39:41 +01:00
When DELIVERY_METHOD is set to **smtp** , configure the SMTP server parameters.
See http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details.
DEFAULT_HOST is also used to configure Google Analytics.
2016-03-24 11:03:26 +01:00
GA_ID
2016-03-23 18:39:41 +01:00
Identifier of your Google Analytics account.
2016-03-24 11:03:26 +01:00
DISQUS_SHORTNAME
2016-03-23 18:39:41 +01:00
Unique identifier of your [Disqus ](http://www.disqus.com ) forum.
2016-04-05 11:09:17 +02:00
Disqus forums are used to allow visitors to comment on projects.
2016-10-07 11:11:58 +02:00
See https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname- for more information.
2016-03-23 18:39:41 +01:00
2016-03-24 11:03:26 +01:00
TWITTER_NAME
2016-03-23 18:39:41 +01:00
2016-10-07 11:11:58 +02:00
Identifier of the Twitter account, from witch the last tweet will be fetched and displayed on the home page.
2016-11-24 09:12:39 +01:00
This value can be graphically overridden during the application's lifecycle in Admin/Customization/Home page/Twitter Feed.
2016-08-01 15:45:56 +02:00
It will also be used for [Twitter Card analytics ](https://dev.twitter.com/cards/analytics ).
2016-03-23 18:39:41 +01:00
2016-03-24 11:03:26 +01:00
TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET, TWITTER_ACCESS_TOKEN & TWITTER_ACCESS_TOKEN_SECRET
2016-03-23 18:39:41 +01:00
Keys and secrets to access the twitter API.
2016-04-05 11:09:17 +02:00
Retrieve them from https://apps.twitter.com
2016-03-23 18:39:41 +01:00
2016-08-01 15:45:56 +02:00
FACEBOOK_APP_ID
This is optional. You can follow [this guide to get your personal App ID ](https://developers.facebook.com/docs/apps/register ).
If you do so, you'll be able to customize and get statistics about project shares on Facebook.
2016-09-27 14:08:04 +02:00
LOG_LEVEL
2016-10-07 11:11:58 +02:00
This parameter configures the logs verbosity.
Available log levels can be found [here ](http://guides.rubyonrails.org/debugging_rails_applications.html#log-levels ).
2016-09-27 14:08:04 +02:00
ALLOWED_EXTENSIONS
Exhaustive list of file's extensions available for public upload as project's CAO attachements.
Each item in the list must be separated from the others by a space char.
You will probably want to check that this list match the `ALLOWED_MIME_TYPES` values below.
Please consider that allowing file archives (eg. ZIP) or binary executable (eg. EXE) may result in a **dangerous** security issue and must be avoided in any cases.
ALLOWED_MIME_TYPES
Exhaustive list of file's mime-types available for public upload as project's CAO attachements.
Each item in the list must be separated from the others by a space char.
You will probably want to check that this list match the `ALLOWED_EXTENSIONS` values above.
Please consider that allowing file archives (eg. application/zip) or binary executable (eg. application/exe) may result in a **dangerous** security issue and must be avoided in any cases.
2016-11-08 16:24:34 +01:00
MAX_IMAGE_SIZE
2017-02-15 15:41:25 +01:00
Maximum size (in bytes) allowed for image uploaded on the platform.
2016-11-08 16:24:34 +01:00
This parameter concerns events, plans, user's avatars, projects and steps of projects.
If this parameter is not specified the maximum size allowed will be 2MB.
2016-09-27 14:08:04 +02:00
Settings related to Open Projects
See the [Open Projects ](#open-projects ) section for a detailed description of these parameters.
2016-03-24 11:03:26 +01:00
Settings related to i18n
2016-03-23 18:39:41 +01:00
See the [Settings ](#i18n-settings ) section of the [Internationalization (i18n) ](#i18n ) paragraph for a detailed description of these parameters.
< a name = "postgresql" > < / a >
## PostgreSQL
< a name = "postgresql-on-debian" > < / a >
### Install PostgreSQL 9.4 on Ubuntu/Debian
1. Create the file `/etc/apt/sources.list.d/pgdg.list` , and append it one the following lines:
- `deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main` (Ubuntu 14.04 Trusty)
2016-08-23 16:59:12 +02:00
- `deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main` (Ubuntu 16.04 Xenial)
2016-03-23 18:39:41 +01:00
- `deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main` (Debian 8 Jessie)
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
2. Import the repository signing key, and update the package lists
```bash
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
```
3. Install PostgreSQL 9.4
```bash
sudo apt-get install postgresql-9.4
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
< a name = "postgresql-on-macosx" > < / a >
### Install and launch PostgreSQL on MacOS X
This assumes you have [Homebrew ](http://brew.sh/ ) installed on your system.
Otherwise, please follow the official instructions on the project's website.
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
1. Update brew and install PostgreSQL
```bash
brew update
2016-08-23 16:59:12 +02:00
brew install homebrew/versions/postgresql94
2016-03-23 18:39:41 +01:00
```
2016-05-03 11:27:01 +02:00
2. Launch PostgreSQL
2016-03-23 18:39:41 +01:00
```bash
# Start postgresql at login with launchd
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
# Load PostgreSQL now
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
< a name = "setup-fabmanager-in-postgresql" > < / a >
### Setup the FabManager database in PostgreSQL
2017-02-16 11:21:43 +01:00
Before running `rake db:create` , you have to make sure that the user configured in [config/database.yml ](config/database.yml.default ) for the `development` environment exists.
2016-03-23 18:39:41 +01:00
To create it, please follow these instructions:
2015-05-05 03:10:25 +02:00
2016-08-23 11:50:48 +02:00
1. Run the PostgreSQL administration command line interface, logged as the postgres user
2016-08-23 16:59:12 +02:00
- For Ubuntu/Debian:
```bash
sudo -i -u postgres
psql
```
- For MacOS X:
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
```bash
2016-08-23 16:59:12 +02:00
sudo psql -U $(whoami) postgres
2016-03-23 18:39:41 +01:00
```
2016-08-23 16:59:12 +02:00
If you get an error running this command, please check your [pg_hba.conf ](https://www.postgresql.org/docs/current/static/auth-pg-hba-conf.html ) file.
2016-05-03 11:27:01 +02:00
2016-08-23 16:59:12 +02:00
2. Create a new user in PostgreSQL (in this example, the user will be named `sleede` )
2016-03-23 18:39:41 +01:00
```sql
CREATE USER sleede;
```
2015-05-05 03:10:25 +02:00
2016-08-23 16:59:12 +02:00
3. Grant him the right to create databases
2016-03-23 18:39:41 +01:00
```sql
ALTER ROLE sleede WITH CREATEDB;
```
2016-05-03 11:27:01 +02:00
2017-02-16 11:21:43 +01:00
4. Then, attribute a password to this user
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
```sql
ALTER USER sleede WITH ENCRYPTED PASSWORD 'sleede';
```
2017-02-16 11:21:43 +01:00
5. Finally, have a look at the [PostgreSQL Limitations ](#postgresql-limitations ) section or some errors will occurs preventing you from finishing the installation procedure.
2016-10-07 11:11:58 +02:00
2016-09-01 18:06:18 +02:00
< a name = "postgresql-limitations" > < / a >
### PostgreSQL Limitations
2016-09-01 18:10:54 +02:00
- While setting up the database, we'll need to activate two PostgreSQL extensions: [unaccent ](https://www.postgresql.org/docs/current/static/unaccent.html ) and [trigram ](https://www.postgresql.org/docs/current/static/pgtrgm.html ).
This can only be achieved if the user, configured in `config/database.yml` , was granted the _SUPERUSER_ role **OR** if these extensions were white-listed.
2016-09-05 08:54:01 +02:00
So here's your choices, mainly depending on your security requirements:
2016-09-01 18:06:18 +02:00
- Use the default PostgreSQL super-user (postgres) as the database user of fab-manager.
- Set your user as _SUPERUSER_ ; run the following command in `psql` (after replacing `sleede` with you user name):
2016-10-07 11:11:58 +02:00
2016-09-01 18:06:18 +02:00
```sql
ALTER USER sleede WITH SUPERUSER;
```
2016-10-07 11:11:58 +02:00
- Install and configure the PostgreSQL extension [pgextwlist ](https://github.com/dimitri/pgextwlist ).
2016-09-01 18:06:18 +02:00
Please follow the instructions detailed on the extension website to whitelist `unaccent` and `trigram` for the user configured in `config/database.yml` .
2016-10-07 11:11:58 +02:00
- Some users may want to use another DBMS than PostgreSQL.
2016-09-01 18:06:18 +02:00
This is currently not supported, because of some PostgreSQL specific instructions that cannot be efficiently handled with the ActiveRecord ORM:
- `app/controllers/api/members_controllers.rb@list` is using `ILIKE`
- `app/controllers/api/invoices_controllers.rb@list` is using `ILIKE` and `date_trunc()`
- `db/migrate/20160613093842_create_unaccent_function.rb` is using [unaccent ](https://www.postgresql.org/docs/current/static/unaccent.html ) and [trigram ](https://www.postgresql.org/docs/current/static/pgtrgm.html ) modules and defines a PL/pgSQL function (`f_unaccent()`)
- `app/controllers/api/members_controllers.rb@search` is using `f_unaccent()` (see above) and `regexp_replace()`
2016-09-14 18:13:18 +02:00
- `db/migrate/20150604131525_add_meta_data_to_notifications.rb` is using [jsonb ](https://www.postgresql.org/docs/9.4/static/datatype-json.html ), a PostgreSQL 9.4+ datatype.
2016-09-15 17:54:48 +02:00
- `db/migrate/20160915105234_add_transformation_to_o_auth2_mapping.rb` is using [jsonb ](https://www.postgresql.org/docs/9.4/static/datatype-json.html ), a PostgreSQL 9.4+ datatype.
2016-09-01 18:06:18 +02:00
- If you intend to contribute to the project code, you will need to run the test suite with `rake test` .
2016-10-07 11:11:58 +02:00
This also requires your user to have the _SUPERUSER_ role.
Please see the [known issues ](#known-issues ) section for more information about this.
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
< a name = "elasticsearch" > < / a >
## ElasticSearch
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
ElasticSearch is a powerful search engine based on Apache Lucene combined with a NoSQL database used as a cache to index data and quickly process complex requests on it.
2016-05-03 11:27:01 +02:00
In FabManager, it is used for the admin's statistics module and to perform searches in projects.
2016-03-23 18:39:41 +01:00
< a name = "elasticsearch-on-debian" > < / a >
### Install ElasticSearch on Ubuntu/Debian
For a more detailed guide concerning the ElasticSearch installation, please check the [official documentation ](https://www.elastic.co/guide/en/elasticsearch/reference/current/setup.html )
1. Install the OpenJDK's Java Runtime Environment (JRE). ElasticSearch recommends that you install Java 8 update 20 or later.
Please check that your distribution's version meet this requirement.
2016-05-03 11:27:01 +02:00
2016-01-18 15:40:30 +01:00
```bash
2016-03-23 18:39:41 +01:00
sudo apt-get install openjdk-8-jre
2016-01-18 15:40:30 +01:00
```
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
1. Create the file `/etc/apt/sources.list.d/elasticsearch-1.x.list` , and append it the following line:
`deb http://packages.elastic.co/elasticsearch/1.x/debian stable main`
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
2. Import the repository signing key, and update the package lists
```bash
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
sudo apt-get update
```
3. Install ElasticSearch 1.7
```bash
sudo apt-get install elasticsearch
```
2016-05-03 11:27:01 +02:00
2016-08-23 16:59:12 +02:00
4. To automatically start ElasticSearch during bootup, then, depending if your system is compatible with SysV (eg. Ubuntu 14.04) or uses systemd (eg. Debian 8/Ubuntu 16.04), you will need to run:
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
```bash
# System V
sudo update-rc.d elasticsearch defaults 95 10
# ** * OR ** * (systemd)
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl enable elasticsearch.service
```
2016-08-23 16:59:12 +02:00
5. Restart the host operating system to complete the installation
```bash
sudo reboot
```
2016-03-23 18:39:41 +01:00
< a name = "elasticsearch-on-macosx" > < / a >
### Install ElasticSearch on MacOS X
This assumes you have [Homebrew ](http://brew.sh/ ) installed on your system.
Otherwise, please follow the official instructions on the project's website.
```bash
brew update
brew install homebrew/versions/elasticsearch17
```
< a name = "setup-fabmanager-in-elasticsearch" > < / a >
### Setup ElasticSearch for the FabManager
2016-05-03 11:27:01 +02:00
1. Launch the associated rake tasks in the project folder.
2016-03-23 18:39:41 +01:00
This will create the fields mappings in ElasticSearch DB
```bash
rake fablab:es_build_stats
```
2016-05-03 11:27:01 +02:00
2. Every nights, the statistics for the day that just ended are built automatically at 01:00 (AM).
2016-03-23 18:39:41 +01:00
See [schedule.yml ](config/schedule.yml ) to modify this behavior.
2016-07-27 11:28:54 +02:00
If the scheduled task wasn't executed for any reason (eg. you are in a dev environment and your computer was turned off at 1 AM), you can force the statistics data generation in ElasticSearch, running the following command.
2016-05-03 11:27:01 +02:00
2016-03-23 18:39:41 +01:00
```bash
2016-07-27 11:28:54 +02:00
# Here for the 50 last days
rake fablab:generate_stats[50]
2016-03-23 18:39:41 +01:00
```
2016-06-16 18:08:20 +02:00
2016-06-14 16:24:46 +02:00
< a name = "backup-and-restore-elasticsearch" > < / a >
### Backup and Restore
To backup and restore the ElasticSearch database, use the [elasticsearch-dump ](https://github.com/taskrabbit/elasticsearch-dump ) tool.
Dump the database with: `elasticdump --input=http://localhost:9200/stats --output=fablab_stats.json` .
Restore it with: `elasticdump --input=fablab_stats.json --output=http://localhost:9200/stats` .
2016-03-23 18:39:41 +01:00
< a name = "i18n" > < / a >
## Internationalization (i18n)
The FabManager application can only run in a single language but this language can easily be changed.
< a name = "i18n-translation" > < / a >
### Translation
Check the files located in `config/locales` :
- Front app translations (angular.js) are located in `config/locales/app.scope.XX.yml` .
Where scope has one the following meaning :
- admin: translations of the administrator views (manage and configure the FabLab).
2016-05-03 11:27:01 +02:00
- logged: translations of the end-user's views accessible only to connected users.
2016-03-23 18:39:41 +01:00
- public: translation of end-user's views publicly accessible to anyone.
- shared: translations shared by many views (like forms or buttons).
- Back app translations (Ruby on Rails) are located in `config/locales/XX.yml` .
- Emails translations are located in `config/locales/mails.XX.yml` .
- Messages related to the authentication system are located in `config/locales/devise.XX.yml` .
If you plan to translate the application to a new locale, please consider that the reference translation is French.
Indeed, in some cases, the English texts/sentences can seems confuse or lack of context as they were originally translated from French.
To prevent syntax mistakes while translating locale files, we **STRONGLY advise** you to use a text editor witch support syntax coloration for YML and Ruby.
< a name = "i18n-translation-front" > < / a >
#### Front-end translations
Front-end translations uses [angular-translate ](http://angular-translate.github.io ) with some interpolations interpreted by angular.js and other interpreted by [MessageFormat ](https://github.com/SlexAxton/messageformat.js/ ).
**These two kinds of interpolation use a near but different syntax witch SHOULD NOT be confused.**
Please refer to the official [angular-translate documentation ](http://angular-translate.github.io/docs/#/guide/14_pluralization ) before translating.
< a name = "i18n-translation-back" > < / a >
#### Back-end translations
2016-05-03 11:27:01 +02:00
Back-end translations uses the [Ruby on Rails syntax ](http://guides.rubyonrails.org/i18n.html ) but some complex interpolations are interpreted by [MessageFormat ](https://github.com/format-message/message-format-rb ) and are marked as it in comments.
**DO NOT confuse the syntaxes.**
2016-03-23 18:39:41 +01:00
In each cases, some inline comments are included in the localisation files.
They can be recognized as they start with the sharp character (#).
2016-10-07 11:11:58 +02:00
These comments are not required to be translated, they are intended to help the translator to have some context information about the sentence to translate.
2016-03-23 18:39:41 +01:00
< a name = "i18n-configuration" > < / a >
### Configuration
2016-05-03 11:27:01 +02:00
Locales configurations are made in `config/application.yml` .
2016-03-23 18:39:41 +01:00
If you are in a development environment, your can keep the default values, otherwise, in production, values must be configured carefully.
< a name = "i18n-settings" > < / a >
#### Settings
2016-03-24 11:03:26 +01:00
RAILS_LOCALE
2016-03-23 18:39:41 +01:00
2016-04-05 11:09:17 +02:00
Configure Ruby on Rails for l10n.
2016-05-03 11:27:01 +02:00
Be sure that `config/locales/rails.XX.yml` exists, where `XX` match your configured RAILS_LOCALE.
2016-03-23 18:39:41 +01:00
You can find templates of these files at https://github.com/svenfuchs/rails-i18n/tree/rails-4-x/rails/locale.
2016-05-03 11:27:01 +02:00
Be aware that **this file MUST contain the CURRENCY symbol used to generate invoices** (among other things).
2016-03-23 18:39:41 +01:00
Default is **en** .
2016-03-24 11:03:26 +01:00
MOMENT_LOCALE
2016-03-23 18:39:41 +01:00
2016-05-03 11:27:01 +02:00
Configure the moment.js library for l10n.
See `vendor/assets/components/moment/locale/*.js` for a list of available locales.
2016-03-23 18:39:41 +01:00
Default is **en** (even if it's not listed).
2016-03-24 11:03:26 +01:00
SUMMERNOTE_LOCALE
2016-03-23 18:39:41 +01:00
Configure the javascript summernote editor for l10n.
2016-05-03 11:27:01 +02:00
See `vendor/assets/components/summernote/lang/summernote-*.js` for a list of available locales.
2016-03-23 18:39:41 +01:00
Default is **en-US** (even if it's not listed).
2016-03-24 11:03:26 +01:00
ANGULAR_LOCALE
2016-03-23 18:39:41 +01:00
Configure the locale for angular-i18n.
Please, be aware that **the configured locale will imply the CURRENCY displayed to front-end users.**
_Eg.: configuring **fr-fr** will set the currency symbol to ** €** but **fr-ca** will set ** $** as currency symbol, so setting the `angular_locale` to simple **fr** (without country indication) will probably not do what you expect._
See `vendor/assets/components/angular-i18n/angular-locale_*.js` for a list of available locales. Default is **en** .
2016-03-24 11:03:26 +01:00
MESSAGEFORMAT_LOCALE
2016-03-23 18:39:41 +01:00
Configure the messageformat.js library, used by angular-translate.
See vendor/assets/components/messageformat/locale/*.js for a list of available locales.
2016-03-24 11:03:26 +01:00
FULLCALENDAR_LOCALE
2016-03-23 18:39:41 +01:00
Configure the fullCalendar JS agenda library.
See `vendor/assets/components/fullcalendar/dist/lang/*.js` for a list of available locales. Default is **en** (even if it's not listed).
2016-05-03 11:27:01 +02:00
2016-03-24 11:03:26 +01:00
ELASTICSEARCH_LANGUAGE_ANALYZER
2016-03-23 18:39:41 +01:00
This configure the language analyzer for indexing and searching in projects with ElasticSearch.
See https://www.elastic.co/guide/en/elasticsearch/reference/1.7/analysis-lang-analyzer.html for a list of available analyzers (check that the doc version match your installed elasticSearch version).
2016-03-24 11:03:26 +01:00
TIME_ZONE
2016-03-23 18:39:41 +01:00
2016-05-03 11:27:01 +02:00
In Rails: set Time.zone default to the specified zone and make Active Record auto-convert to this zone. Run `rake time:zones:all` for a list of available time zone names.
2016-03-23 18:39:41 +01:00
Default is **UTC** .
2016-03-24 11:03:26 +01:00
WEEK_STARTING_DAY
2016-03-23 18:39:41 +01:00
Configure the first day of the week in your locale zone (generally monday or sunday).
2016-05-03 11:27:01 +02:00
2016-03-24 11:03:26 +01:00
D3_DATE_FORMAT
2016-03-29 13:31:02 +02:00
2016-05-03 11:27:01 +02:00
Date format for dates displayed in statistics charts.
2016-03-23 18:39:41 +01:00
See https://github.com/mbostock/d3/wiki/Time-Formatting#format for available formats.
2016-03-29 13:31:02 +02:00
UIB_DATE_FORMAT
Date format for dates displayed and parsed in date pickers.
2016-05-03 11:27:01 +02:00
See https://angular-ui.github.io/bootstrap/#uibdateparser-s-format-codes for a list available formats.
2016-03-29 13:31:02 +02:00
**BEWARE**: years format with less than 4 digits will result in problems because the system won't be able to distinct dates with the same less significant digits, eg. 50 could mean 1950 or 2050.
2016-03-23 18:39:41 +01:00
2016-07-07 15:31:22 +02:00
EXCEL_DATE_FORMAT
Date format for dates shown in exported Excel files (eg. statistics)
See https://support.microsoft.com/en-us/kb/264372 for a list a available formats.
2016-03-23 18:39:41 +01:00
< a name = "i18n-apply" > < / a >
#### Applying changes
After modifying any values concerning the localisation, restart the application (ie. web server) to apply these changes in the i18n configuration.
2016-05-03 11:27:01 +02:00
< a name = "open-projects" > < / a >
## Open Projects
**This configuration is optional.**
2016-05-03 11:29:14 +02:00
You can configure your fab-manager to synchronize every project with the [Open Projects platform ](https://github.com/LaCasemate/openlab-projects ). It's very simple and straightforward and in return, your users will be able to search over projects from all fab-manager instances from within your platform. The deal is fair, you share your projects and as reward you benefits from projects of the whole community.
2016-05-03 11:27:01 +02:00
If you want to try it, you can visit [this fab-manager ](https://fablab.lacasemate.fr/#!/projects ) and see projects from different fab-managers.
To start using this awesome feature, there are a few steps:
- send a mail to **contact@fab-manager.com** asking for your Open Projects client's credentials and giving them the name of your fab-manager, they will give you an `OPENLAB_APP_ID` and an `OPENLAB_APP_SECRET`
- fill in the value of the keys in your `application.yml`
- start your fab-manager app
- export your projects to open-projects (if you already have projects created on your fab-manager, unless you can skip that part) executing this command: `bundle exec rake fablab:openlab:bulk_export`
2016-06-13 11:34:11 +02:00
**IMPORTANT: please run your server in production mode.**
2016-05-03 11:29:38 +02:00
Go to your projects gallery and enjoy seeing your projects available from everywhere ! That's all.
2016-03-23 18:39:41 +01:00
2016-06-16 18:01:45 +02:00
< a name = "plugins" > < / a >
## Plugins
2016-06-16 18:08:20 +02:00
Fab-manager has a system of plugins mainly inspired by [Discourse ](https://github.com/discourse/discourse ) architecture.
2016-06-16 18:01:45 +02:00
It enables you to write plugins which can:
- have its proper models and database tables
- have its proper assets (js & css)
- override existing behaviours of Fab-manager
- add features by adding views, controllers, ect...
To install a plugin, you just have to copy the plugin folder which contains its code into the folder `plugins` of Fab-manager.
2016-06-16 18:08:20 +02:00
You can see an example on the [repo of navinum gamification plugin ](https://github.com/LaCasemate/navinum-gamification )
2016-06-16 18:01:45 +02:00
2016-09-12 17:29:44 +02:00
< a name = "sso" > < / a >
## Single Sign-On
Fab-manager can be connected to a [Single Sign-On ](https://en.wikipedia.org/wiki/Single_sign-on ) server which will provide its own authentication for the platform's users.
Currently OAuth 2 is the only supported protocol for SSO authentication.
For an example of how to use configure a SSO in Fab-manager, please read [sso_with_github.md ](doc/sso_with_github.md ).
2016-10-07 11:11:58 +02:00
Developers may find information on how to implement their own authentication protocol in [sso_authentication.md ](doc/sso_authentication.md ).
2016-09-12 17:29:44 +02:00
2016-03-23 18:39:41 +01:00
< a name = "known-issues" > < / a >
## Known issues
- When browsing a machine page, you may encounter an "InterceptError" in the console and the loading bar will stop loading before reaching its ending.
2016-09-05 08:54:01 +02:00
This may happen if the machine was created through a seed file without any image.
To solve this, simply add an image to the machine's profile and refresh the web page.
2016-03-23 18:39:41 +01:00
- When starting the Ruby on Rails server (eg. `foreman s` ) you may receive the following error:
2016-01-18 15:40:30 +01:00
2016-03-23 18:39:41 +01:00
worker.1 | invalid url: redis::6379
web.1 | Exiting
worker.1 | ...lib/redis/client.rb...:in `_parse_options'
2016-01-18 15:40:30 +01:00
2016-09-05 08:54:01 +02:00
This may happen when the `application.yml` file is missing.
To solve this issue copy `config/application.yml.default` to `config/application.yml` .
This is required before the first start.
2016-05-03 11:27:01 +02:00
2016-11-21 15:00:34 +01:00
- Due to a stripe limitation, you won't be able to create plans longer than one year.
2015-05-05 03:10:25 +02:00
2016-04-11 09:38:09 +02:00
- When running the tests suite with `rake test` , all tests may fail with errors similar to the following:
Error:
2017-02-15 15:41:25 +01:00
...
ActiveRecord::InvalidForeignKey: PG::ForeignKeyViolation: ERROR: insert or update on table "..." violates foreign key constraint "fk_rails_..."
DETAIL: Key (group_id)=(1) is not present in table "groups".
: ...
test_after_commit (1.0.0) lib/test_after_commit/database_statements.rb:11:in `block in transaction'
test_after_commit (1.0.0) lib/test_after_commit/database_statements.rb:5:in `transaction'
2016-04-11 09:38:09 +02:00
2016-09-05 08:54:01 +02:00
This is due to an ActiveRecord behavior witch disable referential integrity in PostgreSQL to load the fixtures.
PostgreSQL will prevent any users to disable referential integrity on the fly if they doesn't have the `SUPERUSER` role.
To fix that, logon as the `postgres` user and run the PostgreSQL shell (see [Setup the FabManager database in PostgreSQL ](#setup-fabmanager-in-postgresql ) for an example).
Then, run the following command (replace `sleede` with your test database user, as specified in your database.yml):
2016-05-03 11:27:01 +02:00
2016-04-11 09:38:09 +02:00
ALTER ROLE sleede WITH SUPERUSER;
2016-09-05 08:54:01 +02:00
DO NOT do this in a production environment, unless you know what you're doing: this could lead to a serious security issue.
2016-10-07 11:11:58 +02:00
- With Ubuntu 16.04, ElasticSearch may refuse to start even after having configured the service with systemd.
2016-09-05 08:54:01 +02:00
To solve this issue, you may have to set `START_DAEMON` to `true` in `/etc/default/elasticsearch` .
Then reload ElasticSearch with:
2016-10-07 11:11:58 +02:00
2016-09-05 08:54:01 +02:00
```bash
sudo systemctl restart elasticsearch.service
```
2016-06-13 08:30:43 +02:00
2016-03-23 18:39:41 +01:00
< a name = "related-documentation" > < / a >
## Related Documentation
2016-01-18 15:40:30 +01:00
2016-04-11 20:24:09 +02:00
- [Ruby 2.3.0 ](http://ruby-doc.org/core-2.3.0/ )
2016-03-23 18:39:41 +01:00
- [Ruby on Rails ](http://api.rubyonrails.org )
- [AngularJS ](https://docs.angularjs.org/api )
- [Angular-Bootstrap ](http://angular-ui.github.io/bootstrap/ )
- [ElasticSearch 1.7 ](https://www.elastic.co/guide/en/elasticsearch/reference/1.7/index.html )