npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-miopon

v1.1.2

Published

miopon API wrapper for nodejs

Downloads

30

Readme

node-miopon

Build Status npm version Dependency Status devDependency Status

IIJmioクーポンスイッチAPIのNode.jsラッパーです。 oAuthとAPIへのアクセスをラップしています。

実行にはデベロッパーIDとリダイレクトURIの指定が必要です。これらは公式サイトに従って登録してください。 IIJmioクーポンスイッチAPIのご利用に当たって(IIJmioのサイト)

実装

install

npm install node-miopon

APIs

node-mioponモジュールは、oAuthメソッド、コンストラクタ関数Coupon、コンテナオブジェクトutilityをメンバに持ちます。

oAuth

phantomjsでoAuthのやり取りを自動化します。

  • oAuth takes { mioID, mioPass, client_id, redirect_uri, success, failure }.
  • callback success will be called with {client_id, access_token, expires_in}.
  • callback failure will be called with a error object.

coupon.inform

回線の情報(ID、電話番号、クーポンを使用中か、etc.)を取得します。

  • coupon.inform takes {client_id, access_token, success, failure}.
  • callback success will be called with {information}.
  • callback failure will be called with a error object.

coupon.turn

クーポンの切り替えをします。

  • coupon.turn takes {client_id, access_token, query, success, failure}.
  • callback success will be called with no argument.
  • callback failure will be called with a error object.

utility.querify

informメソッドで得られたinformationオブジェクトを、turnメソッドで用いるqueryオブジェクトに整形します。

  • utility.querify takes {information, couponUse, filter} and returns query synchronously.
  • optional couponUse accepts..
    • 'on' or something to be evaluated as true
    • 'off' or something to be evaluated as false
  • optional filter accepts array or string of phone number(s) and filter query if provided. If not, all of the information will be querified.

utility.generateQuery

hdoServiceCodeを指定して、turnメソッドで用いるqueryオブジェクトを生成します。

  • utility.generateQuery takes {turnStates} and returns query synchronously.
  • turnStates should be a array of {hdoServiceCode: couponUse}

example

CoffeeScriptでの例

oAuthでaccess_tokenを取得

oAuth = require('node-miopon').oAuth

oAuth {
    mioID:     'aaaaaaaa'
    mioPass:   'bbbbbbbb'
    client_id: 'cccccccc' # デベロッパーID
    redirect_uri: 'ddddd'

    success: ({access_token})->
        console.log 'authorized!'

    failure: (err) ->
        console.log 'not authorized..'
        console.log err
}

電話番号'0123'のクーポンをオンにする

miopon = require 'node-miopon'
coupon = new miopon.Coupon
utility = miopon.utility

client_id    = 'xxxxxxxxxxxxxxxxxxx'
access_token = 'yyyyyyyyyyyyyyyyyyy'

# この例では、最初に全ての回線情報を取得しています
coupon.inform {
    client_id
    access_token

    success: ({information}) ->
        # informationオブジェクトを整形
        query = utility.querify {
            information
            couponUse: 'on'
            filter: '0123'
        }

        # このクエリでturnメソッドを実行
        coupon.turn {
            client_id
            access_token
            query

            success: ->
                console.log 'turn success!'

            failure: (err) ->
                console.log err
        }
}

複雑なクーポン操作

miopon = require 'node-miopon'
coupon = new miopon.Coupon
utility = miopon.utility

client_id    = 'xxxxxxxxxxxxxxxxxxx'
access_token = 'yyyyyyyyyyyyyyyyyyy'

# hdoServiceCodeはinformメソッドなどで取得しておきます
# この例では、3つのクーポンを扱っています
# XとYはクーポンを共有しています
# Zは、XYとはクーポンを共有していません
# XZをonにし、Yをoffにします
query = utility.generateQuery [
    {
        'hdoXXXXXXXX': 'on'
        'hdoYYYYYYYY': 'off'
    },{
        'hdoZZZZZZZZ': 'on'
    }
]

coupon.turn {
    client_id
    access_token
    query

    success: ->
        console.log 'turn success!'
}