Skip to content
This repository was archived by the owner on May 19, 2020. It is now read-only.

Commit b6208b8

Browse files
author
Daniel Kiesel
committedOct 13, 2016
init
0 parents  commit b6208b8

31 files changed

+3272
-0
lines changed
 

‎.editorconfig

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 2
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
16+
[*.py]
17+
indent_size = 4
18+
19+
[*.yml]
20+
indent_size = 4
21+
22+
[*.php]
23+
indent_size = 4
24+
25+
[*.json]
26+
indent_size = 4

‎.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# IDE & OS
2+
.idea/
3+
.DS_Store
4+
5+
# Project
6+
vendor
7+
composer.phar
8+
composer.lock
9+
phpunit.xml
10+
Tests/Controller/App/*/

‎.travis.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- 7.0
9+
- hhvm
10+
11+
sudo: false
12+
13+
matrix:
14+
fast_finish: true
15+
include:
16+
- php: 5.3
17+
env: COMPOSER_FLAGS="--prefer-lowest"
18+
- php: 5.6
19+
env: SYMFONY_VERSION="2.7.*"
20+
- php: 5.6
21+
env: SYMFONY_VERSION="2.8.*" DEPENDENCIES=dev
22+
- php: 5.6
23+
env: DEPENDENCIES=dev
24+
allow_failures:
25+
- env: DEPENDENCIES=dev
26+
27+
before_install:
28+
- composer self-update
29+
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
30+
31+
install:
32+
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
33+
34+
script:
35+
- phpunit -v --coverage-text
36+
37+
notifications:
38+
slack:
39+
secure: r1ioTPWrMK73mgqJzww7T93VmSOjxcH4e4EiGFJ5aBNWpTOuN8Kn7/vcpwmCEcFBZcvISTOUx+ODESQjd26hn7J8+gsFNKQJabab+cFQeoz7Q1A0c++uUzk1fVPCSdxkzOnW06zhSvhLNV0MmUCzaxYsI6EbdoGfNwokngUesaO+c2lnqgmkakBI+Ra5LsHXobYmvKkXHTCVoKKRnQquw8agfwww1jp3jKGtl/YoQMGAHNyMpNThc8VB02Dfr6M03UsQRGEc9OUqyqhwZpDPcONyvtsl542cUXvw7unif8asOIQ78Luv1TiunmC5Oz9QO4wdJq21vR+Bx+lTph+N80R++9if+dQxkSDqOWd1DEkHtO3BYoF2+o9tYEygXQah+YXeoa6jN86zM06sp4+RsxxZxJSZM0MkTp80yf1vSkpK2pTGBTm1TiotzhSXf3ouIG5k60KQJqsHbRmuBIlDSluG1QFe9f0IuuncNv1QbsHH+oM3dXE9a8PMaIdcVmJ+oNFvVdy4LhjE6hjlqSjjf79Rxpn29iM5KQU1J/TXoBbjVv3Ztww0wwhBknw9x19tgtMN9kc6csBcUfRBry0OZ6Bu0UG0MFTMYImbRbVNbk4KgsIp68ZvSGC4C0SwkF1MzpkMNFDhvtLS32rnr+XDjAy5HvuUIlKbVMklcCIJl2A=

‎CraffftContaoOAuth2Bundle.php

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle;
13+
14+
use Symfony\Component\HttpKernel\Bundle\Bundle;
15+
16+
class CraffftContaoOAuth2Bundle extends Bundle
17+
{
18+
}

‎DataContainer/OAuth2Client.php

+187
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\DataContainer;
13+
14+
use Contao\Backend;
15+
use Contao\CoreBundle\Exception\AccessDeniedException;
16+
use Contao\DataContainer;
17+
use Contao\Image;
18+
use Contao\Input;
19+
use Contao\Versions;
20+
21+
class OAuth2Client extends Backend
22+
{
23+
public function __construct()
24+
{
25+
parent::__construct();
26+
$this->import('BackendUser', 'User');
27+
}
28+
29+
/**
30+
* @param $dc
31+
*/
32+
public function storeCreatedAtAndUpdatedAt($dc)
33+
{
34+
// Front end call
35+
if (!$dc instanceof DataContainer) {
36+
return;
37+
}
38+
39+
// Return if there is no active record (override all)
40+
if (!$dc->activeRecord) {
41+
return;
42+
}
43+
44+
$datetime = new \DateTime();
45+
$formattedDatetime = $datetime->format(\DateTime::ISO8601);
46+
47+
if ($dc->activeRecord->created_at <= 0) {
48+
$this->Database->prepare("UPDATE tl_oauth2_client SET created_at=?, updated_at=? WHERE id=?")
49+
->execute($formattedDatetime, $formattedDatetime, $dc->id);
50+
} else {
51+
$this->Database->prepare("UPDATE tl_oauth2_client SET updated_at=? WHERE id=?")
52+
->execute($formattedDatetime, $dc->id);
53+
}
54+
}
55+
56+
/**
57+
* @param $row
58+
* @param $label
59+
* @param DataContainer $dc
60+
* @param $args
61+
* @return array
62+
*/
63+
public function prepareRowItems($row, $label, DataContainer $dc, $args)
64+
{
65+
$args[0] = $row['id'] . '_' . $row['random_id'];
66+
67+
$secret = $row['secret'];
68+
69+
if (strlen($secret)) {
70+
$arrSpliters = str_split($secret, 32);
71+
$args[1] = implode('<br>', $arrSpliters);
72+
}
73+
74+
$allowedGrantTypes = deserialize($row['allowed_grant_types']);
75+
76+
if (is_array($allowedGrantTypes)) {
77+
$args[2] = implode('<br>', $allowedGrantTypes);
78+
}
79+
80+
return (array)$args;
81+
}
82+
83+
/**
84+
* @param $row
85+
* @param $href
86+
* @param $label
87+
* @param $title
88+
* @param $icon
89+
* @param $attributes
90+
* @return string
91+
*/
92+
public function toggleIcon($row, $href, $label, $title, $icon, $attributes)
93+
{
94+
if (strlen(Input::get('tid'))) {
95+
$this->toggleVisibility(Input::get('tid'), (Input::get('state') == 1), (@func_get_arg(12) ?: null));
96+
$this->redirect($this->getReferer());
97+
}
98+
99+
// Check permissions AFTER checking the tid, so hacking attempts are logged
100+
if (!$this->User->hasAccess('tl_oauth2_client::disable', 'alexf')) {
101+
return '';
102+
}
103+
104+
$href .= '&amp;tid=' . $row['id'] . '&amp;state=' . $row['disable'];
105+
106+
if ($row['disable']) {
107+
$icon = 'invisible.gif';
108+
}
109+
110+
return '<a href="' . $this->addToUrl($href) . '" title="' . specialchars($title) . '"' . $attributes . '>' . Image::getHtml($icon,
111+
$label, 'data-state="' . ($row['disable'] ? 0 : 1) . '"') . '</a> ';
112+
}
113+
114+
/**
115+
* @param $intId
116+
* @param $blnVisible
117+
* @param DataContainer|null $dc
118+
*/
119+
public function toggleVisibility($intId, $blnVisible, DataContainer $dc = null)
120+
{
121+
// Set the ID and action
122+
Input::setGet('id', $intId);
123+
Input::setGet('act', 'toggle');
124+
125+
if ($dc) {
126+
$dc->id = $intId; // see #8043
127+
}
128+
129+
// Check the field access
130+
if (!$this->User->hasAccess('tl_oauth2_client::disable', 'alexf')) {
131+
throw new AccessDeniedException('Not enough permissions to activate/deactivate member ID ' . $intId . '.');
132+
}
133+
134+
$objVersions = new Versions('tl_oauth2_client', $intId);
135+
$objVersions->initialize();
136+
137+
// Trigger the save_callback
138+
if (is_array($GLOBALS['TL_DCA']['tl_oauth2_client']['fields']['disable']['save_callback'])) {
139+
foreach ($GLOBALS['TL_DCA']['tl_oauth2_client']['fields']['disable']['save_callback'] as $callback) {
140+
if (is_array($callback)) {
141+
$this->import($callback[0]);
142+
$blnVisible = $this->{$callback[0]}->{$callback[1]}($blnVisible, ($dc ?: $this));
143+
} elseif (is_callable($callback)) {
144+
$blnVisible = $callback($blnVisible, ($dc ?: $this));
145+
}
146+
}
147+
}
148+
149+
$time = time();
150+
151+
// Update the database
152+
$this->Database->prepare("UPDATE tl_oauth2_client SET tstamp=$time, disable='" . ($blnVisible ? '' : 1) . "' WHERE id=?")
153+
->execute($intId);
154+
155+
$objVersions->create();
156+
$this->log('A new version of record "tl_oauth2_client.id=' . $intId . '" has been created' . $this->getParentEntries('tl_oauth2_client',
157+
$intId), __METHOD__, TL_GENERAL);
158+
}
159+
160+
/**
161+
* @param $varValue
162+
* @param DataContainer $dc
163+
* @return string
164+
*/
165+
public function setDefaultRandomId($varValue, DataContainer $dc)
166+
{
167+
if (empty($varValue)) {
168+
$varValue = str_pad(rand(1, 99999999), 8, 0, STR_PAD_LEFT);
169+
}
170+
171+
return $varValue;
172+
}
173+
174+
/**
175+
* @param $varValue
176+
* @param DataContainer $dc
177+
* @return string
178+
*/
179+
public function setDefaultSecret($varValue, DataContainer $dc)
180+
{
181+
if (empty($varValue)) {
182+
$varValue = substr(preg_replace('/[^A-Za-z0-9]/', '', base64_encode(random_bytes(128))), 0, 128);
183+
}
184+
185+
return $varValue;
186+
}
187+
}

