This repository maintains a list of Libreddit instances in JSON format, providing the URL, location, and Libreddit version for each instance. A helper script exists in this repository to generate the list in JSON form.
This repo consists of four files:
instances.json
: This is the list of Libreddit instances.instances-schema.json
: JSON Schema governinginstances.json
.instances.txt
: This is a CSV of libreddit instances. While this is also machine-readable, it is recommended to useinstances.json
instead.instances.txt
is meant for contributors to add and remove instances, andgenerate-instances-json.sh
will validate those instances and generateinstances.json
.instances.md
: This is table in Markdown format of the Libreddit instances ininstances.json
. It is generated by the scriptgenerate-instances-markdown.py
.generate-instances-json.sh
: This script takes in a CSV file as input, typicallyinstances.txt
, and outputs a JSON object with a list of Libreddit instances. This is the script that generatesinstances.json
.
To generate instances.json
, perform the following:
- Modify
instances.txt
to add or remove instances. See Expected CSV format for the expected format of each CSV row. - Run
generate-instances-json.sh -i ./instances.txt -o ./instances.json
to generateinstances.json
. The existinginstances.json
will be replaced. - Run
generate-instances-markdown.py --output=./instances.md ./instances.json
to generateinstances.md
. The existinginstances.md
file will be replaced.
Pull requests to add or remove instances are always welcome.
generate-instances-json.sh
is the script that produces a JSON of Libreddit instances, given a CSV input of Libreddit instances.
Unless -i
and -o
are specified (see Usage below), the input and output are assumed the stdin and stdout streams respectively.
USAGE
./generate-instances-json.sh [-I INPUT_JSON] [-T] [-f] [-i INPUT_CSV] [-o OUTPUT_JSON]
./generate-instances-json.sh -h
DESCRIPTION
Generate a JSON of Libreddit instances, given a CSV input listing those
instances.
The INPUT_CSV file must be a file in CSV syntax of the form
[url],[country code],[cloudflare enabled],[description]
where all four parameters are required (though the description may be
blank). Except for onion and I2P sites, all URLs MUST be HTTPS.
OUTPUT_JSON will be overwritten if it exists. No confirmation will be
requested from the user.
By default:
* This script will not attempt to connect to I2P instances. If you want
this script to consider instances on the I2P network, you will need to
provide an HTTP proxy in the environment variable I2P_HTTP_PROXY.
This proxy typically listens at 127.0.0.1:4444.
* This script will attempt to connect to instances in the CSV that are on
Tor, provided that it can (it will check to see if Tor is running and the
availability of the torsocks program). If you want to disable connections
to these onion sites, provide the -T option.
OPTIONS
-I INPUT_JSON
Import the list of Libreddit onion and I2P instances from the file
INPUT_JSON. To use stdin, provide `-I -`. Implies -T, and further
causes the script to ignore the value in I2P_HTTP_PROXY. Note that the
argument provided to this option CANNOT be the same as the argument
provided to -i. If the JSON could not be read, the script will exit with
status code 1.
-T
Do not connect to Tor. Onion sites in INPUT_CSV will not be processed.
Assuming no other failure, the script will still exit with status code
0.
-f
Force the script to exit, with status code 1, upon the first failure to
connect to an instance. Normally, the script will continue to build and
output the JSON even when one or more of the instances could not be
reached, though the exit code will be non-zero.
-i INPUT_CSV
Use INPUT_CSV as the input file. To read from stdin (the default
behavior), either omit this option or provide `-i -`. Note that the
argument provided to this option CANNOT be the same as the argument
provided to -I.
-o OUTPUT_JSON
Write the results to OUTPUT_JSON. Any existing file will be
overwritten. To write to stdout (the default behavior), either omit
this option or provide `-o -`.
ENVIRONMENT
USER_AGENT
Sets the User-Agent that curl will use when making the GET to each
website. By default, this script will tell curl to set its User-Agent
string to "libreddit-instance-updater/0.1".
I2P_HTTP_PROXY
HTTP proxy for connecting to the I2P network. This is required in
order to connect to instances on I2P. If -I is provided, the value in
this variable is ignored.
generate-instances-json.sh
requires curl in order to make HTTP(S) requests and jq to process and format JSON.
tor and torsocks are required for processing onion sites, but the script will skip instances on Tor if neither tor is running nor torsocks is available. An option exists to import onion sites from an existing JSON file should you wish not to use tor.
The CSV must take on the form:
[url],[country code],[cloudflare enabled],[description]
Each field described:
- url (REQUIRED): The url to the Libreddit instance. This must be HTTPS, unless the instance is an onion site.
- country code (REQUIRED): The two-letter code for the country in which the instance is hosted, in caps.
- cloudflare enabled (REQUIRED): A boolean; true if the instance sits behind Cloudflare.
- description (REQUIRED): A description of the instance; a description can be blank, but one must be provided for the script to parse the CSV correctly. As this description string becomes a JSON value without any transformation, any special characters, including and especially newlines, must be escaped.
The script will process the CSV and for each row connect to the URL and get the version string of the running instance. For each row, if the connection is successful and the script can determine the version, it will yield a JSON object (an "entry") of the form:
{
"url": "<url>",
"version": "<version>",
"cloudflare": <true if cloudflare is enabled; null otherwise>,
"description": "<description if non-empty; null otherwise>"
}
At the end, the script will assemble the entries into a JSON array and place them in a new JSON object:
{
"updated": "<today's date (at the Greenwich meridian) in ISO 8601 format>",
"instances": ["<entries>"]
}
If all instances could be processed, the script exits with an exit code of 0. If the script was unable to process an instance, it will continue processing other instances, but the exit code will be 1. If there was an error to do with processing the CSV, the exit code is 2.
This script will attempt to connect to instances that are onion or I2P sites.
To make sure it can connect to onion sites, the script will see if Tor is running and if torsocks is installed. If neither condition is met, the script will not attempt to connect to Libreddit onion sites and will skip them. The exit code will still be 0, assuming that the WWW Libreddit sites were processed without error.
In order to allow the script to connect to I2P, you must specify a proxy host and port in the environment variable I2P_HTTP_PROXY
. This is typically 127.0.0.1:4444, unless your proxy listens on a separate address and/or port. If this environment variable is not defined or it is empty, the script will not attempt to connect to Libreddit I2P sites and will skip them. The exit code will still be 0, assuming that the WWW Libreddit sites were processed without error.
generate-instances-markdown.py
will generate a table in Markdown format of the instances. This requires the JSON file that is generated by generate-instances-json.sh
.
usage: generate-instances-markdown.py [-h] [-o OUTPUT_FILE] [INPUT_FILE]
Generate a markdown table of the Libreddit instances in the instances.JSON file. By default, this will read the file 'instances.json' in the
current working directory, and will write to 'instances.md' in that same directory. WARNING: This script will overwrite the output file if it
exists.
positional arguments:
INPUT_FILE location of instances JSON
optional arguments:
-h, --help show this help message and exit
-o OUTPUT_FILE, --output OUTPUT_FILE
where to write the markdown table; if a file exists at this path, it will be overwritten
generate-instances-markdown.py
requires python3 of at least 3.5.
The script generate-instances-json.sh
and the schema file instances-schema.json
are licensed under the GNU General Public License v3.0. Almost all of generate-instances-markdown.py
is licensed under GPL v3.0, with the exception of a portion of MIT-licensed code adapted from Django Countries which generates a regional indicator symbol for a given ISO 3166-1 alpha-2 country code; view the source for generate-instances-markdown.py
for the applicable code along with a copy of the MIT License as it appeared in the Django Countries license at the time the code was adapted.
instances.json
, instances.md
, and instances.txt
are released to the public domain.