120 行
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			120 行
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 	class Cat extends CI_Model {
 | |
| 
 | |
| 		function __construct()
 | |
| 		{
 | |
| 			// Call the Model constructor
 | |
| 			parent::__construct();
 | |
| 		}
 | |
| 
 | |
| 		function update($result) {
 | |
| 		
 | |
| 			$this->db->where('radio', $result['radio']); 
 | |
| 			$query = $this->db->get('cat');
 | |
| 			
 | |
| 			if ($query->num_rows() > 0)
 | |
| 			{
 | |
| 				if($result['radio'] == "SatPC32") {
 | |
| 					// Update the record
 | |
| 					foreach ($query->result() as $row)
 | |
| 					{
 | |
| 						$radio_id = $row->id;
 | |
| 						
 | |
| 						$data = array(
 | |
| 							'sat_name' => $result['sat_name'],
 | |
| 							'downlink_freq' => $result['downlink_freq'],
 | |
| 							'uplink_freq' => $result['uplink_freq'],
 | |
| 							'downlink_mode' => $result['downlink_mode'],
 | |
| 							'uplink_mode' => $result['uplink_mode'],
 | |
| 						);
 | |
| 
 | |
| 						$this->db->where('id', $radio_id);
 | |
| 						$this->db->update('cat', $data); 
 | |
| 					}
 | |
| 				} else {
 | |
| 					// Update the record
 | |
| 					foreach ($query->result() as $row)
 | |
| 					{
 | |
| 						$radio_id = $row->id;
 | |
| 					
 | |
| 						$data = array(
 | |
| 						'frequency' => $result['frequency'],
 | |
| 						'mode' => $result['mode'],
 | |
| 						'timestamp' => $result['timestamp'],
 | |
| 						);
 | |
| 
 | |
| 						$this->db->where('id', $radio_id);
 | |
| 						$this->db->update('cat', $data); 
 | |
| 					}
 | |
| 				}
 | |
| 			} else {
 | |
| 				// Add a new record
 | |
| 				
 | |
| 				if($result['radio'] == "SatPC32") {
 | |
| 					$data = array(
 | |
| 						'radio' => $result['radio'],
 | |
| 						'frequency' => $result['frequency'],
 | |
| 						'mode' => $result['mode'],
 | |
| 						'sat_name' => $result['sat_name'],
 | |
| 						'downlink_freq' => $result['downlink_freq'],
 | |
| 						'uplink_freq' => $result['uplink_freq'],
 | |
| 						'downlink_mode' => $result['downlink_mode'],
 | |
| 						'uplink_mode' => $result['uplink_mode'],
 | |
| 					);
 | |
| 				} else {
 | |
| 					$data = array(
 | |
| 						'radio' => $result['radio'],
 | |
| 						'frequency' => $result['frequency'],
 | |
| 						'mode' => $result['mode'],
 | |
| 						'timestamp' => $result['timestamp'],
 | |
| 					);
 | |
| 				}
 | |
| 
 | |
| 				$this->db->insert('cat', $data); 
 | |
| 
 | |
| 			}
 | |
| 		}
 | |
| 		
 | |
| 	
 | |
| 		function status() {
 | |
| 			//$this->db->where('radio', $result['radio']); 
 | |
| 			$query = $this->db->get('cat');
 | |
| 			
 | |
| 			return $query;
 | |
| 		}
 | |
| 
 | |
| 		function recent_status() {
 | |
| 			$this->db->where("timestamp > date_sub(now(), interval 15 minute)", NULL, FALSE);
 | |
| 
 | |
| 			$query = $this->db->get('cat');
 | |
| 			return $query;
 | |
| 		}
 | |
| 
 | |
| 		/* Return list of radios */
 | |
| 		function radios() {
 | |
| 			$this->db->select('id, radio');
 | |
| 			$query = $this->db->get('cat');
 | |
| 			
 | |
| 			return $query;
 | |
| 		}
 | |
| 		
 | |
| 
 | |
| 		function radio_status($id) {
 | |
| 
 | |
| 			return $this->db->query('SELECT *, CONVERT_TZ(`timestamp`, @@session.time_zone, \'+00:00\' ) as newtime FROM `cat` WHERE id = '.$id.' ');
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 
 | |
| 		function delete($id) {
 | |
| 			$this->db->where('id', $id);
 | |
| 			$this->db->delete('cat'); 
 | |
| 			
 | |
| 			return true;
 | |
| 		}
 | |
| 		
 | |
| 
 | |
| 
 | |
| 	}
 | |
| ?>
 |