‎DependencyInjection/Configuration.php

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\DependencyInjection;
13+
14+
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
15+
use Symfony\Component\Config\Definition\ConfigurationInterface;
16+
17+
/**
18+
* This is the class that validates and merges configuration from your app/config files
19+
*
20+
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class}
21+
*/
22+
class Configuration implements ConfigurationInterface
23+
{
24+
/**
25+
* {@inheritdoc}
26+
*/
27+
public function getConfigTreeBuilder()
28+
{
29+
$treeBuilder = new TreeBuilder();
30+
$rootNode = $treeBuilder->root('craffft_contao_oauth2');
31+
32+
// Here you should define the parameters that are allowed to
33+
// configure your bundle. See the documentation linked above for
34+
// more information on that topic.
35+
36+
return $treeBuilder;
37+
}
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\DependencyInjection;
13+
14+
use Symfony\Component\DependencyInjection\ContainerBuilder;
15+
use Symfony\Component\Config\FileLocator;
16+
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
17+
use Symfony\Component\DependencyInjection\Loader;
18+
19+
/**
20+
* This is the class that loads and manages your bundle configuration
21+
*
22+
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html}
23+
*/
24+
class CraffftContaoOAuth2Extension extends Extension
25+
{
26+
/**
27+
* {@inheritdoc}
28+
*/
29+
public function load(array $configs, ContainerBuilder $container)
30+
{
31+
$configuration = new Configuration();
32+
$config = $this->processConfiguration($configuration, $configs);
33+
34+
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
35+
$loader->load('services.yml');
36+
}
37+
}

‎Entity/Member.php

+1,715
Large diffs are not rendered by default.

‎Entity/OAuth2AccessToken.php

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Entity;
13+
14+
use FOS\OAuthServerBundle\Entity\AccessToken as BaseAccessToken;
15+
use Doctrine\ORM\Mapping as ORM;
16+
17+
/**
18+
* @ORM\Table(name="oauth2_access_token")
19+
* @ORM\Entity
20+
*/
21+
class OAuth2AccessToken extends BaseAccessToken
22+
{
23+
/**
24+
* @ORM\Id
25+
* @ORM\Column(type="integer")
26+
* @ORM\GeneratedValue(strategy="AUTO")
27+
*/
28+
protected $id;
29+
30+
/**
31+
* @ORM\ManyToOne(targetEntity="OAuth2Client")
32+
* @ORM\JoinColumn(nullable=false)
33+
*/
34+
protected $client;
35+
36+
/**
37+
* @ORM\ManyToOne(targetEntity="Craffft\ContaoOAuth2Bundle\Entity\Member")
38+
*/
39+
protected $user;
40+
}

‎Entity/OAuth2AuthCode.php

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Entity;
13+
14+
use FOS\OAuthServerBundle\Entity\AuthCode as BaseAuthCode;
15+
use Doctrine\ORM\Mapping as ORM;
16+
17+
/**
18+
* @ORM\Table(name="oauth2_auth_code")
19+
* @ORM\Entity
20+
*/
21+
class OAuth2AuthCode extends BaseAuthCode
22+
{
23+
/**
24+
* @ORM\Id
25+
* @ORM\Column(type="integer")
26+
* @ORM\GeneratedValue(strategy="AUTO")
27+
*/
28+
protected $id;
29+
30+
/**
31+
* @ORM\ManyToOne(targetEntity="OAuth2Client")
32+
* @ORM\JoinColumn(nullable=false)
33+
*/
34+
protected $client;
35+
36+
/**
37+
* @ORM\ManyToOne(targetEntity="Craffft\ContaoOAuth2Bundle\Entity\Member")
38+
*/
39+
protected $user;
40+
}

‎Entity/OAuth2Client.php

+242
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Entity;
13+
14+
use FOS\OAuthServerBundle\Entity\Client as BaseClient;
15+
use Doctrine\ORM\Mapping as ORM;
16+
17+
/**
18+
* @ORM\Table(name="tl_oauth2_client")
19+
* @ORM\Entity()
20+
* @ORM\HasLifecycleCallbacks()
21+
*/
22+
class OAuth2Client extends BaseClient
23+
{
24+
/**
25+
* @ORM\Id
26+
* @ORM\Column(type="integer")
27+
* @ORM\GeneratedValue(strategy="AUTO")
28+
*/
29+
protected $id;
30+
31+
/**
32+
* @var integer
33+
*
34+
* @ORM\Column(type="integer", length=10, options={"unsigned"=true, "default"="0"})
35+
*/
36+
private $tstamp;
37+
38+
/**
39+
* @var \DateTime
40+
*
41+
* @ORM\Column(type="datetime")
42+
*/
43+
private $createdAt;
44+
45+
/**
46+
* @var \DateTime
47+
*
48+
* @ORM\Column(type="datetime")
49+
*/
50+
private $updatedAt;
51+
52+
/**
53+
* @var bool
54+
*
55+
* @ORM\Column(name="disable", type="boolean")
56+
*/
57+
private $disable = false;
58+
59+
/**
60+
* @var \DateTime
61+
*
62+
* @ORM\Column(name="start", type="datetime", nullable=true)
63+
*/
64+
private $start;
65+
66+
/**
67+
* @var string
68+
*
69+
* @ORM\Column(name="stop", type="datetime", nullable=true)
70+
*/
71+
private $stop;
72+
73+
74+
public function __construct()
75+
{
76+
parent::__construct();
77+
// your own logic
78+
}
79+
80+
/**
81+
* Set tstamp
82+
*
83+
* @param integer $tstamp
84+
*
85+
* @return OAuth2Client
86+
*/
87+
public function setTstamp($tstamp)
88+
{
89+
$this->tstamp = $tstamp;
90+
91+
return $this;
92+
}
93+
94+
/**
95+
* Get tstamp
96+
*
97+
* @return integer
98+
*/
99+
public function getTstamp()
100+
{
101+
return $this->tstamp;
102+
}
103+
104+
/**
105+
* Set createdAt
106+
*
107+
* @param \DateTime $createdAt
108+
*
109+
* @return OAuth2Client
110+
*/
111+
public function setCreatedAt($createdAt)
112+
{
113+
$this->createdAt = $createdAt;
114+
115+
return $this;
116+
}
117+
118+
/**
119+
* @ORM\PrePersist
120+
*/
121+
public function setCreatedAtValue()
122+
{
123+
$this->createdAt = new \DateTime();
124+
}
125+
126+
/**
127+
* Get createdAt
128+
*
129+
* @return \DateTime
130+
*/
131+
public function getCreatedAt()
132+
{
133+
return $this->createdAt;
134+
}
135+
136+
/**
137+
* Set updatedAt
138+
*
139+
* @param \DateTime $updatedAt
140+
*
141+
* @return OAuth2Client
142+
*/
143+
public function setUpdatedAt($updatedAt)
144+
{
145+
$this->updatedAt = $updatedAt;
146+
147+
return $this;
148+
}
149+
150+
/**
151+
* @ORM\PrePersist
152+
* @ORM\PreUpdate
153+
*/
154+
public function setUpdatedAtValue()
155+
{
156+
$this->updatedAt = new \DateTime();
157+
158+
return $this;
159+
}
160+
161+
/**
162+
* Get updatedAt
163+
*
164+
* @return \DateTime
165+
*/
166+
public function getUpdatedAt()
167+
{
168+
return $this->updatedAt;
169+
}
170+
171+
/**
172+
* Set disable
173+
*
174+
* @param boolean $disable
175+
*
176+
* @return OAuth2Client
177+
*/
178+
public function setDisable($disable)
179+
{
180+
$this->disable = $disable;
181+
182+
return $this;
183+
}
184+
185+
/**
186+
* Get disable
187+
*
188+
* @return boolean
189+
*/
190+
public function getDisable()
191+
{
192+
return $this->disable;
193+
}
194+
195+
/**
196+
* Set start
197+
*
198+
* @param \DateTime $start
199+
*
200+
* @return OAuth2Client
201+
*/
202+
public function setStart($start)
203+
{
204+
$this->start = $start;
205+
206+
return $this;
207+
}
208+
209+
/**
210+
* Get start
211+
*
212+
* @return \DateTime
213+
*/
214+
public function getStart()
215+
{
216+
return $this->start;
217+
}
218+
219+
/**
220+
* Set stop
221+
*
222+
* @param \DateTime $stop
223+
*
224+
* @return OAuth2Client
225+
*/
226+
public function setStop($stop)
227+
{
228+
$this->stop = $stop;
229+
230+
return $this;
231+
}
232+
233+
/**
234+
* Get stop
235+
*
236+
* @return \DateTime
237+
*/
238+
public function getStop()
239+
{
240+
return $this->stop;
241+
}
242+
}

‎Entity/OAuth2RefreshToken.php

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Entity;
13+
14+
use FOS\OAuthServerBundle\Entity\RefreshToken as BaseRefreshToken;
15+
use Doctrine\ORM\Mapping as ORM;
16+
17+
/**
18+
* @ORM\Table(name="oauth2_refresh_token")
19+
* @ORM\Entity
20+
*/
21+
class OAuth2RefreshToken extends BaseRefreshToken
22+
{
23+
/**
24+
* @ORM\Id
25+
* @ORM\Column(type="integer")
26+
* @ORM\GeneratedValue(strategy="AUTO")
27+
*/
28+
protected $id;
29+
30+
/**
31+
* @ORM\ManyToOne(targetEntity="OAuth2Client")
32+
* @ORM\JoinColumn(nullable=false)
33+
*/
34+
protected $client;
35+
36+
/**
37+
* @ORM\ManyToOne(targetEntity="Craffft\ContaoOAuth2Bundle\Entity\Member")
38+
*/
39+
protected $user;
40+
}

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Craffft
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎OAuth2/OAuth2.php

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\OAuth2;
13+
14+
use OAuth2\OAuth2 as BaseOAuth2;
15+
16+
class OAuth2 extends BaseOAuth2
17+
{
18+
public static function getGrantTypes()
19+
{
20+
return array(
21+
self::GRANT_TYPE_AUTH_CODE,
22+
self::GRANT_TYPE_IMPLICIT,
23+
self::GRANT_TYPE_USER_CREDENTIALS,
24+
self::GRANT_TYPE_CLIENT_CREDENTIALS,
25+
self::GRANT_TYPE_REFRESH_TOKEN,
26+
self::GRANT_TYPE_EXTENSIONS
27+
);
28+
}
29+
}

‎README.md

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
[![Build Status](https://travis-ci.org/Craffft/contao-oauth2-bundle.svg?branch=master)](https://travis-ci.org/Craffft/contao-oauth2-bundle)
2+
3+
Contao OAuth2 Bundle
4+
=============================
5+
6+
Contao OAuth2 Bundle for Symfony
7+
8+
Installation
9+
------------
10+
11+
### Step 1: Download the Bundle
12+
13+
Open a command console, enter your project directory and execute the
14+
following command to download the latest stable version of this bundle:
15+
16+
```bash
17+
$ composer require craffft/contao-oauth2-bundle "~1.0"
18+
```
19+
20+
This command requires you to have Composer installed globally, as explained
21+
in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
22+
of the Composer documentation.
23+
24+
### Step 2: Enable the Bundle
25+
26+
Then, enable the bundle by adding it to the list of registered bundles
27+
in the `app/AppKernel.php` file of your project:
28+
29+
```php
30+
<?php
31+
// app/AppKernel.php
32+
33+
// ...
34+
class AppKernel extends Kernel
35+
{
36+
public function registerBundles()
37+
{
38+
$bundles = array(
39+
// ...
40+
41+
new Craffft\ContaoOAuth2Bundle\CraffftContaoOAuth2Bundle(),
42+
);
43+
44+
// ...
45+
}
46+
47+
// ...
48+
}
49+
```
50+
51+
### Step 3: Config the Bundle
52+
53+
As next add the following configuration to the `app/config/config.yml` file of
54+
your project:
55+
56+
```yml
57+
# app/config/config.yml
58+
59+
# ...
60+
# FOS OAuth2 Server Bundle
61+
fos_oauth_server:
62+
db_driver: orm
63+
client_class: Craffft\ContaoOAuth2Bundle\Entity\OAuth2Client
64+
access_token_class: Craffft\ContaoOAuth2Bundle\Entity\OAuth2AccessToken
65+
refresh_token_class: Craffft\ContaoOAuth2Bundle\Entity\OAuth2RefreshToken
66+
auth_code_class: Craffft\ContaoOAuth2Bundle\Entity\OAuth2AuthCode
67+
service:
68+
user_provider: craffft.contao_oauth2.user_provider
69+
```
70+
71+
Copy the content of `vendor/contao/core-bundle/src/Resources/config/security.yml`
72+
file and replace `app/config/security.yml` file with it. Than amend it with the
73+
following code:
74+
75+
```yml
76+
# app/config/security.yml
77+
78+
# ...
79+
security:
80+
encoders:
81+
Craffft\ContaoOAuth2Bundle\Entity\Member:
82+
id: craffft.contao_oauth2.contao_password_encoder
83+
84+
firewalls:
85+
oauth_token: # Everyone can access the access token URL.
86+
pattern: ^/oauth/v2/token
87+
security: false
88+
89+
api:
90+
pattern: ^/api # All URLs are protected
91+
fos_oauth: true # OAuth2 protected resource
92+
stateless: true # Do no set session cookies
93+
anonymous: false # Anonymous access is not allowed
94+
```

‎Repository/MemberRepository.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Repository;
13+
14+
use Doctrine\ORM\EntityRepository;
15+
16+
class MemberRepository extends EntityRepository
17+
{
18+
public function findOneByUsername($username)
19+
{
20+
return $this->createQueryBuilder('u')
21+
->where('u.username = :username')
22+
->andWhere('u.disable = 0')
23+
->andWhere("u.start <= :tstamp OR u.start = ''")
24+
->andWhere("u.stop >= :tstamp OR u.stop = ''")
25+
->setParameter('username', $username)
26+
->setParameter('tstamp', time())
27+
->getQuery()
28+
->getOneOrNullResult();
29+
}
30+
}

‎Resources/config/services.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
services:
2+
3+
# Security
4+
craffft.contao_oauth2.user_provider:
5+
class: Craffft\ContaoOAuth2Bundle\Security\UserProvider
6+
arguments: ["@doctrine.orm.entity_manager"]
7+
8+
craffft.contao_oauth2.contao_password_encoder:
9+
class: Craffft\ContaoOAuth2Bundle\Security\Core\Encoder\ContaoPasswordEncoder

‎Resources/contao/config/autoload.ini

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
;;
2+
; List modules which are required to be loaded beforehand
3+
;;
4+
requires[] = "core"
5+
6+
;;
7+
; Configure what you want the autoload creator to register
8+
;;
9+
register_namespaces = false
10+
register_classes = false
11+
register_templates = false
12+
13+
;;
14+
; Override the default configuration for certain sub directories
15+
;;
16+
[vendor/*]
17+
register_namespaces = false
18+
register_classes = false
19+
register_templates = false

‎Resources/contao/config/autoload.php

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/

‎Resources/contao/config/config.php

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
/**
13+
* BACK END MODULES
14+
*
15+
* Back end modules are stored in a global array called "BE_MOD". You can add
16+
* your own modules by adding them to the array.
17+
*
18+
* $GLOBALS['BE_MOD'] = array
19+
* (
20+
* 'group_1' => array
21+
* (
22+
* 'module_1' => array
23+
* (
24+
* 'tables' => array('table_1', 'table_2'),
25+
* 'callback' => 'ClassName',
26+
* 'key' => array('Class', 'method'),
27+
* 'icon' => 'path/to/icon.gif',
28+
* 'stylesheet' => 'path/to/stylesheet.css',
29+
* 'javascript' => 'path/to/javascript.js'
30+
* )
31+
* )
32+
* );
33+
*
34+
* Not all of the keys mentioned above (like "tables", "key", "callback" etc.)
35+
* have to be set. Take a look at the system/modules/core/config/config.php
36+
* file to see how back end modules are configured.
37+
*/
38+
array_insert($GLOBALS['BE_MOD']['accounts'], 0, array
39+
(
40+
'oauth2_client' => array
41+
(
42+
'tables' => array('tl_oauth2_client')
43+
)
44+
));
+252
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
$GLOBALS['TL_DCA']['tl_oauth2_client'] = array
13+
(
14+
// Config
15+
'config' => array
16+
(
17+
'dataContainer' => 'Table',
18+
'enableVersioning' => true,
19+
'onsubmit_callback' => array
20+
(
21+
array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'storeCreatedAtAndUpdatedAt')
22+
),
23+
'sql' => array
24+
(
25+
'keys' => array
26+
(
27+
'id' => 'primary'
28+
)
29+
)
30+
),
31+
32+
// List
33+
'list' => array
34+
(
35+
'sorting' => array
36+
(
37+
'mode' => 2,
38+
'fields' => array('updated_at DESC'),
39+
'flag' => 1,
40+
'panelLayout' => 'filter;sort,search,limit'
41+
),
42+
'label' => array
43+
(
44+
'fields' => array('client_id', 'secret', 'allowed_grant_types'),
45+
'showColumns' => true,
46+
'label_callback' => array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'prepareRowItems')
47+
),
48+
'global_operations' => array
49+
(
50+
'all' => array
51+
(
52+
'label' => &$GLOBALS['TL_LANG']['MSC']['all'],
53+
'href' => 'act=select',
54+
'class' => 'header_edit_all',
55+
'attributes' => 'onclick="Backend.getScrollOffset()" accesskey="e"'
56+
)
57+
),
58+
'operations' => array
59+
(
60+
'edit' => array
61+
(
62+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['edit'],
63+
'href' => 'act=edit',
64+
'icon' => 'edit.gif'
65+
),
66+
'delete' => array
67+
(
68+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['delete'],
69+
'href' => 'act=delete',
70+
'icon' => 'delete.gif',
71+
'attributes' => 'onclick="if(!confirm(\'' . $GLOBALS['TL_LANG']['MSC']['deleteConfirm'] . '\'))return false;Backend.getScrollOffset()"'
72+
),
73+
'toggle' => array
74+
(
75+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['toggle'],
76+
'icon' => 'visible.gif',
77+
'attributes' => 'onclick="Backend.getScrollOffset();return AjaxRequest.toggleVisibility(this,%s)"',
78+
'button_callback' => array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'toggleIcon')
79+
),
80+
'show' => array
81+
(
82+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['show'],
83+
'href' => 'act=show',
84+
'icon' => 'show.gif'
85+
)
86+
)
87+
),
88+
89+
// Palettes
90+
'palettes' => array
91+
(
92+
'__selector__' => array('login', 'assignDir'),
93+
'default' => '{login_legend},random_id,secret,allowed_grant_types;{redirect_legend:hide},redirect_uris;{info_legend:hide},created_at,updated_at;{account_legend},disable,start,stop',
94+
),
95+
96+
97+
// Fields
98+
'fields' => array
99+
(
100+
'id' => array
101+
(
102+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['id'],
103+
'search' => true,
104+
'sorting' => true,
105+
'sql' => "int(11) NOT NULL auto_increment"
106+
),
107+
'tstamp' => array
108+
(
109+
'sql' => "int(10) unsigned NOT NULL default '0'"
110+
),
111+
'client_id' => array
112+
(
113+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['client_id']
114+
),
115+
'random_id' => array
116+
(
117+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['random_id'],
118+
'exclude' => true,
119+
'search' => true,
120+
'sorting' => true,
121+
'flag' => 1,
122+
'inputType' => 'text',
123+
'eval' => array('unique'=>true, 'rgxp'=>'extnd', 'nospace'=>true, 'maxlength'=>64),
124+
'load_callback' => array
125+
(
126+
array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'setDefaultRandomId')
127+
),
128+
'sql' => "varchar(255) NOT NULL"
129+
),
130+
'secret' => array
131+
(
132+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['secret'],
133+
'exclude' => true,
134+
'search' => true,
135+
'sorting' => true,
136+
'inputType' => 'textarea',
137+
'eval' => array('rgxp'=>'extnd', 'nospace'=>true, 'preserveTags'=>true, 'minlength'=>32, 'tl_class' => 'long'),
138+
'load_callback' => array
139+
(
140+
array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'setDefaultSecret')
141+
),
142+
'sql' => "varchar(255) NOT NULL"
143+
),
144+
'allowed_grant_types' => array
145+
(
146+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['allowed_grant_types'],
147+
'exclude' => true,
148+
'default' => array(
149+
\Craffft\ContaoOAuth2Bundle\OAuth2\OAuth2::GRANT_TYPE_AUTH_CODE,
150+
\Craffft\ContaoOAuth2Bundle\OAuth2\OAuth2::GRANT_TYPE_USER_CREDENTIALS
151+
),
152+
'inputType' => 'checkbox',
153+
'options_callback' => function() {
154+
return \Craffft\ContaoOAuth2Bundle\OAuth2\OAuth2::getGrantTypes();
155+
},
156+
'eval' => array('multiple'=>true),
157+
'sql' => "longtext NOT NULL"
158+
),
159+
'redirect_uris' => array
160+
(
161+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['redirect_uris'],
162+
'exclude' => true,
163+
'sql' => "longtext NOT NULL",
164+
'inputType' => 'multiColumnWizard',
165+
'eval' => array
166+
(
167+
'columnFields' => array
168+
(
169+
array
170+
(
171+
'label' => ' ',
172+
'inputType' => 'text'
173+
)
174+
)
175+
)
176+
),
177+
'created_at' => array
178+
(
179+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['created_at'],
180+
'exclude' => true,
181+
'sorting' => true,
182+
'inputType' => 'text',
183+
'eval' => array('disabled'=>true, 'rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'),
184+
'sql' => "datetime NOT NULL",
185+
'load_callback' => array
186+
(
187+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString')
188+
),
189+
'save_callback' => array
190+
(
191+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp')
192+
)
193+
),
194+
'updated_at' => array
195+
(
196+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['updated_at'],
197+
'exclude' => true,
198+
'sorting' => true,
199+
'inputType' => 'text',
200+
'eval' => array('disabled'=>true, 'rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'),
201+
'sql' => "datetime NOT NULL",
202+
'load_callback' => array
203+
(
204+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString')
205+
),
206+
'save_callback' => array
207+
(
208+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp')
209+
)
210+
),
211+
'disable' => array
212+
(
213+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['disable'],
214+
'exclude' => true,
215+
'filter' => true,
216+
'inputType' => 'checkbox',
217+
'sql' => "tinyint(1) NOT NULL"
218+
),
219+
'start' => array
220+
(
221+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['start'],
222+
'exclude' => true,
223+
'inputType' => 'text',
224+
'eval' => array('rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'),
225+
'sql' => "datetime NULL",
226+
'load_callback' => array
227+
(
228+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString')
229+
),
230+
'save_callback' => array
231+
(
232+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp')
233+
)
234+
),
235+
'stop' => array
236+
(
237+
'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['stop'],
238+
'exclude' => true,
239+
'inputType' => 'text',
240+
'eval' => array('rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'),
241+
'sql' => "datetime NULL",
242+
'load_callback' => array
243+
(
244+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString')
245+
),
246+
'save_callback' => array
247+
(
248+
array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp')
249+
)
250+
)
251+
)
252+
);
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
/**
13+
* Back end modules
14+
*/
15+
$GLOBALS['TL_LANG']['MOD']['oauth2_client'] = array('OAuth2 Clients', 'OAuth2 Clients Verwaltung');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
/**
13+
* Legends
14+
*/
15+
$GLOBALS['TL_LANG']['tl_oauth2_client']['login_legend'] = 'Authentifizierung';
16+
$GLOBALS['TL_LANG']['tl_oauth2_client']['redirect_legend'] = 'Weiterleitungen';
17+
$GLOBALS['TL_LANG']['tl_oauth2_client']['info_legend'] = 'Erstellt / Aktualisiert';
18+
$GLOBALS['TL_LANG']['tl_oauth2_client']['account_legend'] = 'Konto-Einstellungen';
19+
20+
/**
21+
* Fields
22+
*/
23+
$GLOBALS['TL_LANG']['tl_oauth2_client']['id'] = array('ID');
24+
$GLOBALS['TL_LANG']['tl_oauth2_client']['client_id'] = array('Client ID');
25+
$GLOBALS['TL_LANG']['tl_oauth2_client']['random_id'] = array('Zufällige ID', 'Bitte geben Sie eine zufällige ID ein oder Sie lassen dieses Feld leer, um die zufällige ID automatisch zu generieren.');
26+
$GLOBALS['TL_LANG']['tl_oauth2_client']['secret'] = array('Secret', 'Bitte geben Sie einen Secret Token ein oder Sie lassen dieses Feld leer, um den Secret automatisch zu generieren.');
27+
$GLOBALS['TL_LANG']['tl_oauth2_client']['allowed_grant_types'] = array('Erlaubte Zugangsarten', 'Bitte wählen Sie die gewünschte Zugangsart für den Client aus.');
28+
$GLOBALS['TL_LANG']['tl_oauth2_client']['redirect_uris'] = array('Weiterleitungen', 'Die Weiterleitungs URLs des Clients.');
29+
$GLOBALS['TL_LANG']['tl_oauth2_client']['created_at'] = array('Erstellt am', 'Datum an dem der Client erstellt wurde.');
30+
$GLOBALS['TL_LANG']['tl_oauth2_client']['updated_at'] = array('Aktualisiert am', 'Datum an dem der Client zuletzt aktualisiert wurde.');
31+
$GLOBALS['TL_LANG']['tl_oauth2_client']['disable'] = array('Deaktivieren', 'Den Client vorübergehend deaktivieren.');
32+
$GLOBALS['TL_LANG']['tl_oauth2_client']['start'] = array('Aktivieren am', 'Den Client automatisch an diesem Tag aktivieren.');
33+
$GLOBALS['TL_LANG']['tl_oauth2_client']['stop'] = array('Deaktivieren am', 'Den Client automatisch an diesem Tag deaktivieren.');
34+
35+
$GLOBALS['TL_LANG']['tl_oauth2_client']['new'] = array('Neuer OAuth2 Client', 'Einen neuen OAuth2 Client anlegen');
36+
$GLOBALS['TL_LANG']['tl_oauth2_client']['show'] = array('OAuth2 Client Details', 'Details des OAuth2 Client ID %s anzeigen');
37+
$GLOBALS['TL_LANG']['tl_oauth2_client']['edit'] = array('OAuth2 Client bearbeiten', 'OAuth2 Client ID %s bearbeiten');
38+
$GLOBALS['TL_LANG']['tl_oauth2_client']['delete'] = array('OAuth2 Client löschen', 'OAuth2 Client ID %s löschen');
39+
$GLOBALS['TL_LANG']['tl_oauth2_client']['toggle'] = array('OAuth2 Client aktivieren/deaktivieren', 'OAuth2 Client ID %s aktivieren/deaktivieren');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Security\Core\Encoder;
13+
14+
use Contao\Encryption;
15+
use Symfony\Component\Security\Core\Encoder\BasePasswordEncoder;
16+
use Symfony\Component\Security\Core\Exception\BadCredentialsException;
17+
18+
class ContaoPasswordEncoder extends BasePasswordEncoder
19+
{
20+
/**
21+
* {@inheritdoc}
22+
*/
23+
public function encodePassword($raw, $salt)
24+
{
25+
if ($this->isPasswordTooLong($raw)) {
26+
throw new BadCredentialsException('Invalid password.');
27+
}
28+
29+
$strPassword = $raw;
30+
$intCost = 10;
31+
32+
if ($intCost < 4 || $intCost > 31)
33+
{
34+
throw new \Exception("The bcrypt cost has to be between 4 and 31, $intCost given");
35+
}
36+
37+
if (function_exists('password_hash'))
38+
{
39+
return password_hash($strPassword, PASSWORD_BCRYPT, array('cost'=>$intCost));
40+
}
41+
elseif (CRYPT_BLOWFISH == 1)
42+
{
43+
return crypt($strPassword, '$2y$' . sprintf('%02d', $intCost) . '$' . md5(uniqid(mt_rand(), true)) . '$');
44+
}
45+
elseif (CRYPT_SHA512 == 1)
46+
{
47+
return crypt($strPassword, '$6$' . md5(uniqid(mt_rand(), true)) . '$');
48+
}
49+
elseif (CRYPT_SHA256 == 1)
50+
{
51+
return crypt($strPassword, '$5$' . md5(uniqid(mt_rand(), true)) . '$');
52+
}
53+
54+
throw new \Exception('None of the required crypt() algorithms is available');
55+
}
56+
57+
/**
58+
* {@inheritdoc}
59+
*/
60+
public function isPasswordValid($encoded, $raw, $salt)
61+
{
62+
if ($this->isPasswordTooLong($raw)) {
63+
return false;
64+
}
65+
66+
if (Encryption::test($encoded)) {
67+
return Encryption::verify($raw, $encoded);
68+
} else {
69+
list($strPassword, $strSalt) = explode(':', $encoded);
70+
71+
return ($strSalt == '') ? ($strPassword === sha1($raw)) : ($strPassword === sha1($strSalt . $raw));
72+
}
73+
}
74+
}

