Prototype of Aozora-bunko package management server prototype
青空文庫の書籍パッケージを受け取り、配布するためのサーバのプロトタイプです
- MongoDB (2.6と3.0で確認しています)
- foreman (
gem install foreman
)
npm install
grunt coffee
foreman start web
AOZORA_MONGODB_CREDENTIAL
MongoDBにアクセスするユーザ名・パスワード "username:password@" (default: "")AOZORA_MONGODB_HOST
MongoDBのホスト名 (default: "localhost")AOZORA_MONGODB_PORT
MongoDBのポート番号 (default: 27017)PORT
pubserverの待ち受けポート番号 (default: 5000)
(/draftsを使う場合)
AOZORA_BITBUCKET_USER
BitBucketアカウントのユーザ名AOZORA_BITBUCKET_PASS
BitBucketアカウントのパスワードAOZORA_BITBUCKET_EMAIL
BitBucketアカウントのEmailアドレス
いか、Heroku仮稼働しているプロトタイプサーバのURLです。ローカルで動かす時にはホスト名を "localhost:5000"で適宜読み替えてください。
curl http://pubserver-master.herokuapp.com/api/v0.1/books
追加パラメータ
name
: タイトル名でのフィルタfields
: 取得する属性を指定limit
: 取得するアイテム数を制限after
: release_dateがこの日付よりも新しいモノのみを返す(YYYY-MM-DD)
curl http://pubserver-master.herokuapp.com/api/v0.1/books/{book_id}
curl http://pubserver-master.herokuapp.com/api/v0.1/books/{book_id}/content?format=txt
curl http://pubserver-master.herokuapp.com/api/v0.1/books/{book_id}/content?format=html
curl -Fpackage=@{package_file} http://pubserver-master.herokuapp.com/api/v0.1/books
package_file
はaozora.txtとaozora.jsonが含まれるzipファイル。
curl http://pubserver-master.herokuapp.com/api/v0.1/persons
curl http://pubserver-master.herokuapp.com/api/v0.1/persons/{person_id}
curl http://pubserver-master.herokuapp.com/api/v0.1/workers
curl http://pubserver-master.herokuapp.com/api/v0.1/workers/{worker_id}
curl -X POST -H 'Content-type: application/json' -d '{"title": {title}, "author": {author}, "id":{book_id}, "private": {true|false}}' http://pubserver-master.herokuapp.com/api/v0.1/drafts
https://github.com/aozorabunko/aozorabunko/raw/master/index_pages/list_person_all_extended_utf8.zip をダウンロード、そこに含まれるCSVファイルから情報取得し、DBに投入。
npm install -g coffee
coffee scraper/getbooks.coffee
http//reception.aozora.gr.jp/{pidlist|widlist}.php からダウンロードしたHTMLファイルをscrapingしてDBに投入。結果は上記のAPIから取得できる。
npm install -g coffee
coffee scraper/getids.coffee