Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kufu/omniauth-smarthr

OmniAuth strategy for SmartHR
https://github.com/kufu/omniauth-smarthr

Last synced: about 5 hours ago
JSON representation

OmniAuth strategy for SmartHR

Awesome Lists containing this project

README

        

# OmniAuth SmartHR
OmniAuth SmartHRはSmartHRとのOAuth連携処理を簡素化するための[OmniAuth](https://github.com/omniauth/omniauth) strategyです。

## インストール

```ruby
gem 'omniauth-smarthr'
```
## 使い方

### Rails

OmniAuthをミドルウェアとして登録します。

**config/initializers/omniauth.rb**:
```ruby
Rails.application.config.middleware.use OmniAuth::Builder do
provider :smarthr, ENV['SMARTHR_CLIENT_ID'], ENV['SMARTHR_CLIENT_SECRET']
end
```
※`SMARTHR_CLIENT_ID` 及び `SMARTHR_CLIENT_SECRET`を取得するには [SmartHR Plus](https://www.smarthr.plus) の[パートナープログラムについて](https://www.smarthr.plus/partner)をご参照の上、お問い合わせください。

環境変数を用意します。

**.env**:
```
# Required
SMARTHR_CLIENT_ID=YOUR_CLIENT_ID
SMARTHR_CLIENT_SECRET=YOUR_CLIENT_SECRET

# Optional
# サンドボックス環境を利用する場合には、サンドボックス環境のエンドポイントを指定してください。
SMARTHR_AUTH_ENDPOINT=SANDBOX_ENVIRONMENT_ENDPOINT
```

ルーティングとコントローラを用意します。

**config/routes.rb**:

```ruby
get 'auth/:provider/callback', to: 'sessions#create'
```

**app/controllers/sessions_controller.rb**:
```ruby
class SessionsController < ApplicationController
def create
user_info = request.env['omniauth.auth']
raise user_info # 適宜セッション管理を行います。
end
end
```

ユーザーを`/auth/smarthr`に遷移させることでOAuth認可コードフローが開始されます。
OAuth認可コードフローが開始するとアプリケーションとの連携許可を求める認可画面が表示されます。
認可画面で連携を許可するとアプリケーションにリダイレクトされ`Sessions#create`が呼び出されます。
`Sessions#create`で`request.env['omniauth.auth']`を参照することでSmartHRから受け取ったユーザー情報(アクセストークン含む)を取得できます。

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kufu/omniauth-smarthr.