You are here

class hostingService_http_cluster in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 web_cluster/hosting_web_cluster.service.inc \hostingService_http_cluster
  2. 7.3 web_cluster/hosting_web_cluster.service.inc \hostingService_http_cluster

Hierarchy

Expanded class hierarchy of hostingService_http_cluster

File

web_cluster/hosting_web_cluster.service.inc, line 9

View source
class hostingService_http_cluster extends hostingService_http {
  public $type = 'cluster';
  public $name = 'Web Cluster';
  function view(&$render) {
    $render['web_servers'] = array(
      '#type' => 'item',
      '#title' => t('Web servers'),
      '#markup' => theme('item_list', array(
        'items' => array_map('_hosting_node_link', array_intersect_key($this->web_servers, hosting_get_servers('http'))),
      )),
    );
  }
  function form(&$form) {
    parent::form($form);
    $servers = hosting_get_servers('http');
    if (isset($this->server->nid)) {
      unset($servers[$this->server->nid]);
    }
    $form['web_servers'] = array(
      '#title' => t('Servers'),
      '#type' => 'checkboxes',
      '#options' => $servers,
      '#default_value' => isset($this->web_servers) ? $this->web_servers : array(),
    );
  }
  function load() {
    parent::load();
    $ssl_enabled = TRUE;
    $web_servers = array();
    $result = db_query('SELECT web_server_nid FROM {hosting_web_cluster} WHERE vid = :vid', array(
      ':vid' => $this->server->vid,
    ));
    while ($web_server = $result
      ->fetch()) {
      $web_servers[] = $web_server->web_server_nid;
      $server = node_load($web_server->web_server_nid);
      $ssl_enabled = $ssl_enabled && $server->services['http']->ssl_enabled;
    }
    $this->ssl_enabled = $ssl_enabled;
    $this
      ->setValues(array(
      'web_servers' => drupal_map_assoc($web_servers),
    ));
  }
  function insert() {
    parent::insert();
    foreach (array_filter($this->web_servers) as $web_server) {
      $record = array(
        'nid' => $this->server->nid,
        'vid' => $this->server->vid,
        'web_server_nid' => $web_server,
      );
      drupal_write_record('hosting_web_cluster', $record);
    }
  }
  function delete() {
    parent::delete();
    db_delete('hosting_web_cluster')
      ->condition('nid', $this->server->nid)
      ->execute();
  }
  function delete_revision() {
    parent::delete_revision();
    db_delete('hosting_web_cluster')
      ->condition('vid', $this->server->vid)
      ->execute();
  }
  function context_options($task_type, $ref_type, &$task) {
    parent::context_options($task_type, $ref_type, $task);
    $task->context_options['cluster_web_servers'] = implode(',', array_values(array_map('hosting_context_name', array_intersect_key($this->web_servers, hosting_get_servers('http')))));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
hostingService::$available public property
hostingService::$has_port protected property 3
hostingService::$has_restart_cmd protected property 5
hostingService::$server public property
hostingService::$server_node public property
hostingService::context_import public function 3
hostingService::default_port public function 3
hostingService::default_restart_cmd public function 5
hostingService::getName public function Returns human readable name for this service.
hostingService::has_port public function 3
hostingService::mergeData protected function
hostingService::provisionProperties function Return service properties to Provision CLI. 2
hostingService::save public function
hostingService::setValues public function
hostingService::update public function 3
hostingService::validate public function 2
hostingService::__construct function
hostingService_http::$service public property Overrides hostingService::$service
hostingService_http::$ssl_enabled public property
hostingService_http_cluster::$name public property Overrides hostingService::$name
hostingService_http_cluster::$type public property Overrides hostingService::$type
hostingService_http_cluster::context_options function Overrides hostingService::context_options
hostingService_http_cluster::delete function Overrides hostingService::delete
hostingService_http_cluster::delete_revision function Overrides hostingService::delete_revision
hostingService_http_cluster::form function Overrides hostingService::form
hostingService_http_cluster::insert function Overrides hostingService::insert
hostingService_http_cluster::load function Overrides hostingService::load
hostingService_http_cluster::view function Overrides hostingService::view