‎Security/UserProvider.php

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Security;
13+
14+
use Doctrine\ORM\EntityManager;
15+
use Craffft\ContaoOAuth2Bundle\Repository\UserRepository;
16+
use Symfony\Component\Security\Core\User\UserProviderInterface;
17+
use Symfony\Component\Security\Core\User\UserInterface;
18+
use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
19+
20+
class UserProvider implements UserProviderInterface
21+
{
22+
private $em;
23+
24+
public function __construct(EntityManager $entityManager)
25+
{
26+
$this->em = $entityManager;
27+
}
28+
29+
public function loadUserByUsername($username)
30+
{
31+
/** @var UserRepository $userRepository */
32+
$userRepository = $this->em->getRepository('CraffftContaoOAuth2Bundle:Member');
33+
34+
return $userRepository->findOneByUsername($username);
35+
}
36+
37+
public function refreshUser(UserInterface $user)
38+
{
39+
throw new UnsupportedUserException();
40+
}
41+
42+
public function supportsClass($class)
43+
{
44+
return 'Craffft\ContaoOAuth2Bundle\Entity\Member' === $class;
45+
}
46+
}

‎Tests/Controller/App/AppKernel.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
use Symfony\Component\Config\Loader\LoaderInterface;
4+
use Symfony\Component\HttpKernel\Kernel;
5+
6+
class AppKernel extends Kernel
7+
{
8+
/**
9+
* {@inheritdoc}
10+
*/
11+
public function registerBundles()
12+
{
13+
$bundles = array(
14+
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
15+
new Craffft\ContaoOAuth2Bundle\CraffftContaoOAuth2Bundle(),
16+
);
17+
18+
return $bundles;
19+
}
20+
21+
public function registerContainerConfiguration(LoaderInterface $loader)
22+
{
23+
$loader->load(__DIR__ . '/config.yml');
24+
}
25+
}

