No description
Find a file
2025-01-30 21:43:04 +01:00
doc Remove nonexistent option from manpage. 2025-01-30 21:39:51 +01:00
dokuwiki Redirect to login in payments action if not logged in. 2023-11-07 18:35:12 +01:00
src Bump version to 1.19-dev. 2025-01-30 21:43:04 +01:00
.gitignore Ignore gendoc binary. 2023-07-04 20:06:48 +02:00
CHANGELOG.md Prepare release 1.18. 2025-01-04 17:45:16 +01:00
fetch_fio.sh HOME expansion 2023-07-29 17:14:48 +02:00
fetch_fio_fine.sh Dokuwiki plugin compatibility with current version. 2023-09-05 21:21:05 +02:00
fio_splitter.sh Split bic. 2023-07-29 16:39:09 +02:00
hackerbase.sh Rename and add installation target. 2023-04-09 16:35:49 +02:00
install-eggs.sh Switch to SRFI-1. 2023-09-25 13:44:56 +02:00
Makefile Add doc target. 2023-07-04 20:17:07 +02:00
members-base-stats.gp Add current stats. 2023-11-16 21:45:49 +01:00
README.md Update relevant copyright years. 2024-07-02 21:40:38 +02:00

BrmBuro

Brmlab Bureaucratic system.

License

ISC License

Copyright 2023-2024 Brmlab, z.s. Dominik Pantůček dominik.pantucek@trustica.cz

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Features

  • members base management
    • member files parsing and validation
    • member ids validation
    • generating new member id
    • information about active, suspended, destroyed and student members
      • current status
      • historical data
    • detailed member information
    • querying members by id or nick
  • bank account statements processing
    • loading Fio CSV
    • member fees payment pairing
  • member fees management
    • totals: fees, credit, payments
    • computing member balance
  • generating static web output for member pages in dokuwiki
  • exporting brmdoor cards lists
  • synchronization of mailinglist subscriptions with member files

Requirements

There are no additional libraries required, it is possible to build binary that requires only libc.

Build requirements:

  • Chicken Scheme 5
  • make (tested with GNU make)
  • Chicken eggs (chicken-install)
    • sqlite3
    • srfi-1

Runtime requirements:

  • POSIX.1 shell (for Fio account statements downloader)
  • wget (for Fio)
  • git (for members directory queries)
  • POSIX.1 mail utility configured to send emails from local system

Building

All the eggs used are installed in the source tree using:

sh install-eggs.sh

Building static binary:

make static

It is possible to run the main tool as script with Chicken Scheme interpreter and POSIX-compatible shell for the purpose of development.

Development requirements:

  • POSIX shell

Preparing module import files for running as script:

make

Cleaning the built files from the build directory:

make clean