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)
以下は heroku.com で仮稼働しているプロトタイプサーバのURLです。 ローカルで動かす時にはホスト名を "localhost:5000"で適宜読み替えてください。
curl http://www.aozorahack.net/api/v0.1/books
追加パラメータ
title
: タイトル名でのフィルタ(正しく動作していません)author
: 著者名でのフィルタfields
: 取得する属性を指定limit
: 取得するアイテム数を制限skip
: 指定した分のアイテムをスキップしてそれ以降を取得after
: release_dateがこの日付よりも新しいモノのみを返す(YYYY-MM-DD)
curl http://www.aozorahack.net/api/v0.1/books/{book_id}
curl http://www.aozorahack.net/api/v0.1/books/{book_id}/card
curl http://www.aozorahack.net/api/v0.1/books/{book_id}/content?format=txt
curl http://www.aozorahack.net/api/v0.1/books/{book_id}/content?format=html
curl -Fpackage=@{package_file} http://www.aozorahack.net/api/v0.1/books
package_file
はaozora.txtとaozora.jsonが含まれるzipファイル。
curl http://www.aozorahack.net/api/v0.1/persons
追加パラメータ
name
: 著者名でのフィルタ
curl http://www.aozorahack.net/api/v0.1/persons/{person_id}
curl http://www.aozorahack.net/api/v0.1/workers
curl http://www.aozorahack.net/api/v0.1/workers/{worker_id}
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