Skip to main content

barcode-server Code Climate

A simple daemon to read barcodes from USB Barcode Scanners and expose them to other service using a websocket API.

asciicast

Features

How to use

Device Access Permissions

Ensure the user running this application is in the correct group for accessing input devices (usually input), like this:

sudo usermod -a -G input myusername

Native

# create venv
python -m venv ./venv
# enter venv
source ./venv/bin/activate
# install barcode-server
pip install barcode-server
# exit venv
deactivate
# launch application
./venv/bin/barcode-server run

Docker

When starting the docker container, make sure to pass through input devices:

docker run \
  --name barcode \
  --device=/dev/input \
  -e PUID=0 \
  -e PGID=0 \
  markusressel/barcode-server

Note: Although barcode-server will continuously try to detect new devices, even when passing through /dev/input like shown above, new devices can not be detected due to the way docker works. If you need to detect devices in real-time, you have to use the native approach.

You can specify the user id and group id using the PUID and PGID environment variables.

Webserver

By default the webserver will listen to 127.0.0.1 on port 9654.

Authorization

When specified in the config, an API token is required to authorize clients, which must be passed using a X-Auth-Token header when connecting. Since barcode-scanner doesn't rely on any persistence, the token is specified in the configuration file and can not be changed on runtime.

Rest API

barcode-server provides a simple REST API to get some basic information. This API can not be used to retrieve barcode events. To do that you have to use one of the approaches described below.

Endpoint Description
/devices A list of all currently detected devices.

Websocket API

In addition to the REST API barcode-server also exposes a websocket at /, which can be used to get realtime barcode scan events.

Messages received on this websocket are JSON formatted strings with the following format:

{
  "date": "2020-08-03T10:00:00+00:00",
  "device": {
    "name": "BARCODE SCANNER BARCODE SCANNER",
    "path": "/dev/input/event3",
    "vendorId": "ffff",
    "productId": "0035",
  },
  "barcode": "4250168519463"
}

To test the connection you can use f.ex. websocat:

> websocat - autoreconnect:ws://127.0.0.1:9654 --text --header "X-Auth-Token:EmUSqjXGfnQwn5wn6CpzJRZgoazMTRbMNgH7CXwkQG7Ph7stex"
{"date":"2020-12-20T19:35:04.769739","device":{"name":"BARCODE SCANNER BARCODE SCANNER","path":"/dev/input/event3","vendorId":65535,"productId":53},"barcode":"D-t38409355843o52230Lm54784"}
{"date":"2020-12-20T19:35:06.237408","device":{"name":"BARCODE SCANNER BARCODE SCANNER","path":"/dev/input/event3","vendorId":65535,"productId":53},"barcode":"4250168519463"}

HTTP Request

When configured, you can let barcode-scanner issue a HTTP request (defaults to POST) when a barcode is scanned, which provides the ability to push barcode events to a server that is unaware of any client. The body of the request will contain the same JSON as in the websocket API example.

To do this simply add the following section to your config:

barcode_server:
  [...]
  http:
    url: "https://my.domain.com/barcode"

Have a look at the example config for more options.

MQTT Publish

When configured, you can let barcode-scanner publish barcode events to a MQTT broker. The payload of the message will contain the same JSON as in the websocket API example.

To do this simply add the following section to your config:

barcode_server:
  [...]
  mqtt:
    host: "my.mqtt.broker"

Have a look at the example config for more options.

Statistics

barcode-server exposes a prometheus exporter (defaults to port 8000) to give some statistical insight.

FAQ

Can I lock the Barcode Scanner to this application?

Yes. Most barcode readers normally work like a keyboard, resulting in their input being evaluated by the system, which can clutter up your TTY or other open programs. barcode-server will try to grab input devices, making it the sole recipient of all incoming input events from those devices, which should prevent the device from cluttering your TTY.

If, for some reason, this does not work for you, try this:

Create a file /etc/udev/rules.d/10-barcode.rules:

SUBSYSTEM=="input", ACTION=="add", ATTRS{idVendor}=="xxxx", ATTRS{idProduct}=="yyyy", RUN+="/bin/sh -c 'echo remove > /sys$env{DEVPATH}/uevent'"
SUBSYSTEM=="input", ACTION=="add", ATTRS{idVendor}=="xxxx", ATTRS{idProduct}=="yyyy", DEVPATH=="*:1.0/*", KERNEL=="event*", RUN+="/bin/sh -c 'ln -sf /dev/input/$kernel /dev/input/barcode_scanner'"

Replace the idVendor and idProduct values with the values of your barcode reader (a 4 digit hex value with leading zeros). You can find them in the log output of barcode-reader or using lsusb with the wireless receiver attached to your computer.

Reload udev rules using:

udevadm control --reload

then remove and reinsert the wireless receiver. You should now have a symlink in /dev/input/barcode_scanner:

ls -lha /dev/input/barcode_scanner

which can be used in the device_paths section of the barcode-server config.

Source: This and That

Contributing

GitHub is for social coding: if you want to write code, I encourage contributions through pull requests from forks of this repository. Create GitHub tickets for bugs and new features and comment on the ones that you are interested in.

License

barcode-server is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

barcode-server-1.4.1.tar.gz (31.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

barcode_server-1.4.1-py3-none-any.whl (32.2 kB view details)

Uploaded Python 3

File details

Details for the file barcode-server-1.4.1.tar.gz.

File metadata

  • Download URL: barcode-server-1.4.1.tar.gz
  • Upload date:
  • Size: 31.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for barcode-server-1.4.1.tar.gz
Algorithm Hash digest
SHA256 3e653d3514934a4533cb045bf663038fad18adaa424d0d7d10d3ea0fe12149b8
MD5 4fcb47d8a94e021092a2f1f8529347e4
BLAKE2b-256 5b9192072a7b32600dfdb13fce6ccf850d6c17c8d50a42fad8d298e23c4b0f4c

See more details on using hashes here.

File details

Details for the file barcode_server-1.4.1-py3-none-any.whl.

File metadata

  • Download URL: barcode_server-1.4.1-py3-none-any.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for barcode_server-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 24e7ede758470f171f2ba0c85465f4411994fe358e8dacc3d83a80f70b9e2fef
MD5 2e7a563bc4d722b37f7b5b0c5529c036
BLAKE2b-256 ed82b3e3171abfef12830c64b9501f7c63f5b590b71e8321ee6dfc4ea3580599

See more details on using hashes here.

Release history Release notifications | RSS feed

2.5.0

2 files

2.4.2

2 files

2.4.1

2 files

2.4.0

2 files

2.3.3

2 files

2.3.2

2 files

2.3.1

2 files

2.3.0

2 files

2.2.2

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

2 files

This release

1.4.1 This release

2 files

1.4.0

2 files

1.3.1

2 files

1.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page