Skip to content

Commit

Permalink
Merge pull request #1 from ueberauth/update-docs
Browse files Browse the repository at this point in the history
Update docs to match other strategies
  • Loading branch information
scrogson committed Nov 25, 2015
2 parents 81e6a3f + 0ed831a commit 6849a9c
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 73 deletions.
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Contributing to Ueberauth Slack

## Pull Requests Welcome
1. Fork ueberauth_slack
2. Create a topic branch
3. Make logically-grouped commits with clear commit messages
4. Push commits to your fork
5. Open a pull request against ueberauth_slack/master

## Issues

If you believe there to be a bug, please provide the maintainers with enough
detail to reproduce or a link to an app exhibiting unexpected behavior. For
help, please start with Stack Overflow.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 Daniel Neighman

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
128 changes: 55 additions & 73 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,107 +1,89 @@
# ÜeberauthSlack
# Überauth Slack

Proivdes an Üeberauth strategy to use Slack as the authentication mechanism.
> Slack OAuth2 strategy for Überauth.
## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Setup your application at [Slack API](https://api.slack.com).

1. Add ueberauth\_slack to your list of dependencies in `mix.exs`:
1. Add `:ueberauth_slack` to your list of dependencies in `mix.exs`:

````elixir
def deps do
[{:ueberauth_slack, "~> 0.1.0"}]
end
````
```elixir
def deps do
[{:ueberauth_slack, "~> 0.1"}]
end
```

2. Ensure oauth2 is started before your application:
1. Add the strategy to your applications:

```elixir
def application do
[applications: [:oauth2]]
end
````
```elixir
def application do
[applications: [:ueberauth_slack]]
end
```

3. Head over to [slack and create an application](https://api.slack.com/applications). You can use
http://localhost:4000/auth/slack/callback as the url for dev.
1. Add Slack to your Überauth configuration:

4. Add slack to your configuration (Phoenix)
```elixir
config :ueberauth, Ueberauth,
providers: [
slack: [{Ueberauth.Strategy.Slack, []}]
]
```

````elixir
# To your ueberauth providers list
config :ueberauth, Ueberauth,
providers: [
slack: { Ueberauth.Strategy.Slack, [] }
]
1. Update your provider configuration:

```elixir
config :ueberauth, Ueberauth.Strategy.Slack.OAuth,
client_id: System.get_env("SLACK_CLIENT_ID"),
client_secret: System.get_env("SLACK_CLIENT_SECRET")
```

# To provide access to the slack secrets
1. Include the Überauth plug in your controller:

config :ueberauth, Ueberauth.Strategy.Slack.OAuth,
client_id: System.get_env("SLACK_CLIENT_ID"),
client_secret: System.get_env("SLACK_CLIENT_SECRET")
````
```elixir
defmodule MyApp.AuthController do
use MyApp.Web, :controller
plug Ueberauth
...
end
```

5. If you haven't already, create a pipeline for your Üeberauth
1. Create the request and callback routes if you haven't already:
````elixir
pipeline :ueberauth do
Ueberauth.plug "/auth"
end
```elixir
scope "/auth", MyApp do
pipe_through :browser
scope "/auth" do
pipe_through [:browser, :ueberauth]
get "/:provider", AuthController, :request
get "/:provider/callback", AuthController, :callback
end
```
# it does not matter which contorller for the request phase
# We just need to trigger the pipeline
get "/slack", PagesController, :index
get "/:provider/callback", AuthController, :callback
end
````
1. You controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses.
6. Implement your callback action in your controller to deal with an `Ueberauth.Auth` or `Ueberauth.Failure` callback
For an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application.
## Calling
To run through slack, depending on the url you setup with `Ueberauth.plug/1` you
can hit the url for the request phase.
Depending on the configured url you can initial the request through:
/auth/slack
Or with options
Or with options:
/auth/slack?scope=users:read
By default the scope requested will be "users:read". This can be configured
either explicitly when you call the request path by providing a scope in the
query string, or by setting a default in your configuration.
By default the requested scope is "users:read". Scope can be configured either explicitly as a `scope` query value on the request path or in your configuration:
````elixir
```elixir
config :ueberauth, Ueberauth,
providers: [
slack: { Ueberauth.Strategy.Slack, [ default_scope: "users:read,users:write" ]
slack: {Ueberauth.Strategy.Slack, [default_scope: "users:read,users:write"]}
]
````
# License
The MIT License (MIT)
Copyright (c) 2015 Daniel Neighman
```
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
## License
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
Please see [LICENSE](https://github.com/ueberauth/ueberauth_slack/blob/master/LICENSE) for licensing details.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

0 comments on commit 6849a9c

Please sign in to comment.