easybib / stack-github-org-auth
Authenticate a user based on memberships in a GitHub organization
0.3.0
2015-09-15 14:24 UTC
Requires
- guzzlehttp/guzzle: ~4.0
- igorw/stack-oauth: dev-t/oauth2
- stack/builder: ~1.0.2
- stack/session: 1.0.*@dev
This package is not auto-updated.
Last update: 2024-10-26 15:57:09 UTC
README
Requires this PR (for the time being): igorw/stack-oauth#9
$stack = (new Stack\Builder()) ->push('Stack\Session') ->push( 'Igorw\Stack\OAuth', [ 'key' => $app['github.key'], 'secret' => $app['github.secret'], 'callback_url' => $app['github.callback'], 'success_url' => $app['url_generator']->generate('homepage'), 'failure_url' => '/auth', 'oauth_service.class' => 'OAuth\OAuth2\Service\GitHub', 'service_scopes' => [ 'read:org', ], ] ) ->push( 'ImagineEasy\Stack\GitHubOrgAuth', [ 'organizations' => ['easybiblabs'], // the following options are optional 'github_org_url' => 'https://api.github.com/user/orgs?access_token=' // e.g. for GitHub Enterprise 'http_client' => new GuzzleHttp\Client, 'session_orgs' => 'github.orgs', // defines the key used in the session ] ) ; $app = $stack->resolve($app); $request = HttpFoundation\Request::createFromGlobals(); $response = $app->handle($request)->send(); $app->terminate($request, $response);