summaryrefslogblamecommitdiffstats
path: root/application/models/ConfigMapper.php
blob: dbcb0e50ef3036258c2475a1962ac1b37073af3a (plain) (tree)
1
2
3
4
5
6
7
8
9



                                    

                            
 
                                                                           
                        







                                                          



                                                                 







                                                            

                                                    












                                                                                    



                                                                             




                                                  
 











                                                                                   
                                                                              







                                                              
                                                                                                                                                                                                                                                            

                                                         
                                                 

                                                           









                                                                                         


                 
                                                                          
         





                                                                 






                                                         
                                                                                                                                                                                                    


                                        








                                                                
                                                                                                                                                                                                                


                                            

                                





                                                                                           


        

 
<?php

class Application_Model_ConfigMapper
{
	
	protected $_dbTable;

		public function findBy($where, $array=false, $order=false) 
	{		
		foreach($where as $k => $v){
			if($v != null)
				$where2[] = "$k = '$v'"; 
			else 
				$where2[] = "$k IS NULL"; 
		}
		$where = implode(" AND " ,$where2);
		
		try{ 
			$db = Zend_Db_Table::getDefaultAdapter();
			$select = $this->getDbTable()->select() 
				->from($this->_dbTable) 
				->where($where); 
				
			if(is_array($order)){
				foreach ($order as $k => $v)
					$a[] = "$k $v";
				$select->order($a);
			}
			
			$stmt = $select->query();
			$result = $stmt->fetchAll();
			
			if(!$array){
				$entries = array();
				foreach ($result as $row) {
					$entry = new Application_Model_Config($row);
					$entry->setID($row['configID']);
					$entries[] = $entry;
				}
				return $entries;
			}else{
				return $result;
			}
			
		}catch (Zend_Exception $e) {  
			echo "Error message 2: " . $e->getMessage() . "\n";  
		}
	} 
	public function setDbTable($dbTable)
	{
		if (is_string($dbTable)) {
			$dbTable = new $dbTable();
		}

		if (!$dbTable instanceof Zend_Db_Table_Abstract) {
			throw new Exception('Invalid table data gateway provided');
		}

		$this->_dbTable = $dbTable;
		
		return $this;
	}

	public function getDbTable()
	{
		if (null === $this->_dbTable) {
			$this->setDbTable('Application_Model_DbTable_Config');
		}
		
		return $this->_dbTable;
	}

	public function save(Application_Model_Config $config)
	{
		
		$data = array('configID'=> $config->getID() ,'groupID'=> $config->getGroupID(), 'membershipID'=> $config->getMembershipID(), 'shellscript'=> $config->getShellscript(), 'title'=> $config->getTitle() , 'created'=> $config->getCreated() );

		if (null === ($id = $config->getID()) ) {
			unset($data['configID']);
			$this->getDbTable()->insert($data);
		} else {
			$this->getDbTable()->update($data, array('configID = ?' => $id));
		}
	}
	
	public function delete(Application_Model_Config $config)
	{
		if (null === ($id = $config->getID()) ) {
			return;
		} else {
			$this->getDbTable()->delete(array('configID = ?' => $id));
		}
	}

	public function find($id, Application_Model_Config $config = null)
	{
		if($config == null){
			$return = true;
		}
		if($return){
			$config = new Application_Model_Config();
		}
		$result = $this->getDbTable()->find($id);
		if (0 == count($result)) {
			return;
		}

		$row = $result->current();
		
		$config->setID($row->configID)->setGroupID($row->groupID)->setMembershipID($row->membershipID)->setCreated($row->created)->setShellscript($row->shellscript)->setTitle($row->title);
		if($return){		
			return $config;
		}
	}

	public function fetchAll()
	{
		$resultSet = $this->getDbTable()->fetchAll();
		$entries   = array();
		foreach ($resultSet as $row) {
			$entry = new Application_Model_Config();
			
			$entry->setID($row->configID)->setGroupID($row->groupID)->setMembershipID($row->membershipID)->setCreated($row->created)->setShellscript($row->shellscript)->setTitle($row->title);	

			$entries[] = $entry;
		}
		return $entries;
	}
	
	public function compare(Application_Model_Config $v1,Application_Model_Config $v2){
		$vv1 = $v1->toArray();
		$vv2 = $v2->toArray();
		return array_diff($vv1,$vv2);
	}


	
}