Project

General

Profile

1
 /*
2
  *   '$RCSfile$'
3
  *     Purpose: Basic funtions to support searching workflows
4
  *   Copyright: 2009 Regents of the University of California and the
5
  *               National Center for Ecological Analysis and Synthesis
6
  *     Authors: Michael Daigle
7
  *
8
  *    '$Author: leinfelder $'
9
  *      '$Date: 2008-06-17 13:16:32 -0700 (Tue, 17 Jun 2008) $'
10
  *  '$Revision: 4006 $'
11
  *
12
  * This program is free software; you can redistribute it and/or modify
13
  * it under the terms of the GNU General Public License as published by
14
  * the Free Software Foundation; either version 2 of the License, or
15
  * (at your option) any later version.
16
  *
17
  * This program is distributed in the hope that it will be useful,
18
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
  * GNU General Public License for more details.
21
  *
22
  * You should have received a copy of the GNU General Public License
23
  * along with this program; if not, write to the Free Software
24
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
  */ 
26

    
27
/*
28
 * Generate a workflow query string.  this assumes that search fields meet the
29
 * following criteria in the web page:
30
 * -- search input fields have an ID that starts with sf- 
31
 * -- if there is a search mode dropdown for an input field in the form, it's ID 
32
 *    should use the same convention as the input field, but start with sm-
33
 *    (i.e. the search mode input for the sf-firstname input would be sm-firstname) 
34
 */
35
function setWorkflowQueryFormField(formId) {
36
	var queryString = ""; 
37
	queryString += "<pathquery version='1.2'>";
38
	queryString += "<returndoctype>entity</returndoctype>";
39
	queryString += "<returndoctype>-//UC Berkeley//DTD MoML 1//EN</returndoctype>";
40
	queryString += "<returnfield>/entity/@name</returnfield>";
41
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'author\']/configure</returnfield>";
42
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'description\']/configure</returnfield>";
43
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'createDate\']/configure</returnfield>";
44
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'workflowId\']/configure</returnfield>";
45
	queryString += "<returnfield>/entity/property[@name=\'karLSID\']/@value</returnfield>";				
46
	queryString += "<returnfield>/entity/property[@name=\'entityId\']/@value</returnfield>";
47
	
48
	queryString += "<querygroup operator='INTERSECT'>";	
49
	
50
	var elementList = document.getElementById(formId).elements;
51
	for(var i = 0; i < elementList.length; i++) {
52
	//alert("form element: " + elementList[i].id);
53
		if((elementList[i].id.indexOf("sf-") == 0) && (elementList[i].value != '')) {					
54
			queryString += getQueryTerm(elementList[i]);
55
		}
56
	} 
57
	
58
	queryString += "</querygroup>";	
59
	queryString += "</pathquery>";
60
	
61
	//alert(queryString);
62
	
63
	var queryField = document.getElementById("query");
64
	
65
	queryField.value = queryString;
66
}
67

    
68
/*
69
 * Generate individual query terms for all the search input fields in a search 
70
 * form.  There must be a case for each search field handle explicitly below.  
71
 * This assumes:
72
 * -- search input fields have an ID that starts with sf- 
73
 * -- if there is a search mode dropdown for an input field in the form, it's ID 
74
 *    should use the same convention as the input field, but start with sm-
75
 *    (i.e. the search mode input for the sf-firstname input would be sm-firstname) 
76
 */
77
function getQueryTerm(sfElement) {
78
	var baseId = sfElement.id.substring(3, sfElement.id.length);		
79
	var searchMode = "contains";
80
	var selector = document.getElementById("sm-" + baseId);
81
	if (selector != null) {
82
		searchMode = selector.value;
83
	}
84
	
85
	var pathExpr = '';
86
	if (sfElement.name == 'name') {
87
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
88
		pathExpr += "<value>" + sfElement.value + "</value>";
89
		pathExpr += "<pathexpr>entity/@name</pathexpr>";
90
		pathExpr += "</queryterm>"; 		
91
	} else if (sfElement.name == 'keyword') {
92
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
93
		pathExpr += "<value>" + sfElement.value + "</value>";
94
		pathExpr += "<pathexpr>property/@value</pathexpr>";
95
		pathExpr += "</queryterm>"; 		
96
	} else if (sfElement.name == 'creator') {
97
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
98
		pathExpr += "<value>" + sfElement.value + "</value>";
99
		pathExpr += "<pathexpr>property/property/configure</pathexpr>";
100
		pathExpr += "</queryterm>"; 		
101
	} else if (sfElement.name == 'description') {
102
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
103
		pathExpr += "<value>" + sfElement.value + "</value>";
104
		pathExpr += "<pathexpr>property/property/configure</pathexpr>";
105
		pathExpr += "</queryterm>"; 		
106
	} else if (sfElement.name == 'date-created') {
107
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
108
		pathExpr += "<value>" + sfElement.value + "</value>";
109
		pathExpr += "<pathexpr>property/property/configure</pathexpr>";
110
		pathExpr += "</queryterm>"; 		
111
	} else if (sfElement.name == 'date-executed') {
112
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
113
		pathExpr += "<value>" + sfElement.value + "</value>";
114
		pathExpr += "<pathexpr>property/property/configure</pathexpr>";
115
		pathExpr += "</queryterm>";		
116
	} else if (sfElement.name == 'workflow-id') {
117
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
118
		pathExpr += "<value>entityId</value>";
119
		pathExpr += "<pathexpr>/entity/property/@name</pathexpr>";
120
		pathExpr += "</queryterm>"; 
121
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
122
		pathExpr += "<value>" + sfElement.value + "</value>";
123
		pathExpr += "<pathexpr>/entity/property/@value</pathexpr>";
124
		pathExpr += "</queryterm>";		
125
	} else if (sfElement.name == 'workflow-run-id') {
126
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
127
		pathExpr += "<value>" + sfElement.value + "</value>";
128
		pathExpr += "<pathexpr>property/property/configure</pathexpr>";
129
		pathExpr += "</queryterm>"; 		
130
	} else if (sfElement.name == 'status') {
131
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
132
		pathExpr += "<value>" + sfElement.value + "</value>";
133
		pathExpr += "<pathexpr>property/property/configure</pathexpr>";
134
		pathExpr += "</queryterm>"; 		
135
	} 
136
	
137
	//alert("returning path expression: " + pathExpr);
138
	return pathExpr;
139
}
140

    
141
	
(24-24/31)