Files
scattport-web/application/models/server.php
2011-05-08 20:13:08 +02:00

66 lines
1.4 KiB
PHP

<?php
/**
* @author Karsten Heiken, karsten@disposed.de
*/
class Server extends CI_Model {
/**
* Create a new server.
*
* @param array $data the server informations
* @return bool was the insert successful
*/
public function create($data) {
return $this->db->insert('servers', $data);
}
/**
* Delete a server.
*
* @param string $server_id
* @return bool was the deletion successful
*/
public function delete($server_id) {
return $this->db->delete('servers', array('id' => $server_id));
}
/**
* Get a list of all available servers.
*
* @return array List of all available servers.
*/
public function getAll() {
return $this->db->get('servers')->result_array();
}
/**
* Get a list of servers that could handle another job.
*
* @return array List of servers that could handle another job.
*/
public function getIdle() {
return $this->db->get_where('servers', 'workload <= 2')->result_array();
}
/**
* Update a server.
* *
* @param type $secret The server's secret for basic authentication.
* @param type $workload The server's workload.
*/
public function update($server_id, $data) {
return $this->db->update('servers', $data);
}
/**
* Get the best suiting server for a new job.
*
* @todo not yet verified.
*/
public function getBestServer() {
return $this->db->limit(1)->order_by('last_update', 'desc')->
get_where('servers', 'workload <= 2')->row_array();
}
}