Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kufu/omniauth-smarthr
- Owner: kufu
- License: mit
- Created: 2023-12-07T22:21:46.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-17T12:24:32.000Z (10 months ago)
- Last Synced: 2024-10-20T09:55:50.652Z (19 days ago)
- Language: Ruby
- Size: 9.77 KB
- Stars: 3
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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.