An image hosting service on top of the LBRY protocol.
Go to file
2018-01-23 14:35:35 -08:00
auth passed second set of user tests 2017-12-15 11:19:10 -08:00
config changed URI to HOST in api config 2018-01-23 12:41:39 -08:00
constants split publish timing into two stats 2018-01-23 12:08:53 -08:00
controllers added back needed stats Controller 2018-01-22 22:05:16 -08:00
helpers Merge branch 'master' of github.com:lbryio/spee.ch into split-publish-timing-events 2018-01-23 14:35:35 -08:00
migrations added migration to change DOUBLE to DECIMAL 2017-11-08 07:25:21 -08:00
models fixed logging error for channel-based claim Id search 2018-01-09 15:11:26 -08:00
passport split publish timing into two stats 2018-01-23 12:08:53 -08:00
public passed second set of user tests 2017-12-15 11:19:10 -08:00
routes split publish timing into two stats 2018-01-23 12:08:53 -08:00
task-scripts changed publishing to claim and updated config imports 2017-12-16 09:55:29 -08:00
test updated tests to use different claim name 2017-12-28 13:05:43 -08:00
views updated release banner to maintenance banner 2018-01-22 15:23:13 -08:00
.eslintignore added end to end tests with chai 2017-12-15 07:24:29 -08:00
.eslintrc added end to end tests with chai 2017-12-15 07:24:29 -08:00
.gitignore removed config/config.json from .gitignore 2017-11-13 16:00:21 -05:00
.sequelizerc added migrations for Claim column types 2017-11-07 14:47:41 -08:00
package-lock.json Edited code to be ES6, added eslint and some basic linting configuration 2017-06-17 22:51:30 +02:00
package.json added flag for tests requiring lbc 2017-12-18 15:23:23 -08:00
README.md change slack to discord 2017-12-22 10:31:39 +07:00
speech.js added endpoint to update password 2017-11-30 14:46:32 -08:00

spee.ch

spee.ch is a single-serving site that reads and publishes images and videos to and from the LBRY blockchain.

how to run this repository locally

  • start mysql
    • install mysql
    • create a database called lbry
    • save your connection username and password someplace handy
  • start lbrynet daemon
    • install the lbry daemon
    • start the lbry daemon
  • start spee.ch-sync
  • start spee.ch
    • clone this repo
    • run npm install
    • create your speechConfig.js file
      • copy speechConfig.js.example and name it speechConfig.js
      • replace the null values in the config file with the appropriate values for your environement
    • to start the server, from your command line run node speech.js
      • To run hot, use nodemon instead of node
  • visit localhost:3000

Tests

  • Spee.ch uses mocha with chai for testing.
  • To run all tests that do not require LBC, run npm test -- --grep @usesLbc --invert
  • To run all tests, including those that require LBC (like publishing), simply run npm test

API

GET

  • /api/claim-resolve/:name
    • example: curl https://spee.ch/api/claim-resolve/doitlive
  • /api/claim-list/:name
    • example: curl https://spee.ch/api/claim-list/doitlive
  • /api/claim-is-available/:name (
    • returns true/false for whether a name is available through spee.ch
      • example: curl https://spee.ch/api/claim-is-available/doitlive
  • /api/channel-is-available/:name (
    • returns true/false for whether a channel is available through spee.ch * example: curl https://spee.ch/api/channel-is-available/@CoolChannel

POST

  • /api/claim-publish
    • example: curl -X POST -F 'name=MyPictureName' -F 'file=@/path/to/myPicture.jpeg' https://spee.ch/api/claim-publish
    • Parameters:
      • name
      • file (must be type .mp4, .jpeg, .jpg, .gif, or .png)
      • nsfw (optional)
      • license (optional)
      • title (optional)
      • description (optional)
      • thumbnail url to thumbnail image, for .mp4 uploads only (optional)
      • channelName(optional)
      • channelPassword (optional,; required if channelName is provided)

bugs

If you find a bug or experience a problem, please report your issue here on github and find us in the lbry discord!