Skip to content

Stash App's own OpenSource video indexing and Perceptual Hashing MetaData API

License

Notifications You must be signed in to change notification settings

InfiniteStash/stash-box

 
 

Repository files navigation

stash-box

Discord

stash-box is Stash App's own OpenSource video indexing and Perceptual Hashing MetaData API server for porn.

The intent of stash-box is to provide a collaborative, crowd-sourced database of porn metadata, in the same way as MusicBrainz does for music. The submission and editing of metadata is expected to follow the same principle as that of the MusicBrainz database. See here for how MusicBrainz does it. Installing this software will create a blank stash-box database that you can populate yourself.

The graphql playground can be accessed at host:port/playground. The graphql interface is at host:port/graphql.

Note: If you are a Stash user, you do not need to install stash-box. The Stash community has a server with many titles from which you can pull data. You can get the login information from the #stash-box-qa2 channel on our Discord server.

Docker install

TODO

Bare-metal Install

Stash-box supports macOS, Windows, and Linux.

Releases TODO

Initial setup

Before building the binary the frontend project needs to be built.

  • Run yarn install --frozen-lockfile in the stash-box/frontend folder.
  • Run make generate, followed by make ui build from the main folder.

Stash-box requires access to a postgres database server. When stash-box is first run, or when it cannot find a configuration file (defaulting to stash-box-config.yml in the current working directory), then it generates a new configuration file with a default postgres connection string (postgres@localhost/stash-box?sslmode=disable). It prints a message indicating that the configuration file is generated, and allows you to adjust the default connection string as needed.

The database must be created and available. If the postgres user is not a superuser, CREATE EXTENSION pg_trgm; needs to be run by a superuser before rerunning stash-box, otherwise you will get a migration error. The schema will be created within the database if it is not already present.

The sslmode parameter is documented in the pq documentation. Use sslmode=disable to not use SSL for the database connection. The default value is require.

After ensuring the database connection string is correct and the database server is available, the stash-box executable may be rerun.

The second time that stash-box is run, stash-box will run the schema migrations to create the required tables. It will also generate a root user with a random password and an API key. These credentials are printed once to stdout and are not logged. The root user will be regenerated on startup if it does not exist, so a new root user may be created by deleting the root user row from the database and restarting stash-box.

CLI

Stash-box provides some command line options. See what is currently available by running stash-box --help.

For example, to run stash locally on port 80 run it like this (OSX / Linux) stash-box --host 127.0.0.1 --port 80.

Configuration

Stash-box generates a configuration file stash-box-config.yml in the current working directory when it is first started up. This configuration file is generated with the following defaults:

  • running on 0.0.0.0 port 9998

The graphql playground and cross-domain cookies can be disabled by setting is_production: true.

API keys and authorisation

A user may be authenticated in one of two ways. Session-based management is possible by logging in via /login, passing form values for username and password in plain text. This sets a cookie which is required for subsequent requests. The session can be ended with a request to /logout.

The alternative is to use the user's api key. For this, the ApiKey header must be set to the user's api key value.

Configuration keys

Key Default Description
require_invite true If true, users are required to enter an invite key, generated by existing users to create a new account.
require_activation true If true, users are required to verify their email address before creating an account.
activation_expiry 7200 (2 hours) The time - in seconds - after which an activation key (emailed to the user for email verification or password reset purposes) expires.
email_cooldown 300 (5 minutes) The time - in seconds - that a user must wait before submitting an activation or reset password request for a specific email address.
default_user_roles READ, VOTE, EDIT The roles assigned to new users when registering. This field must be expressed as a yaml array.
email_host (none) Address of the SMTP server. Required to send emails for activation and recovery purposes.
email_port 25 Port of the SMTP server.
email_user (none) Username for the SMTP server. Optional.
email_password (none) Password for the SMTP server. Optional.
email_from (none) Email address from which to send emails.
host_url (none) Base URL for the server. Used when sending emails. Should be in the form of https://hostname.com.
image_location (none) Path to store images, for local image storage. An error will be displayed if this is not set when creating non-URL images.
image_backend (file) Storage solution for images. Can be set to either file or s3.
userLogFile (none) Path to the user log file, which logs user operations. If not set, then these will be output to stderr.
s3.endpoint (none) Hostname to s3 endpoint used for image storage.
s3.base_url (none) Base URL to access images in S3. Should be in the form of https://hostname.com.
s3.bucket (none) Name of S3 bucket used to store images.
s3.access_key (none) Access key used for authentication.
s3.secret (none) Secret Access key used for authentication.
s3.max_dimension (none) If set, a resized copy will be created for any image whose dimensions exceed this number. This copy will be served in place of the original.

SSL (HTTPS)

Stash-box supports HTTPS with some additional work. First you must generate a SSL certificate and key combo. Here is an example using openssl:

openssl req -x509 -newkey rsa:4096 -sha256 -days 7300 -nodes -keyout stash-box.key -out stash-box.crt -extensions san -config <(echo "[req]"; echo distinguished_name=req; echo "[san]"; echo subjectAltName=DNS:stash-box.server,IP:127.0.0.1) -subj /CN=stash-box.server

This command would need customizing for your environment. This link might be useful.

Once you have a certificate and key file name them stash-box.crt and stash-box.key and place them in the directory where stash-box is run from. Stash-box detects these and starts up using HTTPS rather than HTTP.

Frontend development

To run the frontend in development mode, run yarn start from the frontend directory.

When developing the API key can be set in frontend/.env.development.local to avoid having to log in.
When is_production is enabled on the server this is the only way to authorize in the frontend development environment. If the server uses https or runs on a custom port, this also needs to be configured in .env.development.local.
See frontend/.env.development.local.shadow for examples.

FAQ

I have a question not answered here.

Join the Discord server.

Development

Install

  • Revive - Configurable linter
    • Go Install: go get github.com/mgechev/revive
  • Packr2 - Static asset bundler
    • Go Install: go get github.com/gobuffalo/packr/v2/packr2@v2.0.2
    • Binary Download
  • Yarn - Yarn package manager

NOTE: You may need to run the go get commands outside the project directory to avoid modifying the projects module file.

Environment

macOS

TODO

Windows

  1. Download and install Go for Windows
  2. Download and install MingW
  3. Search for "advanced system settings" and open the system properties dialog.
    1. Click the Environment Variables button
    2. Add GO111MODULE=on
    3. Under system variables find the Path. Edit and add C:\Program Files\mingw-w64\*\mingw64\bin (replace * with the correct path).

Commands

  • make generate - Generate Go GraphQL files. This should be run if the graphql schema has changed.
  • make ui - Builds the UI and regenerates the packr2 files.
  • make packr - Regenerates the packr2 files. Run this if schema migration files have changed and you don't want to rebuild the UI.
  • make build - Builds the binary
  • make vet - Run go vet
  • make lint - Run the linter
  • make test - Runs the unit tests
  • make it - Runs the unit and integration tests

Note: the integration tests run against a temporary sqlite3 database by default. They can be run against a postgres server by setting the environment variable POSTGRES_DB to the postgres connection string. For example: postgres@localhost/stash-box-test?sslmode=disable. Be aware that the integration tests drop all tables before and after the tests.

Building a release

  1. Run make generate to create generated files
  2. Run make ui build to build the executable for your current platform

Cross compiling

TODO

About

Stash App's own OpenSource video indexing and Perceptual Hashing MetaData API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 59.4%
  • TypeScript 37.5%
  • SCSS 1.5%
  • PLpgSQL 0.6%
  • JavaScript 0.4%
  • Makefile 0.3%
  • Other 0.3%