‎Tests/Controller/App/config.yml

Whitespace-only changes.
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft Contao OAuth2 Bundle.
5+
*
6+
* (c) Craffft <https://craffft.de>
7+
* (c) Daniel Kiesel <https://github.com/iCodr8>
8+
*
9+
* For the full copyright and license information, please view the LICENSE
10+
* file that was distributed with this source code.
11+
*/
12+
13+
namespace Tests\Craffft\ContaoOAuth2Bundle;
14+
15+
use Craffft\ContaoOAuth2Bundle\CraffftContaoOAuth2Bundle;
16+
use Symfony\Component\HttpKernel\Bundle\Bundle;
17+
18+
class CraffftContaoOAuth2BundleTest extends \PHPUnit_Framework_TestCase
19+
{
20+
public function testInstantiation()
21+
{
22+
$bundle = new CraffftContaoOAuth2Bundle();
23+
$this->assertInstanceOf('Craffft\ContaoOAuth2Bundle\CraffftContaoOAuth2Bundle', $bundle);
24+
}
25+
}

‎Util/DateConverter.php

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Craffft OAuth2 Bundle.
5+
*
6+
* (c) Daniel Kiesel <https://github.com/iCodr8>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Craffft\ContaoOAuth2Bundle\Util;
13+
14+
class DateConverter
15+
{
16+
public function getTimestampFromDateString($dateString)
17+
{
18+
if (empty($dateString)) {
19+
$timestamp = null;
20+
} elseif (is_string($dateString)) {
21+
$timestamp = strtotime($dateString);
22+
} else {
23+
$timestamp = $dateString;
24+
}
25+
26+
return $timestamp;
27+
}
28+
29+
public function getDateStringFromTimestamp($timestamp)
30+
{
31+
if (empty($timestamp)) {
32+
$dateString = null;
33+
} elseif (is_numeric($timestamp)) {
34+
// 2016-07-09 10:30:00
35+
$dateString = date('Y-m-d H:i:s', $timestamp);
36+
} else {
37+
$dateString = $timestamp;
38+
}
39+
40+
return $dateString;
41+
}
42+
}

‎composer.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "craffft/contao-oauth2-bundle",
3+
"type": "symfony-bundle",
4+
"description": "ContaoOAuth2Bundle for Symfony with Contao",
5+
"keywords": [
6+
"oauth2",
7+
"contao",
8+
"authentication"
9+
],
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "Daniel Kiesel",
14+
"homepage": "https://github.com/iCodr8"
15+
}
16+
],
17+
"support": {
18+
"issues": "https://github.com/Craffft/contao-oauth2-bundle/issues",
19+
"source": "https://github.com/Craffft/contao-oauth2-bundle"
20+
},
21+
"require": {
22+
"php": ">=5.3.2",
23+
"symfony/symfony": "~2.7|~3.0",
24+
"doctrine/orm": "~2.5",
25+
"friendsofsymfony/oauth-server-bundle": "~1.5",
26+
"contao/contao": "~4.2",
27+
"menatwork/contao-multicolumnwizard": "^3.3"
28+
},
29+
"require-dev": {
30+
"phpunit/phpunit": "^4.8"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"Craffft\\ContaoOAuth2Bundle\\": ""
35+
}
36+
},
37+
"extra": {
38+
"branch-alias": {
39+
"dev-master": "1.x-dev"
40+
}
41+
}
42+
}

‎phpunit.xml.dist

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<phpunit colors="true" bootstrap="vendor/autoload.php">
4+
<php>
5+
<server name="KERNEL_DIR" value="./Tests/Controller/App"/>
6+
</php>
7+
8+
<testsuites>
9+
<testsuite name="CraffftContaoOAuth2Bundle for the Symfony Framework">
10+
<directory>./Tests</directory>
11+
</testsuite>
12+
</testsuites>
13+
14+
<filter>
15+
<whitelist>
16+
<directory>.</directory>
17+
<exclude>
18+
<directory>./Resources</directory>
19+
<directory>./Tests</directory>
20+
<directory>./vendor</directory>
21+
</exclude>
22+
</whitelist>
23+
</filter>
24+
</phpunit>

0 commit comments

Comments
 (0)
This repository has been archived.