mirror of
				https://github.com/alchemy-fr/Phraseanet.git
				synced 2025-10-27 11:53:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			143 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			143 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /*
 | |
|  * This file is part of Phraseanet
 | |
|  *
 | |
|  * (c) 2005-2016 Alchemy
 | |
|  *
 | |
|  * For the full copyright and license information, please view the LICENSE
 | |
|  * file that was distributed with this source code.
 | |
|  */
 | |
| 
 | |
| use Alchemy\Phrasea\Model\Entities\ApiApplication;
 | |
| use Symfony\Component\Validator\Mapping\ClassMetadata;
 | |
| use Symfony\Component\HttpFoundation\Request;
 | |
| use Symfony\Component\Validator\Constraints;
 | |
| 
 | |
| class API_OAuth2_Form_DevAppDesktop
 | |
| {
 | |
|     /**
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $name;
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $description;
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $website;
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $callback;
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     public $type;
 | |
|     public $scheme_website;
 | |
|     public $urlwebsite;
 | |
| 
 | |
|     /**
 | |
|      * @param Request $request
 | |
|      */
 | |
|     public function __construct(Request $request)
 | |
|     {
 | |
|         $this->name = $request->get('name', '');
 | |
|         $this->description = $request->get('description', '');
 | |
|         $this->scheme_website = $request->get('scheme-website', 'http://');
 | |
|         $this->website = $request->get('website', '');
 | |
|         $this->callback = ApiApplication::NATIVE_APP_REDIRECT_URI;
 | |
|         $this->type = ApiApplication::DESKTOP_TYPE;
 | |
| 
 | |
|         $this->urlwebsite = $this->scheme_website . $this->website;
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getName()
 | |
|     {
 | |
|         return $this->name;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getDescription()
 | |
|     {
 | |
|         return $this->description;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getWebsite()
 | |
|     {
 | |
|         return $this->website;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getCallback()
 | |
|     {
 | |
|         return $this->callback;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getType()
 | |
|     {
 | |
|         return $this->type;
 | |
|     }
 | |
| 
 | |
|     public function getSchemeWebsite()
 | |
|     {
 | |
|         return $this->scheme_website;
 | |
|     }
 | |
| 
 | |
|     public function getUrlwebsite()
 | |
|     {
 | |
|         return $this->urlwebsite;
 | |
|     }
 | |
| 
 | |
|     public function getSchemeCallback()
 | |
|     {
 | |
|         return '';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      *
 | |
|      * @param  ClassMetadata          $metadata
 | |
|      * @return API_OAuth2_Form_DevApp
 | |
|      */
 | |
|     public static function loadValidatorMetadata(ClassMetadata $metadata)
 | |
|     {
 | |
|         $metadata->addPropertyConstraint('name', new Constraints\NotBlank());
 | |
|         $metadata->addPropertyConstraint('description', new Constraints\NotBlank());
 | |
|         $metadata->addPropertyConstraint('urlwebsite', new Constraints\NotBlank());
 | |
|         $metadata->addPropertyConstraint('urlwebsite', new Constraints\Url());
 | |
| 
 | |
|         return;
 | |
|     }
 | |
| }
 | 
