84 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Api;
 | |
| 
 | |
| use Api\Parameter\Parameter;
 | |
| use Api\Parameter\StringType;
 | |
| use Driver\SQL\Condition\CondOr;
 | |
| use Driver\SQL\Condition\Compare;
 | |
| 
 | |
| class SetLanguage extends Request {
 | |
| 
 | |
|   private $language;
 | |
| 
 | |
|   public function __construct($user, $externCall = false) {
 | |
|     parent::__construct($user, $externCall, array(
 | |
|       'langId' => new Parameter('langId', Parameter::TYPE_INT, true, NULL),
 | |
|       'langCode' => new StringType('langCode', 5, true, NULL),
 | |
|     ));
 | |
|   }
 | |
| 
 | |
|   private function checkLanguage() {
 | |
|     $langId = $this->getParam("langId");
 | |
|     $langCode = $this->getParam("langCode");
 | |
| 
 | |
|     if(is_null($langId) && is_null($langCode)) {
 | |
|       return $this->createError(L("Either langId or langCode must be given"));
 | |
|     }
 | |
| 
 | |
|     $res = $this->user->getSQL()
 | |
|       ->select("uid", "code", "name")
 | |
|       ->from("Language")
 | |
|       ->where(new CondOr(new Compare("uid", $langId), new Compare("code", $langCode)))
 | |
|       ->execute();
 | |
| 
 | |
|     $this->success = ($res !== FALSE);
 | |
|     $this->lastError = $this->user->getSQL()->getLastError();
 | |
| 
 | |
|     if ($this->success) {
 | |
|       if(count($res) == 0) {
 | |
|         return $this->createError(L("This Language does not exist"));
 | |
|       } else {
 | |
|         $row = $res[0];
 | |
|         $this->language = \Objects\Language::newInstance($row['uid'], $row['code'], $row['name']);
 | |
|         if(!$this->language) {
 | |
|           return $this->createError(L("Error while loading language"));
 | |
|         }
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     return $this->success;
 | |
|   }
 | |
| 
 | |
|   private function updateLanguage() {
 | |
|     $languageId = $this->language->getId();
 | |
|     $userId = $this->user->getId();
 | |
|     $sql = $this->user->getSQL();
 | |
| 
 | |
|     $this->success = $sql->update("User")
 | |
|       ->set("language_id", $languageId)
 | |
|       ->where(new Compare("uid", $userId))
 | |
|       ->execute();
 | |
|     $this->lastError = $sql->getLastError();
 | |
|     return $this->success;
 | |
|   }
 | |
| 
 | |
|   public function execute($values = array()) {
 | |
|     if(!parent::execute($values)) {
 | |
|       return false;
 | |
|     }
 | |
| 
 | |
|     if(!$this->checkLanguage())
 | |
|       return false;
 | |
| 
 | |
|     if($this->user->isLoggedIn()) {
 | |
|       $this->updateLanguage();
 | |
|     }
 | |
| 
 | |
|     $this->user->setLangauge($this->language);
 | |
|     return $this->success;
 | |
|   }
 | |
| };
 | |
| 
 | |
| ?>
 |