123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415 |
- <?php
- function tripal_contact_disable() {
-
- require_once("tripal_contact.views_default.inc");
- $views = tripal_contact_views_default_views();
- foreach (array_keys($views) as $view_name) {
- tripal_disable_view($view_name,FALSE,array('suppress_error' => TRUE));
- }
- }
- function tripal_contact_requirements($phase) {
- $requirements = array();
- if ($phase == 'install') {
-
- if (!$GLOBALS["chado_is_installed"]) {
- $requirements ['tripal_contact'] = array(
- 'title' => "tripal_contact",
- 'value' => "ERROR: Chado must be installed before this module can be enabled",
- 'severity' => REQUIREMENT_ERROR,
- );
- }
- }
- return $requirements;
- }
- function tripal_contact_install() {
-
- tripal_contact_add_custom_tables();
-
- $obo_path = '{tripal_contact}/files/tcontact.obo';
- $obo_id = tripal_insert_obo('Tripal Contacts', $obo_path);
- tripal_submit_obo_job(array('obo_id' => $obo_id));
-
- tripal_contact_add_cvs();
- tripal_contact_add_cvterms();
-
- tripal_set_default_cv('contact', 'type_id', 'tripal_contact');
- tripal_set_default_cv('contactprop', 'type_id', 'tripal_contact');
- tripal_set_default_cv('contact_relationship', 'type_id', 'contact_relationship');
- }
- function tripal_contact_uninstall() {
-
- }
- function tripal_contact_add_cvs() {
-
-
- tripal_insert_cv(
- 'contact_property',
- 'Contains properties for contacts. This can be used if the tripal_contact vocabulary (which is default for contacts in Tripal) is not desired.'
- );
-
-
- tripal_insert_cv(
- 'contact_type',
- 'Contains types of contacts. This can be used if the tripal_contact vocabulary (which is default for contacts in Tripal) is not desired.'
- );
-
- tripal_insert_cv(
- 'tripal_contact',
- 'A heirarchical set of terms for describing a contact. It is intended to be used as the default vocabularies in Tripal for contact types and contact properties.'
- );
-
- tripal_insert_cv(
- 'contact_relationship',
- 'Contains types of relationships between contacts.'
- );
- }
- function tripal_contact_add_cvterms() {
- }
- function tripal_contact_schema() {
- $schema['chado_contact'] = array(
- 'fields' => array(
- 'vid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- 'default' => 0
- ),
- 'nid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- 'default' => 0
- ),
- 'contact_id' => array(
- 'type' => 'int',
- 'not null' => TRUE,
- 'default' => 0
- )
- ),
- 'indexes' => array(
- 'contact_id' => array('contact_id')
- ),
- 'unique keys' => array(
- 'nid_vid' => array('nid', 'vid'),
- 'vid' => array('vid')
- ),
- 'primary key' => array('nid'),
- );
- return $schema;
- }
- function tripal_contact_add_custom_tables(){
- $schema = array (
- 'table' => 'contactprop',
- 'fields' => array (
- 'contactprop_id' => array (
- 'type' => 'serial',
- 'not null' => true,
- ),
- 'contact_id' => array (
- 'type' => 'int',
- 'not null' => true,
- ),
- 'type_id' => array (
- 'type' => 'int',
- 'not null' => true,
- ),
- 'value' => array (
- 'type' => 'text',
- 'not null' => false,
- ),
- 'rank' => array (
- 'type' => 'int',
- 'not null' => true,
- 'default' => 0,
- ),
- ),
- 'primary key' => array (
- 0 => 'contactprop_id',
- ),
- 'unique keys' => array (
- 'contactprop_c1' => array (
- 0 => 'contact_id',
- 1 => 'type_id',
- 2 => 'rank',
- ),
- ),
- 'indexes' => array (
- 'contactprop_idx1' => array (
- 0 => 'contact_id',
- ),
- 'contactprop_idx2' => array (
- 0 => 'type_id',
- ),
- ),
- 'foreign keys' => array (
- 'cvterm' => array (
- 'table' => 'cvterm',
- 'columns' => array (
- 'type_id' => 'cvterm_id',
- ),
- ),
- 'contact' => array (
- 'table' => 'contact',
- 'columns' => array (
- 'contact_id' => 'contact_id',
- ),
- ),
- ),
- );
- chado_create_custom_table('contactprop', $schema, TRUE);
- }
- function tripal_contact_update_7200() {
-
-
-
- try {
- $cv_id = db_query("SELECT cv_id FROM chado.cv WHERE name = 'tripal_contact'")->fetchField();
- if (!$cv_id) {
-
- $cv_id = db_insert('chado.cv')
- ->fields(array(
- 'name' => 'tripal_contact',
- 'definition' => 'A heirarchical set of terms for describing a contact. It is intended to be used as the default vocabularies in Tripal for contact types and contact properties.'
- ))
- ->execute();
- }
-
- db_insert('tripal_cv_defaults')
- ->fields(array(
- 'table_name' => 'contact',
- 'field_name' => 'type_id',
- 'cv_id' => $cv_id
- ))
- ->execute();
- db_insert('tripal_cv_defaults')
- ->fields(array(
- 'table_name' => 'contactprop',
- 'field_name' => 'type_id',
- 'cv_id' => $cv_id
- ))
- ->execute();
- }
- catch (\PDOException $e) {
- $error = $e->getMessage();
- throw new DrupalUpdateException('Failed to add tripal_contact vocabulary: '. $error);
- }
-
- try {
- $cv_id = db_query("SELECT cv_id FROM chado.cv WHERE name = 'contact_relationship'")->fetchField();
- if (!$cv_id) {
-
- $cv_id = db_insert('chado.cv')
- ->fields(array(
- 'name' => 'contact_relationship',
- 'definition' => 'Contains types of relationships between contacts.'
- ))
- ->execute();
- }
-
- db_insert('tripal_cv_defaults')
- ->fields(array(
- 'table_name' => 'contact_relationship',
- 'field_name' => 'type_id',
- 'cv_id' => $cv_id
- ))
- ->execute();
- }
- catch (\PDOException $e) {
- $error = $e->getMessage();
- throw new DrupalUpdateException('Failed to add contact_type vocabulary: '. $error);
- }
-
- try {
- $cv_id = db_query("SELECT cv_id FROM chado.cv WHERE name = 'contact_type'")->fetchField();
- if (!$cv_id) {
-
- $cv_id = db_insert('chado.cv')
- ->fields(array(
- 'name' => 'contact_type',
- 'definition' => 'Contains types of contacts. This can be used if the tripal_contact vocabulary (which is default for contacts in Tripal) is not desired.'
- ))
- ->execute();
- }
- }
- catch (\PDOException $e) {
- $error = $e->getMessage();
- throw new DrupalUpdateException('Failed to add contact_type vocabulary: '. $error);
- }
-
- try {
- $cv_id = db_query("SELECT cv_id FROM chado.cv WHERE name = 'contact_property'")->fetchField();
- if (!$cv_id) {
-
- $cv_id = db_insert('chado.cv')
- ->fields(array(
- 'name' => 'contact_property',
- 'definition' => 'Contains properties for contacts. This can be used if the tripal_contact vocabulary (which is default for contacts in Tripal) is not desired.'
- ))
- ->execute();
- }
- }
- catch (\PDOException $e) {
- $error = $e->getMessage();
- throw new DrupalUpdateException('Failed to add contact_property vocabulary: '. $error);
- }
- }
- function tripal_contact_update_dependencies() {
- $dependencies = array();
-
- $dependencies['tripal_contact'][7200] = array(
- 'tripal_cv' => 7200
- );
- return $dependencies;
- }
- function tripal_contact_update_7201() {
-
-
-
-
- try {
- $fkey_exists = db_query('SELECT TRUE FROM pg_constraint WHERE conname = :constraint', array(':constraint' => 'contactprop_type_id_fkey'))->fetchField();
- if ($fkey_exists) {
- db_query('
- ALTER TABLE chado.contactprop
- DROP CONSTRAINT contactprop_type_id_fkey CASCADE
- ');
- db_query('
- ALTER TABLE chado.contactprop
- DROP CONSTRAINT contactprop_contact_id_fkey CASCADE
- ');
- }
- db_query('
- ALTER TABLE chado.contactprop
- ADD CONSTRAINT contactprop_type_id_fkey
- FOREIGN KEY (type_id) REFERENCES chado.cvterm (cvterm_id)
- ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
- ');
- db_query('
- ALTER TABLE chado.contactprop
- ADD CONSTRAINT contactprop_contact_id_fkey
- FOREIGN KEY (contact_id) REFERENCES chado.contact (contact_id)
- ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
- ');
- }
- catch (\PDOException $e) {
- $error = $e->getMessage();
- throw new DrupalUpdateException('Failed to update foriegn key: '. $error);
- }
- }
- function tripal_contact_update_7202() {
- try {
-
- db_delete('tripal_cv_obo')
- ->condition('name', 'Tripal Contacts')
- ->execute();
-
- $obo_path = '{tripal_contact}/files/tcontact.obo';
- $obo_id = tripal_insert_obo('Tripal Contacts', $obo_path);
- }
- catch (\PDOException $e) {
- $error = $e->getMessage();
- throw new DrupalUpdateException('Failed to update tripal_contact OBO path: '. $error);
- }
- }
|