A CLI client for chalmers' group room booking system.
- Book group rooms
- Integration Chalmers booking system
- Save personal settings in config file
- List available bookings for selected time
- Delete bookings
- List bookings
- Relative times for bookings
- AUR package
- Rooms sorted base on user preferences
- Option to only show rooms from preferred campus
- Integrate with Chalmers Library booking system
- Book rooms in the Johanneberg Student Union building
- Prompt for password if not set
- go (>= 1.12)
- $GOPATH/bin in $PATH
$ git clone https://github.com/williamleven/BooGroCha
$ cd BooGroCha/cmd/bgc
$ go installAllows for booking rooms by showing the available rooms for the given date and time.
$ bgc book <date> <time>- <date> can be either an absolute date (
YYYYMMDD,YYMMDD) or a relative date (MMDD,DD,D,today,tomorrow,monday,tuesday...) - <time> can be either (
HH:mm-HH:mm,HH-HH,H-H,H-HH,HH-H) or aliases likelunch
The book sub-command also takes the following optional flags:
--cid <cid>to perform the book request with a specified cid--campus <campus>or-c <campus>to filter the available rooms by a specified campus. (Valid campuses areJ,Johanneberg,LandLindholmen. Note that these values are not case-sensitive)--size <size>or-s <size>to filter the available rooms by size and will only show the rooms that are big enough. (When a size is specified the list of available rooms will also show the capacity of each room)--room <room>or-r <room>to try to book a specified room (the name of the room is case-insensitive) instead of letting you choose one interactively from the list of available rooms.--message <message>or-m <message>to add a specific message to the booking instead of asking for it interactively.
$ bgc list$ bgc deleteAllows the user to set parameters in a config file.
$ bgc config set <variable> <value>- <variable> can for example be
cidorpass - <value> should be the value that you want to set the variable to (NOTE: when setting the password you will be prompted for input instead of setting it directly)
$ bgc config clear <variable>- <variable> can for example be
cidorpass
$ bgc config get <variable>- <variable> can for example be
cidorcampus(NOTE: You cannot show thepassvariable this way)