This repository is considered deprecated and will be archived. For the new version of this tool please go to nxs-support-bot project.
Nxs-chat-srv is a Telegram Bot that allows linking Redmine and Telegram.
At the moment nxs-chat-bot supports only English and Russian languages. You may create files in json format for your languages.
Compatible with Redmine 4.2+
docker pull nixyslab/nxs-chat-srv:latest
Default configuration file locacation is /nxs-chat-srv.conf. Config file is in JSON format.
proc
Nxs-chat-srv process settings block description.
pid_file
: nxs-chat-srv pid file path.queue_worker_term_timeout
: timeout in seconds to wait for queue-worker subrocesses to terminate.rest_api_term_timeout
: rest-api subrocesses termination wait timeout seconds.daemonize
: whether or not daemonize nxs-chat-srv.logging
Loging settings block description.
level
: loglevel detalization.path
: logfile path.bind
Bind settings block description.
iface
: bind address.port
: bind port.ssl
(object):
use_ssl
: whether or not to use SSL certificate to protect the incomming connections from Telegram and Redmine.crt
: SSL certificate file path.key
: SSL certificate private key file path.telegram
Telegram settings block description.
bot_api_addr
: Telegram Bot API host (default: https://api.telegram.org).bot_api_key
: Telegram Bot API key.auth_token
: part of URL secret path to make sure requests come from Telegram (for details see: https://core.telegram.org/bots/api#setwebhook).webhook_host
: URL (including protocol and port) to take Telegram updates.proxy
(object, not required):
type
: type of proxy. Available values: none
(don't use proxy), http
, socks5
, socks5_hostname
(let the proxy resolve the host name).host
: proxy host.port
: proxy port.auth
(object, not required):type
: auth method. Available values: none
(don't use authorization), basic
, ntlm
.user
: proxy auth usernamepass
: proxy auth passwordmysql
MySQL settings block description.
name
: MySQL DB name.user
: MySQL DB user.pass
: MySQL DB password.host
: MySQL DB host.port
: MySQL DB port.redis
Redis settings block description.
keys_space
: prefix for all nxs-chat-srv instance keys stored in Redis.cluster
: wheter or not to use Redis Cluster (use false for Redis Standalone mode).nodes
(objects array) specify one node for Redis Standalone mode or array of nodes for Redis Cluster mode:
host
: Redis instance host.port
: Redis instance port.redmine
Redmine settings block description.
url
: This option is used to create links to Redmine issues in Telegram messages. It's useful to make for users a valid links in case if Redmine has host address in internal network (e.g. in Docker installations).
If not specified, redmine.host
option value will be used.host
: Redmine host URL (e.g. https://redmine.company.org:3000). This value is used to connections with Redmine API.api_key
: Redmine Rest API key account (with Administrator permissions). Used for Redmine interactions (e.g. get users list, projects list, etc).auth_token
: part of URL secret path to make sure requests come from Redmine.presale_project_name
: Redmine project name where messages from users without Telegram account specified will be delivered as separate issues.presale_api_key
: Redmine Rest API key for presale account.issue_list_query_id
: Redmine query ID to get issues available for a user.ssl_verifyhost
: whether or not to verify Redmine host SSL certificate.cf_telegram
: Redmine custom field ID with user Telegram username.status_in_progress
: Redmine In progress status IDstatus_need_feedback
: Redmine Need feedback status IDstatus_resolved
: Redmine Resolved status IDra_queue
Rest API queue process settings block description.
pop_timeout_ms
: microseconds sleep timeout between data processing operations from Rest API queue.queue_workers
: Rest API queue workers processes count.cache
Cache settings block description.
projects_ttl
: projects cache TTLusers_ttl
: users cache TTLissue_priorities_ttl
: issue priorities cache TTLlock_file
: cache lock file path. Create empty file to disable cache. Use this option to make sure cache processing only for one nxs-caht-srv node in cluster mode.dev_accounts
Development accounts settings block description.
Strings array contains the Telegram usernames allowed to work with nxs-chat. Useful for development purposes.
attachments
Attachments settings block description.
tlgrm_download_tmp_dir
: Telegram attachments download tmp dir.rdmn_download_tmp_dir
: Redmine attachments download tmp dir.statistic
Statistic settings block description.
auth_token
: part of URL secret path to access the nxs-chat-bot statistics page.labels
Labels settings block description.
This block is used to translate user Telegram bot interface to their language specified in Redmine.
default_lang
: default language (default: en).labels_path
: path to the directory with language files (default: /usr/share/nxs-chat-srv/labels/).greetings
Description of the settings block for the greeting message.
Bot replies with a greeting message in accordance with language specified in Redmine account settings after receiving '/start' command from user.
This block is an objects array:
lang
: greeting languagetext
: greeting textIf there are no greetings for user language the greeting for default language will be used.
To set up nxs-chat-srv you need:
After Redmine is installed, you need to create some basic elements, such as: roles, users, statuses, trackers, etc.
This section describes setup for an empty Redmine installation. So if you already have installed and configured Redmine - look the subsections below and make sure you have all needed settings in place.
Let's begin...
Firstly change the default Redmine admin password :)
Check that nxs-chat-redmine plugin has been installed in Redmine plugins directory.
Enable REST web service
Go to https://demo.nxs-chat.nixys.ru/settings?tab=api and enable Enable REST web service
:
id35kn7resb536bfc8zywdgaugk1ur69cysowr2kpiq5ngw41q
)https://demo.nxs-chat.nixys.ru:8443/redmine?token=id35kn7resb536bfc8zywdgaugk1ur69cysowr2kpiq5ngw41q
)Setting up Nxs-chat Redmine plugin
Go to https://demo.nxs-chat.nixys.ru/settings/plugin/nxs_chat and paste prepared URL into URL for notifications
field:
Optionally you can disable nxs-chat-srv SSL verification.
Edit the following option in /nxs-chat-srv.conf config file:
redmine.auth_token
: generated secret string (e.g. id35kn7resb536bfc8zywdgaugk1ur69cysowr2kpiq5ngw41q
)Go to https://demo.nxs-chat.nixys.ru/issue_statuses/new and create a few statuses:
New
In progress
Need feedback
Resolved
(Issue closed)Now you need to get the IDs of created statuses:
and insert them in the following options in /nxs-chat-srv.conf config file:
redmine.status_in_progress
: ID of In progress
statusredmine.status_need_feedback
: ID of Need feedback
statusredmine.status_resolved
: ID of Resolved
statusYou need one or more trackers to make possible issue processing in Redmine.
Go to https://demo.nxs-chat.nixys.ru/trackers/new and create a new tracker:
You need to one or more roles to make possible issue processing in Redmine.
Go to https://demo.nxs-chat.nixys.ru/roles/new and create a new role with the following permissions:
Project
:
Create project
Edit project
Manage members
Create subprojects
Save queries
Manage public queries
Issue tracking
:
View Issues
Add issues
Edit issues
Set issues public or private
Set own issues public or private
Add notes
View private notes
Set notes as private
View watchers list
Add watchers
Delete watchers
Create the role
For demo version allow creating new projects for all registered users
Go to https://demo.nxs-chat.nixys.ru/roles/1/edit and enable Create project
option on Project
block:
For demo version set the role given to a non-admin user who creates a project
Go to https://demo.nxs-chat.nixys.ru/settings?tab=projects and select option Role given to a non-admin user who creates a project
to created role:
Now go to https://demo.nxs-chat.nixys.ru/workflows/edit and make a workflow for created role and tracker:
You need one or more priorities to make possible issue processing in Redmine.
Go to https://demo.nxs-chat.nixys.ru/enumerations/new?type=IssuePriority and create the following priorities:
Low
Normal
(Default value)High
Now create a custom field for Telegram username. This field is required to link Telegram and Redmine accounts.
Go to https://demo.nxs-chat.nixys.ru/custom_fields/new and select the type of object to which the custom field shall be attached:
Get the created custom field ID:
and insert it in the following option in /nxs-chat-srv.conf config file:
redmine.cf_telegram
: ID of created custom fieldCreate the Pre-sale
project to communicate with all no registered users.
Go to https://demo.nxs-chat.nixys.ru/projects/new and create a new project named Pre-sale
.
Make sure that project options match the following:
Public
: falseTrackers
: New issue is enabledand insert its name in the following option in /nxs-chat-srv.conf config file:
redmine.presale_project_name
: Pre-sale
Go to https://demo.nxs-chat.nixys.ru/projects/pre-sale/queries/new and create a query with the following required options:
Name
: you can use any name (e.g. Telegram users issues list
)Visible
: to any users
For all projects
: trueGet created query id:
and insert it the following option in /nxs-chat-srv.conf config file:
redmine.issue_list_query_id
: created query IDCreate an account with administrative permissions
Go to https://demo.nxs-chat.nixys.ru/users/new and fill out the fields for the new account:
Now log in as the new user and get the Rest API key:
Insert it in the following option in /nxs-chat-srv.conf config file:
redmine.api_key
: Rest API key for account with administrative permissions (e.g. 1e1df4d04909895dd8a7fa22e2d523b2c8cbf3fe
)Create presale account
Go to https://demo.nxs-chat.nixys.ru/users/new and fill out the fields for the new account:
Now log in as the new user and get the Rest API key:
Insert it in the following option in /nxs-chat-srv.conf config file:
redmine.presale_api_key
: Rest API key for presale account (e.g. bf14e3d4e819485a2729109dad2c8d464741f941
)In addition to already specified settings you need to set the following blocks.
Block bind
In this block set bind address, port and path to SSL certificate and private key.
Block redmine
redmine.host
: specify the Redmine host URL (including protocol and port, e.g. http://127.0.0.1:3000)redmine.ssl_verifyhost
: set to true if you want to verify Redmine SSL certificate or false otherwiseBlock mysql
Create MySQL DB and specify the connection options in corresponding block in /nxs-chat-srv.conf config file.
Block redis
Specify connection options in corresponding block in /nxs-chat-srv.conf config file.
Block telegram
telegram.bot_api_key
: set the Telegram Bot API keytelegram.auth_token
: generate and set the secret string. This string is a part of URL path to make sure requests come from Telegram.telegram.webhook_host
: specify the nxs-chat-srv host URL (including protocol and port, e.g. https://demo.nxs-chat.nixys.ru:8443)Block statistic
statistic.auth_token
: generate and set the secret string. After that you may get nxs-chat-srv statistic by GET query https://demo.nxs-chat.nixys.ru/statistic?format=html&token=$_SECRETSTRING (e.g. https://demo.nxs-chat.nixys.ru/statistic?format=html&token=s14g3pzgkm70t0npw9c0hiqdn50jdl29ackgpwzcz5iujmle1x)Telegram bot initializaton
Before the nxs-chat-srv has been starts you need to set Webhook in Telegram and populate the created MySQL DB.
nxs-chat-srv -i set_webhook
nxs-chat-srv -i set_webhook_self_signed_certificate
nxs-chat-srv -i create_tables