Your open-source talks place. Backend part.
This is a backend part of ost.io application.
Ostio api is built with Rails.
- Copy
nginx.conf
to your nginx dir:sudo cp nginx.conf /etc/nginx/api.conf
- Restart nginx:
sudo /etc/init.d/nginx restart
- Add your GitHub app id / secret to ENV:
# This is id / secret of example app. Callback URL for it:
# https://dev.ost.io:3000/auth/github
export GITHUB_APP_ID='b99404045c3917fd6be4'
export GITHUB_APP_SECRET='fedbf022667be7056bcaca9568e55151b219c660'
- Restart thin webserver:
sudo killall thin && thin start -C thin.yml
Current API version is v1. You need to prepend v1/
to app requests except auth.
/auth/github?origin=https://example.com/
All requests that change state (POST
, PUT
, DELETE
) require authentication.
When authenticated, ostio will redirect to your origin
with params login
and accessToken
: https://example.com?login=paulmillr&accessToken=af952810adbt
:username
is a user name user has on GitHub.
GET /users/:username
Example: https://api.ost.io/v1/users/paulmillr
DELETE /users/:username
:repo_name
is a repository name it has on GitHub.
GET /users/:username/repos/
Example: https://api.ost.io/v1/users/paulmillr/repos/
POST /users/:username/repos/
GET /users/:username/repos/:repo_name
Example: https://api.ost.io/v1/users/paulmillr/repos/ostio
:topic_number
is a number, local to current repository.
GET /users/:username/repos/:repo_name/topics/
Example: https://api.ost.io/v1/users/paulmillr/repos/ostio/topics/
POST /users/:username/repos/:repo_name/topics/
Input:
- title: Required string
GET /users/:username/repos/:repo_name/topics/:topic_number
Example: https://api.ost.io/v1/users/paulmillr/repos/ostio/topics/1
PUT /users/:username/repos/:repo_name/topics/:topic_number
Input:
- title: Required *string&
DELETE /users/:username/repos/:repo_name/topics/:topic_number
GET /users/:username/repos/:repo_name/topics/:topic_number/posts/
Example: https://api.ost.io/v1/users/paulmillr/repos/ostio/topics/1/posts/
POST /users/:username/repos/:repo_name/topics/:topic_number/posts/
Input:
- text: Required *string
GET /users/:username/repos/:repo_name/topics/:topic_number/posts/:id
Example: https://api.ost.io/v1/users/paulmillr/repos/ostio/topics/1/posts/8
PUT /users/:username/repos/:repo_name/topics/:topic_number/posts/:id
Input:
- text: Required *string
DELETE /users/:username/repos/:repo_name/topics/:topic_number/posts/:id
The MIT License (MIT)
Copyright (c) 2012 Paul Miller (https://paulmillr.com/)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.