stine_calendar_bot
has been deprecated without replacement and will not be developed any further.
It would be cool if somebody could re-implement its functionality in something different than Java.
Without further comment, here is the full original self-description from STiNE as described here: STiNE FAQ
STiNE is Universität Hamburg’s campus management system (CampusNet®). Developed by Datenlotsen Informationssysteme GmbH, it serves a variety of functions. STiNE combines all essential teaching and study processes into one single IT platform and database that all those involved in these processes—students, teachers and administrators—are able to access according to their user roles and rights.
STiNE is also able to export appointments as calendar files. Unfortunately, this has a few flaws:
- Calendars are not offered as an online calendar. Manual export is mandatory.
- Exported files can only contain appointments for one month max.
- At the moment, the ICS files are UTF-16-encoded. Nobody knows why or since when.
- Months that lie in the past cannot be exported.
This application automatically downloads available calendars and caches them. All available calendars (past, present and future) can then be merged into a single ICS file.
Binaries can be downloaded from the releases page.
You will need a working installation of Java >=1.8.
Start the application with java -jar stine_calendar_bot.jar [options]
.
On some Unix systems, ./stine_calendar_bot.jar [options]
should work as well. On Arch Linux you'll need to install binfmt-java
from the AUR if you want to do that.
A simple execution might look like this:
java -jar stine_calendar_bot.jar --language=de --user=baqxxxx --pass=password
Note that since v0.0.7, the --language
option is mandatory! The automatic language detection didn't really work very well and most users will have their terminal set to English anyway.
The calendar cache directory will default to "./calendar_cache" and the output willd default to "./stine_calendar.ics" relative to the working directory.
You can avoid having your password get saved in your .bash_history in these two ways:
- Use
java -jar stine_calendar_bot.jar --language=de --user=baqxxxx --pass=--
and get queried for your password. - By storing it in a password manager:
- Install
gnome-keyring-query
- Store the password with
echo password | gnome-keyring-query set stine
- Call this application with:
gnome-keyring-query get stine | \ java -jar stine_calendar_bot.jar --language=de --user=baqxxxx --pass=--
- Install
Use java -jar stine_calendar_bot.jar --help
for more information.
I have only tested this with Linux. If it successfully works on Windows and Mac as well, be so kind as to tell me.
There is no GUI implemented or planned.
As of september 2016, STiNE appears to be completely available in English as well as German.
stine_calendar_bot will not try to detect your default language.
You will always have to select your language with the
--language=
option which accepts the values de
and en
.
This changes the language of the exported files, the displayed page contents if explicitly echo'ed and the application's localisation.
Use the following tools:
- git (optional)
- java 1.8
- maven
- make (optional)
Source can be downloaded and compiled with:
git clone https://github.com/felsenhower/stine_calendar_bot.git
cd stine_calendar_bot
make all
Instead of make all
you can also use mvn package shade:shade
respectively.