rebblestore-api

command module
v0.0.0-...-ac755b3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2019 License: MIT Imports: 10 Imported by: 0

README

Repo archived

Moved to python implementation: https://github.com/pebble-dev/rebble-appstore-api

Rebble Store for pebble Backend/API

The Rebble Store is a Pebble Appstore replacement. If you want to contribute join us on the Pebble Dev Discord server, then head to #appstore.

Requirements

Backend/API layer requires git, go, npm, and apib2swagger.

To make the backend do anything, you also need to download a copy of the Pebble App Store. You can already start downloading it here while you setup the development environment.

Dev Environment Setup

Pull down the project within your $GOPATH's src folder ($GOPATH is an environment variable and is typically set to $HOME/go/ on *nix). This can be done by running (for example) the following set of commands:

# export GOPATH=~/go/ # Optional if your didn't move your ~/go directory
mkdir -p $GOPATH/src/pebble-dev
git clone https://github.com/pebble-dev/rebblestore-api.git $GOPATH/src/pebble-dev/rebblestore-api

Build Process

Backend

  1. If you haven't already, you will need to run go get -v . within the project directory;
  2. Run either make to build everything, or go build -v . to just build the go executable;
  3. You can run the api with ./rebblestore-api, or run the tests with ./rebblestore-api-tests.

Database

Instructions to setup the database:

  1. If you haven't already, download a copy of the Pebble App Store by using this tool. To ease the load on fitbit's servers, you can download it directly here;
  2. Extract the PebbleAppStore folder to the project directory: tar -xzf PebbleAppStore.tar.gz -C $GOPATH/src/pebble-dev/rebblestore-api;
  3. Start ./rebblestore-api and access http://localhost:8080/admin/rebuild/db to rebuild the database.

Contributing

How Do I Help?

Everyone is welcome to help. Efforts are coordinated in the issues tab, and in the Discord Server in the channel #appstore.

If this is your first time contributing to an Open-Source project, you can read this article to familiarize yourself with the process.

Please format your code with go fmt and run go test before committing your changes. Some editor plugins (such as vim-go) should be able to do this automatically before save.

Code Structure

  • The core of the backend is an HTTP server powered by Go's http library as well as the gorilla/mux URL router and dispatcher;
  • URLs are routed in routes.go (each URL gets its custom handler across multiple files);
  • When a valid URL is accessed, the corresponding handler is called. For example, {server}/admin/version is served by AdminVersionHandler in admin.go;
  • admin.go serves the database builder (used the first time you run the backend, or every time you add new columns to the DB that require data from the Pebble App Store archive);
  • application.go defines application structures (namely RebbleApplication), populates them, and handles most requests pertaining to the applications themselves;
  • boot.go handles the mobile application URI bootstrap, as described on the wiki.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL