1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace League\OAuth1\Client\Tests;
- use League\OAuth1\Client\Credentials\TokenCredentials;
- use League\OAuth1\Client\Server\Server;
- use League\OAuth1\Client\Server\User;
- class ServerStub extends Server
- {
- /**
- * @inheritDoc
- */
- public function urlTemporaryCredentials()
- {
- return 'http://www.example.com/temporary';
- }
- /**
- * @inheritDoc
- */
- public function urlAuthorization()
- {
- return 'http://www.example.com/authorize';
- }
- /**
- * @inheritDoc
- */
- public function urlTokenCredentials()
- {
- return 'http://www.example.com/token';
- }
- /**
- * @inheritDoc
- */
- public function urlUserDetails()
- {
- return 'http://www.example.com/user';
- }
- /**
- * @inheritDoc
- */
- public function userDetails($data, TokenCredentials $tokenCredentials)
- {
- $user = new User;
- $user->firstName = $data['foo'];
- return $user;
- }
- /**
- * @inheritDoc
- */
- public function userUid($data, TokenCredentials $tokenCredentials)
- {
- return isset($data['id']) ? $data['id'] : null;
- }
- /**
- * @inheritDoc
- */
- public function userEmail($data, TokenCredentials $tokenCredentials)
- {
- return isset($data['contact_email']) ? $data['contact_email'] : null;
- }
- /**
- * @inheritDoc
- */
- public function userScreenName($data, TokenCredentials $tokenCredentials)
- {
- return isset($data['username']) ? $data['username'] : null;
- }
- }
|