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
|
/*queryString += "<returndoctype>kar</returndoctype>";*/
|
48
|
queryString += "<returndoctype>http://www.kepler-project.org/kar-2.0.0</returndoctype>";
|
49
|
queryString += "<returndoctype>http://www.kepler-project.org/kar-2.1.0</returndoctype>";
|
50
|
queryString += "<returnfield>karEntry/karEntryXML/entity/@name</returnfield>";
|
51
|
queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'author\']/configure</returnfield>";
|
52
|
queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'description\']/configure</returnfield>";
|
53
|
queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'createDate\']/configure</returnfield>";
|
54
|
queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'workflowId\']/configure</returnfield>";
|
55
|
queryString += "<returnfield>mainAttributes/lsid</returnfield>";
|
56
|
queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'entityId\']/@value</returnfield>";
|
57
|
queryString += "<returnfield>karEntry/karEntryXML/property[@name=\'WorkflowRun\']/@class</returnfield>";
|
58
|
queryString += "<querygroup operator='INTERSECT'>";
|
59
|
|
60
|
var elementList = document.getElementById(formId).elements;
|
61
|
for(var i = 0; i < elementList.length; i++) {
|
62
|
//alert("form element: " + elementList[i].id);
|
63
|
if((elementList[i].id.indexOf("sf-") == 0) && (elementList[i].value != '')) {
|
64
|
queryString += getQueryTerm(elementList[i]);
|
65
|
}
|
66
|
}
|
67
|
|
68
|
queryString += "</querygroup>";
|
69
|
queryString += "</pathquery>";
|
70
|
|
71
|
//alert(queryString);
|
72
|
|
73
|
var queryField = document.getElementById("query");
|
74
|
|
75
|
queryField.value = queryString;
|
76
|
}
|
77
|
|
78
|
/*
|
79
|
* Generate individual query terms for all the search input fields in a search
|
80
|
* form. There must be a case for each search field handle explicitly below.
|
81
|
* This assumes:
|
82
|
* -- search input fields have an ID that starts with sf-
|
83
|
* -- if there is a search mode dropdown for an input field in the form, it's ID
|
84
|
* should use the same convention as the input field, but start with sm-
|
85
|
* (i.e. the search mode input for the sf-firstname input would be sm-firstname)
|
86
|
*/
|
87
|
function getQueryTerm(sfElement) {
|
88
|
var baseId = sfElement.id.substring(3, sfElement.id.length);
|
89
|
var searchMode = "contains";
|
90
|
var selector = document.getElementById("sm-" + baseId);
|
91
|
if (selector != null) {
|
92
|
searchMode = selector.value;
|
93
|
}
|
94
|
|
95
|
var pathExpr = '';
|
96
|
if (sfElement.name == 'name') {
|
97
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
98
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
99
|
/*pathExpr += "<pathexpr>entity/@name</pathexpr>";*/
|
100
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/@name</pathexpr>";
|
101
|
pathExpr += "</queryterm>";
|
102
|
} else if (sfElement.name == 'keyword') {
|
103
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
104
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
105
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@value</pathexpr>";
|
106
|
pathExpr += "</queryterm>";
|
107
|
} else if (sfElement.name == 'creator') {
|
108
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
109
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
110
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
|
111
|
pathExpr += "</queryterm>";
|
112
|
} else if (sfElement.name == 'description') {
|
113
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
114
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
115
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
|
116
|
pathExpr += "</queryterm>";
|
117
|
} else if (sfElement.name == 'date-created') {
|
118
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
119
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
120
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
|
121
|
pathExpr += "</queryterm>";
|
122
|
} /*else if (sfElement.name == 'date-executed') {
|
123
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
124
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
125
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
|
126
|
pathExpr += "</queryterm>";
|
127
|
} */ else if (sfElement.name == 'workflow-lsid') {
|
128
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
129
|
pathExpr += "<value>entityId</value>";
|
130
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@name</pathexpr>";
|
131
|
pathExpr += "</queryterm>";
|
132
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
133
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
134
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@value</pathexpr>";
|
135
|
pathExpr += "</queryterm>";
|
136
|
}/* else if (sfElement.name == 'workflow-run-id') {
|
137
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
138
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
139
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
|
140
|
pathExpr += "</queryterm>";
|
141
|
} else if (sfElement.name == 'status') {
|
142
|
pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
|
143
|
pathExpr += "<value>" + sfElement.value + "</value>";
|
144
|
pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
|
145
|
pathExpr += "</queryterm>";
|
146
|
}*/
|
147
|
|
148
|
//alert("returning path expression: " + pathExpr);
|
149
|
return pathExpr;
|
150
|
}
|
151
|
|
152
|
|