Esempio n. 1
0
 public function getOAuth()
 {
     $code = $this->poniverse->getClient()->getAccessToken(Config::get('poniverse.urls')['token'], 'authorization_code', ['code' => Input::query('code'), 'redirect_uri' => action('AuthController@getOAuth')]);
     if ($code['code'] != 200) {
         if ($code['code'] == 400 && $code['result']['error_description'] == 'The authorization code has expired' && !isset($this->request['login_attempt'])) {
             return Redirect::to($this->poniverse->getAuthenticationUrl('login_attempt'));
         }
         return Redirect::to('/')->with('message', 'Unfortunately we are having problems attempting to log you in at the moment. Please try again at a later time.');
     }
     $this->poniverse->setAccessToken($code['result']['access_token']);
     $poniverseUser = $this->poniverse->getUser();
     $token = DB::table('oauth2_tokens')->where('external_user_id', '=', $poniverseUser['id'])->where('service', '=', 'poniverse')->first();
     $setData = ['access_token' => $code['result']['access_token'], 'expires' => date('Y-m-d H:i:s', strtotime("+" . $code['result']['expires_in'] . " Seconds", time())), 'type' => $code['result']['token_type']];
     if (isset($code['result']['refresh_token']) && !empty($code['result']['refresh_token'])) {
         $setData['refresh_token'] = $code['result']['refresh_token'];
     }
     if ($token) {
         //User already exists, update access token and refresh token if provided.
         DB::table('oauth2_tokens')->where('id', '=', $token->id)->update($setData);
         return $this->loginRedirect(User::find($token->user_id));
     }
     // Check by login name to see if they already have an account
     $user = User::findOrCreate($poniverseUser['username'], $poniverseUser['display_name'], $poniverseUser['email']);
     if ($user->wasRecentlyCreated) {
         return $this->loginRedirect($user);
     }
     // We need to insert a new token row :O
     $setData['user_id'] = $user->id;
     $setData['external_user_id'] = $poniverseUser['id'];
     $setData['service'] = 'poniverse';
     DB::table('oauth2_tokens')->insert($setData);
     return $this->loginRedirect($user);
 }
Esempio n. 2
0
 public function getShortlink($id)
 {
     $user = User::find($id);
     if (!$user || $user->disabled_at !== NULL) {
         App::abort('404');
     }
     return Redirect::action('ArtistsController@getProfile', [$user->slug]);
 }
Esempio n. 3
0
 /**
  * @throws \Exception
  * @return CommandResponse
  */
 public function execute()
 {
     $rules = ['content' => 'required', 'track_id' => 'exists:tracks,id', 'albums_id' => 'exists:albums,id', 'playlist_id' => 'exists:playlists,id', 'profile_id' => 'exists:users,id'];
     $validator = Validator::make($this->_input, $rules);
     if ($validator->fails()) {
         return CommandResponse::fail($validator);
     }
     $comment = new Comment();
     $comment->user_id = Auth::user()->id;
     $comment->content = $this->_input['content'];
     if ($this->_type == 'track') {
         $column = 'track_id';
     } else {
         if ($this->_type == 'user') {
             $column = 'profile_id';
         } else {
             if ($this->_type == 'album') {
                 $column = 'album_id';
             } else {
                 if ($this->_type == 'playlist') {
                     $column = 'playlist_id';
                 } else {
                     App::abort(500);
                 }
             }
         }
     }
     $comment->{$column} = $this->_id;
     $comment->save();
     // Recount the track's comments, if this is a track comment
     if ($this->_type === 'track') {
         $entity = Track::find($this->_id);
     } elseif ($this->_type === 'album') {
         $entity = Album::find($this->_id);
     } elseif ($this->_type === 'playlist') {
         $entity = Playlist::find($this->_id);
     } elseif ($this->_type === 'user') {
         $entity = User::find($this->_id);
     } else {
         App::abort(400, 'This comment is being added to an invalid entity!');
     }
     $entity->comment_count = Comment::where($column, $this->_id)->count();
     $entity->save();
     return CommandResponse::succeed(Comment::mapPublic($comment));
 }