Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hypothesis/via
Proxies third-party PDF files and HTML pages with the Hypothesis client embedded, so you can annotate them
https://github.com/hypothesis/via
Last synced: about 2 months ago
JSON representation
Proxies third-party PDF files and HTML pages with the Hypothesis client embedded, so you can annotate them
- Host: GitHub
- URL: https://github.com/hypothesis/via
- Owner: hypothesis
- License: bsd-2-clause
- Created: 2019-12-04T18:51:25.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T09:25:32.000Z (about 2 months ago)
- Last Synced: 2024-10-29T11:38:58.655Z (about 2 months ago)
- Language: Python
- Homepage: https://via.hypothes.is/
- Size: 12.8 MB
- Stars: 19
- Watchers: 10
- Forks: 7
- Open Issues: 47
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Via
An app that proxies web pages and PDF files and injects the Hypothesis client so you can annotate them.
## Setting up Your Via Development Environment
First you'll need to install:
* [Git](https://git-scm.com/).
On Ubuntu: `sudo apt install git`, on macOS: `brew install git`.
* [GNU Make](https://www.gnu.org/software/make/).
This is probably already installed, run `make --version` to check.
* [pyenv](https://github.com/pyenv/pyenv).
Follow the instructions in pyenv's README to install it.
The **Homebrew** method works best on macOS.
The **Basic GitHub Checkout** method works best on Ubuntu.
You _don't_ need to set up pyenv's shell integration ("shims"), you can
[use pyenv without shims](https://github.com/pyenv/pyenv#using-pyenv-without-shims).
* [Docker Desktop](https://www.docker.com/products/docker-desktop/).
On Ubuntu follow [Install on Ubuntu](https://docs.docker.com/desktop/install/ubuntu/).
On macOS follow [Install on Mac](https://docs.docker.com/desktop/install/mac-install/).
* [Node](https://nodejs.org/) and npm.
On Ubuntu: `sudo snap install --classic node`.
On macOS: `brew install node`.
* [Yarn](https://yarnpkg.com/): `sudo npm install -g yarn`.Then to set up your development environment:
```terminal
git clone https://github.com/hypothesis/via.git
cd via
make services
make devdata
make help
```To run Via locally run `make dev` and visit http://localhost:9083.
## Changing the Project's Python Version
To change what version of Python the project uses:
1. Change the Python version in the
[cookiecutter.json](.cookiecutter/cookiecutter.json) file. For example:```json
"python_version": "3.10.4",
```2. Re-run the cookiecutter template:
```terminal
make template
```3. Re-compile the `requirements/*.txt` files.
This is necessary because the same `requirements/*.in` file can compile to
different `requirements/*.txt` files in different versions of Python:```terminal
make requirements
```4. Commit everything to git and send a pull request
## Changing the Project's Python Dependencies
### To Add a New Dependency
Add the package to the appropriate [`requirements/*.in`](requirements/)
file(s) and then run:```terminal
make requirements
```### To Remove a Dependency
Remove the package from the appropriate [`requirements/*.in`](requirements)
file(s) and then run:```terminal
make requirements
```### To Upgrade or Downgrade a Dependency
We rely on [Dependabot](https://github.com/dependabot) to keep all our
dependencies up to date by sending automated pull requests to all our repos.
But if you need to upgrade or downgrade a package manually you can do that
locally.To upgrade a package to the latest version in all `requirements/*.txt` files:
```terminal
make requirements --always-make args='--upgrade-package '
```To upgrade or downgrade a package to a specific version:
```terminal
make requirements --always-make args='--upgrade-package =='
```To upgrade **all** packages to their latest versions:
```terminal
make requirements --always-make args=--upgrade
```Configuration
-------------Environment variables:
| Name | Purpose | Example |
|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
| `CHECKMATE_URL` | The URL of the URL Checkmate instance to use | `https://checkmate.example.com` |
| `CHECKMATE_API_KEY` | API key to authenticate with Checkmate | |
| `CHECKMATE_ALLOW_ALL` | Whether to bypass Checkmate's allow-list (and use only the blocklist) | `true` |
| `CHECKMATE_IGNORE_REASONS` | Comma-separated list of Checkmate block reasons to ignore | `publisher-blocked,high-io` |
| `CLIENT_EMBED_URL` | The URL of the client's embed script | `https://hypothes.is/embed.js` |
| `DATA_DIRECTORY` | Directory for externally provided data | `/via-data` |
| `ENABLE_FRONT_PAGE` | Show a front page at the root URL | `true` |
| `NEW_RELIC_*` | Various New Relic settings. See New Relic's docs for details | |
| `NGINX_SECURE_LINK_SECRET` | The NGINX secure links signing secret. This is used by Via's Python endpoints to generate the signed URLs required by its NGINX-implemented `/proxy/static/` endpoint. All instances of Via must have this setting | |
| `NGINX_SERVER` | The URL of Via's NGINX server for proxying PDF files | `https://via.hypothes.is` |
| `SENTRY_*` | Various Sentry settings. See Sentry's docs for details | |
| `SIGNED_URLS_REQUIRED` | Require URLs to Via's Python endpoints to be signed so that Via can only be used by something that has the URL signing secret. Public instances of Via should _not_ enable this. Private instances of Via (e.g. the LMS app's instance of Via) _should_ enable this | `true` |
| `VIA_HTML_URL` | The URL of the Via HTML instance to redirect to for proxying HTML pages | `https://viahtml.hypothes.is/proxy` |
| `VIA_SECRET` | The secret that must be used to sign URLs to Via's Python endpoints if `SIGNED_URLS_REQUIRED` is on | |Expected data:
The following data is expected to be provided in the `DATA_DIRECTORY`:
* `google_drive_credentials.json` - A list of credential JSON objects provided by the Google API console
* `google_drive_resource_keys.json` - A dict of file ids to resource keysError codes
-----------Most error codes have their natural meanings, but there are some special cases
that we catch. Those marged with **(error)** are from our point of view
something which is worth investigation. Others are a normal part of the
day-to-day.### All end-points:
* 401 - The user needs a secure token and either they don't have one, or it's
invalid### General end-points:
* 400 - The user has make a mistake in calling us or given us a bad URL
* 408 - We timed out accessing a website
* 409 - A website we have called gave us a conventional error like a
connection error. Trying again could help.
* 417 - A website has given us an unexpected response. This could be anything.
Trying again could help.### `/google_drive/*`
* 403 - The user has given us a URL which doesn't grant us permission to
download it
* 404 - The user has given us an invalid URL or one we _really_ don't have
permission to see
* **408 (error)** - We timed out trying to make a connection to Google
* **409 (error)** - We had a conventional error like a connection error
* **417 (error)** - We got an unexpected response from Google
* **423 (error)** - Google has blocked the file as malicous
* **429 (error)** - We have been rate limited by GoogleUpdating the PDF viewer
-----------------------Via serves PDFs using [PDF.js](https://mozilla.github.io/pdf.js/). PDF.js is
vendored into the source tree and the viewer HTML is patched to load the Hypothesis
client. To update the PDF viewer, run `make update-pdfjs`.How Via works
-------------Via allows users to annotate arbitrary web pages or PDF files by proxying the
page or file and injecting the Hypothesis client. Users go to
and paste in a PDF or HTML URL (or visit
`https://via.hypothes.is/` directly) and Via responds with an
annotatable version.### Via's architecture
Via is composed of four separable components:
1. A **top-level component** that responds to requests to the top-level
`/` endpoint by deciding whether the URL is a PDF file or
not and redirecting the browser to either the PDF viewer component or the
HTML proxying component accordingly.This component is implemented in Python / Pyramid.
The Pyramid app sends a GET request to the third-party URL but only
downloads the response headers not the body. It looks at the Content-Type
header to determine whether the body is a PDF file or not.If it's a PDF file then it redirects to the PDF viewer component:
`/pdf/`.If it's an HTML file then it redirects to the HTML proxy component.
The Pyramid app also handles various other bits and bobs such as serving up
the front page, handling special `via.*` query params, serving static files
such as PDF.js's assets, etc etc.2. A **PDF viewer component** that renders a modified version of PDF.js with the Hypothesis client embedded.
This is what enables users to annotate PDF files.
The PDF viewer is also implemented in Python / Pyramid (and JavaScript served by the Pyramid app).
The PDF viewer responds to requests to `/pdf/` by rendering
a version of [PDF.js](https://mozilla.github.io/pdf.js/) with the Hypothesis
client embedded, and configuring PDF.js to download the PDF file from the
static file proxy component.3. A **static files proxy component** that simply proxies static files to get around CORS.
This component is implemented in NGINX (in the [nginx.conf](nginx/nginx.conf) file) for efficiency.
This component responds to requests to the `/proxy/static/`
endpoint, such as PDF.js's download requests for PDF files.Many PDF hosts use
[CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) headers to
prevent JavaScript cross-origin requests (such as requests from our copy of
PDF.js) from downloading the file.
See [Can I load a PDF from another server (cross domain request)?](https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#can-i-load-a-pdf-from-another-server-cross-domain-request)
in the PDF.js FAQ.To get around this we proxy the PDF file through our own server so that
browsers no longer see PDF.js's download request as a cross-origin request.In the future we'll also use this component to proxy some static resources
of web pages for the same reason.4. A **rewriting HTML proxy component** that proxies HTML pages and injects the Hypothesis client.
This is what enables users to annotate web pages.
The HTML proxy isn't implemented yet. Via currently redirects to legacy Via for HTML proxying.
The HTML proxy's job is to enable annotating of HTML pages by proxying the
page and injecting the Hypothesis client into it.It also has to rewrite various elements of the page that would otherwise
break because the page is being proxied.### How Via works in production
In production both NGINX and Gunicorn (the WSGI server for the Python / Pyramid
app) run inside a single Docker container defined by the app's `Dockerfile`.NGINX runs on port 9083 in the Docker container, which is exposed to the
outside world.Gunicorn runs on a UNIX socket that is accessible to NGINX within the Docker
container but is not directly accessible to the outside world.NGINX is "in front of" Gunicorn in production:
1. All requests from user's browsers first go to NGINX on the Docker container's port 9083.
2. If the request is to a URL that NGINX handles directly (such as a
`/proxy/static/*` URL) then NGINX just responds directly.3. If the request is to one of the URLs that should be handled by the Pyramid
app then NGINX proxies to Gunicorn on a UNIX socket.### How Via works in development
In development NGINX runs in Docker Compose and is exposed at
http://localhost:9083/. This is defined in `docker-compose.yml`. The app's
`Dockerfile` isn't used in development, but the NGINX running in Docker Compose
in development does use the same `nginx.conf` file as the NGINX running in
Docker in production.The Python WSGI server (Gunicorn) runs on the host (no Docker) and is exposed
at http://localhost:9082/. The NGINX running on `:9083` proxies to the Gunicorn
on `:9082`.### WhiteNoise
The Pyramid app uses [WhiteNoise](http://whitenoise.evans.io/) to serve static
files in a CDN-friendly (caching-friendly) way. WhiteNoise serves the Python
app's static files in an efficient way and with the appropriate caching headers,
compression, etc.WhiteNoise is a piece of [WSGI middleware](https://www.python.org/dev/peps/pep-3333/#middleware-components-that-play-both-sides)
that wraps our Pyramid WSGI app. Rather than proxying to Pyramid directly
Gunicorn actually proxies to WhiteNoise which either responds directly (if the
request is for a static file) or proxies to Pyramid.### See also
* [Caching strategy](docs/caching-strategy.md)