A tool for downloading and analysing server info from OriginsRO
Find a file
2020-09-08 21:35:50 +01:00
sample_responses Fix for the new server's reply 2020-09-04 01:17:59 +01:00
src Embed try/catch/set_exception into the pool itself 2020-09-08 21:35:50 +01:00
subprojects Change restc-cpp into a meson wrap (lest too) 2020-08-29 18:03:04 +01:00
.gitignore Change restc-cpp into a meson wrap (lest too) 2020-08-29 18:03:04 +01:00
.gitmodules Change restc-cpp into a meson wrap (lest too) 2020-08-29 18:03:04 +01:00
COPYING Attach GPL3+ licence 2020-08-10 11:22:25 +01:00
example.c Add example file that's been there forever 2020-08-12 01:07:45 +01:00
meson.build Small cleaning 2020-09-06 17:47:54 +01:00
meson_options.txt Add optional lzma support for stored json responses 2020-09-05 14:00:22 +01:00
orotool.conf Add optional lzma support for stored json responses 2020-09-05 14:00:22 +01:00
README.md fix sql query to only consider vending shops 2020-09-07 01:57:43 +01:00

orotool

Your Origins RO API client

Purpose

Work in progress

Licence

orotool is released under the GPL3+

Compiling the project

Work in progress

Dependencies

  • lzma (optional)
  • curlcpp (compulsory at the moment, bundled)
  • curl (compulsory at the moment)
  • libev (compulsory)
  • boost (compulsory)
  • simdjson (compulsory at the moment, bundled)
  • restc-cpp (optional, bundled, currently broken)
  • RapidJSON (optional, currently broken)
  • SQLiteCpp (compulsory at the moment, bundled)
  • SQLite (compulsory at the moment)
  • date (compulsory, bundled)
  • duckhandy (compulsory, bundled)
  • sprout (compulsory)
  • magic_enum (compulsory, bundled)
  • gnulib (compulsory, bundled)

Contact

The best way to get in touch is on IRC:

  • Rizon - irc.rizon.net:6697 - King_DuckZ - #OriginsRO
  • Freenode - chat.freenode.net:6697 - King_DuckZ

Other ways you can get in touch:

  • Matrix: @duckz:alarmpi.no-ip.org
  • XMPP: king_duckz@jabber.at
  • Discord: DuckZ#0896

Recipies

This is a collection of tricks, commands and SQL queries that you might find helpful.

Exporting JSON to file

If you saved JSON data to the database in compressed format (store_raw_json=true and json_store_mode=xz) you can export them to separate files with the following bash command (assuming current directory contains a originsro.db3 DB):

mkdir -pv split_json
cd split_json

digits=0000; n=0; while IFS= read -r line; do \
base64 --decode <<<"$line" | unxz --decompress > output"${digits:${#n}:${#digits}}${n}".txt; \
(( n++ )); \
done < <(sqlite3 ../debug/originsro.db3 'select source from source_store where format=2')

This will not export plain uncompressed JSON (format=1)

Getting min/max price of each item on the market now

With this query you can retrieve the min and max price of each item currently being sold (assuming database is up to date), along with their names, the name of the shop selling them and the total count of items of that type across all shops and all prices. Note that refined equipment or equipment with cards are considered to be all equivalent to the plain item.

SELECT title, name, MIN(price) AS min_price, MAX(price) AS max_price, SUM(amount) AS amount FROM (
SELECT shops.title, items.name, shop_items.price, items.item_id,
	shop_items.amount
	FROM shops
	LEFT JOIN shop_snapshots ON shop_snapshots.shop_id=shops.id
	LEFT JOIN shop_items ON shop_items.snapshot_id=shop_snapshots.id
	LEFT JOIN items ON shop_items.item_id=items.id
	WHERE shops.type=1 AND
		shop_snapshots.last_seen_date=(SELECT max(last_seen_date) FROM shop_snapshots)
) GROUP BY item_id

"Currently open" means shops seen on the same date the most recent shop was seen. In my current case my database was last updated 6 hours ago, this means I'm seeing the list of items that were being sold 6 hours ago.

Estimate JSON storage size

This returns an estimate in MiB of the total storage occupied by the saved JSON data

SELECT SUM(LENGTH(source))/1024/1024 FROM source_store