-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathSpeciesListController.groovy
703 lines (628 loc) · 31.7 KB
/
SpeciesListController.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
/*
* Copyright (C) 2022 Atlas of Living Australia
* All Rights Reserved.
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*/
package au.org.ala.specieslist
import au.org.ala.web.AuthService
//import au.org.ala.names.ws.api.SearchStyle
import com.opencsv.CSVReader
import grails.converters.JSON
import grails.gorm.transactions.NotTransactional
import grails.gorm.transactions.Transactional
import groovy.time.TimeCategory
import org.apache.commons.io.filefilter.FalseFileFilter
import org.grails.web.json.JSONObject
import org.hibernate.criterion.DetachedCriteria
import org.springframework.web.multipart.MultipartHttpServletRequest
import javax.annotation.PostConstruct
import java.util.concurrent.Executors
import java.util.concurrent.TimeUnit
import java.lang.management.ManagementFactory
import com.sun.management.OperatingSystemMXBean
class SpeciesListController {
public static final String CSV_UPLOAD_FILE_NAME = "csvFile"
public static final String INVALID_FILE_TYPE_MESSAGE = "Invalid file type: must be a tab or comma separated text file."
private static final String[] ACCEPTED_CONTENT_TYPES = ["text/plain", "text/csv"]
HelperService helperService
ColumnMatchingService columnMatchingService
AuthService authService
LocalAuthService localAuthService
BieService bieService
BiocacheService biocacheService
LoggerService loggerService
QueryService queryService
int noOfRowsToDisplay = 5
Integer BATCH_SIZE
@PostConstruct
init(){
BATCH_SIZE = Integer.parseInt((grailsApplication.config.batchSize?:200).toString())
}
static allowedMethods = [uploadList:'POST']
def index() { redirect(action: 'upload')}
def upload() { /*maps to the upload.gsp */
log.debug(ListType.values()?.toString())
if (params.id) {
//get the list if it exists and ensure that the user is an admin or the owner
def list = SpeciesList.findByDataResourceUid(params.id)
if (list?.userId == authService.getUserId() || authService.userInRole("ROLE_ADMIN")) {
render(view: "upload", model: [resourceUid: params.id, list: list, listTypes: ListType.values()])
} else {
flash.message = "${message(code: 'error.message.reloadListPermission', args: [params.id])}"
redirect(controller: "public", action: "speciesLists")
}
} else {
// list is private by default
def list = new SpeciesList(isPrivate: true)
render(view: "upload", model: [list: list, listTypes: ListType.values()])
}
}
/**
* Current mechanism for deleting a species list
* @return
*
* Edit Access controlled by SpeciesListDeleteInterceptor
*/
@Transactional
def delete(){
log.debug("Deleting from collectory (${params.id})")
def sl = SpeciesList.get(params.id)
if(sl){
helperService.deleteDataResourceForList(sl.dataResourceUid)
List msIds = SpeciesListItem.executeQuery("select sli.matchedSpecies.id as id from SpeciesListItem as sli where dataResourceUid = :dataResourceUid", ["dataResourceUid": sl.dataResourceUid])
SpeciesListItem.executeUpdate("delete from SpeciesListItem where dataResourceUid = :dataResourceUid", ["dataResourceUid": sl.dataResourceUid])
log.debug("Deleted species in list: ${sl.dataResourceUid}")
MatchedSpecies.executeUpdate("delete from MatchedSpecies where id in (:msIds)", ["msIds": msIds])
log.debug("Deleted matched species (${msIds.size()}) ")
SpeciesListKVP.executeUpdate("delete from SpeciesListKVP where dataResourceUid = :dataResourceUid", ["dataResourceUid": sl.dataResourceUid])
log.debug("Deleted KV pairs in list: ${sl.dataResourceUid}")
SpeciesList.executeUpdate("delete from SpeciesList where dataResourceUid = :dataResourceUid", ["dataResourceUid": sl.dataResourceUid])
log.debug("Deleted the list: ${sl.dataResourceUid}")
}
redirect(action: 'list')
}
/**
* OLD delete
*
* @return
*
* Permissions controlled by SpeciesListDeleteInterceptor
*/
def deleteList(){
log.debug("Deleting from collectory...")
helperService.deleteDataResourceForList(params.id)
//delete all the items that belong to the specified list
//SpeciesListItem.where {dataResourceUid == params.id}.deleteAll()
log.debug(params?.toString())
//performs the cascade delete that is required.
SpeciesListItem.findAllByDataResourceUid(params.id)*.delete()
SpeciesListKVP.findAllByDataResourceUid(params.id)*.delete()
flash.message = "Deleted Species List " + params.id
redirect(action: 'upload')
}
private def createOrRetrieveDataResourceUid(dataResourceUid, speciesListName){
if(!dataResourceUid){
def drURL = helperService.addDataResourceForList([name:speciesListName])
log.debug(drURL?.toString())
if(!drURL){
log.error("Unable to create entry in collectory....")
throw new Exception("Problem communicating with collectory. Unable to create resource.")
} else {
drURL.toString().substring(drURL.lastIndexOf('/') +1)
}
} else {
dataResourceUid
}
}
def uploadList() {
if (!authService.userId) {
response.sendError(401, "Not logged in.")
return
}
//the raw data and list name must exist
log.debug("upload the list....")
log.debug(params?.toString())
def file = isMultipartRequest() ? request.getFile(CSV_UPLOAD_FILE_NAME) : null
JSONObject formParams = file ? JSON.parse(request.getParameter("formParams")) : JSON.parse(request.getReader())
log.debug(formParams.toString() + " class : " + formParams.getClass())
if(formParams.speciesListName && formParams.headers && (file || formParams.rawData)) {
// check access for existing list
def speciesList = SpeciesList.findByDataResourceUid(formParams.id)
if (speciesList && !isCurrentUserEditorForList(speciesList)) {
response.sendError(401, "Not authorised.")
return
}
def druid = createOrRetrieveDataResourceUid(
formParams.id,
formParams.speciesListName
)
// default all lists to isAuthoritative = false: it is an admin task to determine whether a list is authoritative or not
if (!request.isUserInRole("ROLE_ADMIN")) {
def list = SpeciesList.findByDataResourceUid(params.id)
formParams.isAuthoritative = list?.isAuthoritative || Boolean.FALSE
formParams.isThreatened = list?.isAuthoritative || Boolean.FALSE
formParams.isInvasive = list?.isAuthoritative || Boolean.FALSE
}
if(druid) {
log.debug("Loading species list " + formParams.speciesListName)
def vocabs = formParams.findAll { it.key.startsWith("vocab") && it.value } //map of vocabs
log.debug("Vocabs: " +vocabs)
CSVReader reader
try {
if (file) {
reader = helperService.getCSVReaderForCSVFileUpload(file, detectSeparator(file) as char)
} else {
reader = helperService.getCSVReaderForText(formParams.rawData, helperService.getSeparator(formParams.rawData))
}
def header = formParams.headers
log.debug("Header: " +header)
def itemCount = helperService.loadSpeciesListFromCSV(reader,
druid,
formParams.speciesListName,
ListType.valueOf(formParams.get("listType")),
formParams.description,
formParams.listUrl,
formParams.listWkt,
formParams.isBIE,
formParams.isSDS,
formParams.isAuthoritative,
formParams.isThreatened,
formParams.isInvasive,
formParams.isPrivate,
formParams.region,
formParams.authority,
formParams.category,
formParams.generalisation,
formParams.sdsType,
formParams.looseSearch== null || formParams.looseSearch.isEmpty() ? null : Boolean.parseBoolean(formParams.looseSearch),
//formParams.searchStyle == null || formParams.searchStyle.isEmpty() ? null : SearchStyle.valueOf(formParams.searchStyle),
header.split(","),
vocabs)
def url = createLink(controller:'speciesListItem', action:'list', id: druid) +"?max=10"
//update the URL for the list
log.info("Register ${url} to collectory server")
helperService.updateDataResourceForList(druid,
[
pubDescription: formParams.description,
websiteUrl: grailsApplication.config.serverName + url,
techDescription: "This list was first uploaded by " + authService.userDetails()?.getDisplayName() + " on the " + (new Date()) + "." + "It contains " + itemCount + " taxa.",
resourceType : "species-list",
status : "dataAvailable",
contentTypes : '["species list"]'
]
)
if (itemCount.successfulItems == itemCount.totalRecords) {
flash.message = "${message(code: 'upload.lists.uploadprocess.success.message', default:'All items have been successfully uploaded.')}"
}
else {
flash.message = "${itemCount.successfulItems} ${message(code:'upload.lists.uploadprocess.partial01', default:'out of')} ${itemCount.totalRecords} ${message(code:'upload.lists.uploadprocess.partial02', default:'items have been successfully uploaded.')}"
}
def msg = message(code:'upload.lists.uploadprocess.errormessage', default:'Unable to upload species data. Please ensure the column containing the species name has been identified.')
def map = [url: url, error: itemCount.successfulItems > 0 ? null : msg]
render map as JSON
}
finally {
reader?.close()
}
} else {
response.outputStream.write("Unable to add species list at this time. If this problem persists please report it.".getBytes())
response.setStatus(500)
response.sendError(500, "Unable to add species list at this time. If this problem persists please report it.")
}
}
}
/**
* Submits the supplied list
*
* This is the OLD method when supplying a file name
*/
def submitList(){
if (!authService.userId) {
response.sendError(401, "Not logged in.")
return
}
//ensure that the species list file exists before creating anything
def uploadedFile = request.getFile('species_list')
if(!uploadedFile.empty){
//create a new temp data resource in the collectory for this species list
def drURL = helperService.addDataResourceForList(params.speciesListTitle)
def druid = drURL.toString().substring(drURL.lastIndexOf('/') +1)
//download the supplied file to the local files system
def localFilePath = helperService.uploadFile(druid, uploadedFile)
log.debug("The local file " + localFilePath)
//create a new species list item for each line of the file
log.debug(params?.toString())
//set of the columns if necessary
def columns = params.findAll { it.key.startsWith("column") && it.value }.sort{it.key.replaceAll("column","") as int }
log.debug(columns.toString() + " " + columns.size())
def header = (columns.size() > 0 && !params.containsKey('rowIndicatesMapping')) ? columns.values().toArray(["",""]) : null
//sort out the vocabulary
def vocabs = !params.containsKey('rowIndicatesMapping')?params.findAll { it.key.startsWith("vocab") && it.value }.sort{it.key.replaceAll("vocab","") as int}:null
def vocabMap = [:]
vocabs?.each{
int i = it.key.replaceAll("vocab","") as int
log.debug("header :" + header[i] + " value: "+ it.value)
vocabMap.put(header[i] , it.value)
}
log.debug(vocabMap?.toString())
helperService.loadSpeciesListFromFile(params.speciesListTitle,druid,localFilePath,params.containsKey('rowIndicatesMapping'),header,vocabMap)
//redirect the use to a summary of the records that they submitted - include links to BIE species page
//also mention that the list will be loaded into BIE overnight.
//def speciesListItems = au.org.ala.specieslist.SpeciesListItem.findAllByDataResourceUid(druid)
flash.params
//[max:10, sort:"title", order:"desc", offset:100]
//render(view:'list', model:[results: speciesListItems])
redirect(controller: "speciesListItem",action: "list",id: druid,params: [max: 10, sort:"id"])//,id: druid, max: 10, sort:"id")
}
}
def list(){
//list should be based on the user that is logged in so add the filter condition
def userId = authService.getUserId()
if (userId){
params['userId'] = "eq:"+userId
}
String searchTerm = null
params.q = params.q?.trim()
if (params.q && params.q.length() < 3) {
searchTerm = params.q
params.q = ""
}
try {
// retrieve qualified SpeciesListItems for performance reason
def itemsIds = queryService.getFilterSpeciesListItemsIds(params)
def lists = queryService.getFilterListResult(params, true, itemsIds, request, response)
def typeFacets = (params.listType) ? null : queryService.getTypeFacetCounts(params, true, itemsIds)
def tagFacets = queryService.getTagFacetCounts(params, itemsIds)
//now remove the params that were added
//params.remove('username')
params.remove('userId')
log.debug("lists:" + lists)
def model = [
lists: lists,
total: lists.totalCount,
typeFacets: typeFacets,
tagFacets : tagFacets,
selectedFacets: queryService.getSelectedFacets(params)]
if (searchTerm) {
params.q = searchTerm
model.errors = "Error: Search terms must contain at least 3 characters"
}
render(view: "list", model: model)
} catch(Exception e) {
log.error "Error requesting species Lists: " ,e
response.status = 404
render(view: '../error', model: [message: "Unable to retrieve species lists. Please let us know if this error persists. <br>Error:<br>" + e.getMessage()])
}
}
def showList(){
def speciesList = SpeciesList.findByDataResourceUid(params.id)
if (speciesList && !isViewable(speciesList)) {
response.sendError(401, "Not authorised.")
return
}
try{
if (params.message)
flash.message = params.message
params.max = Math.min(params.max ? params.int('max') : 10, 100)
params.sort = params.sort ?: "id"
//force the SpeciesListItem to perform a join on the kvp table.
//params.fetch = [kvpValues: 'join'] -- doesn't work for a 1 ro many query because it doesn't correctly obey the "max" param
//params.remove("id")
params.fetch= [ kvpValues: 'select' ]
log.error(params.toQueryString()?.toString())
def distinctCount = SpeciesListItem.executeQuery("select count(distinct guid) from SpeciesListItem where dataResourceUid='"+params.id+"'").head()
def keys = SpeciesListKVP.executeQuery("select distinct key from SpeciesListKVP where dataResourceUid='"+params.id+"'")
def speciesListItems = SpeciesListItem.findAllByDataResourceUid(params.id,params)
log.debug("KEYS: " + keys)
render(view:'/speciesListItem/list', model:[results: speciesListItems,
totalCount:SpeciesListItem.countByDataResourceUid(params.id),
noMatchCount:SpeciesListItem.countByDataResourceUidAndGuidIsNull(params.id),
distinctCount:distinctCount, keys:keys])
}
catch(Exception e){
render(view: '../error', model: [message: "Unable to retrieve species lists. Please let us know if this error persists. <br>Error:<br>" + e.getMessage()])
}
}
/**
* Downloads the field guid for this species list
* @return
*/
def fieldGuide(){
if (params.id){
def isdr = params.id.startsWith("dr")
def guids = getGuidsForList(params.id,grailsApplication.config.downloadLimit)
def speciesList = isdr?SpeciesList.findByDataResourceUid(params.id):SpeciesList.get(params.id)
if (speciesList && !isViewable(speciesList)) {
response.sendError(401, "Not authorised.")
return
}
if(speciesList){
def fieldguideResponse = bieService.generateFieldGuide(speciesList.getDataResourceUid(), guids, params.email)
if(fieldguideResponse)
redirect(url: fieldguideResponse.get('statusUrl'))
else
redirect(controller: "speciesListItem", action: "list", id:params.id)
}
else
redirect(controller: "speciesListItem", action: "list", id:params.id)
}
}
private def getGuidsForList(id, limit){
def fqs = params.fq?[params.fq].flatten().findAll{ it != null }:null
def baseQueryAndParams = queryService.constructWithFacets(" from SpeciesListItem sli ", fqs, params.id)
SpeciesListItem.executeQuery("select sli.guid " + baseQueryAndParams[0] + " and sli.guid is not null", baseQueryAndParams[1] ,[max: limit])
}
def getUnmatchedNamesForList(id, limit) {
def fqs = params.fq?[params.fq].flatten().findAll{ it != null }:null
def baseQueryAndParams = queryService.constructWithFacets(" from SpeciesListItem sli ", fqs, params.id)
def isdr =id.startsWith("dr")
//def where = isdr? "dataResourceUid=?":"id = ?"
def names = SpeciesListItem.executeQuery("select sli.rawScientificName " + baseQueryAndParams[0] + " and sli.guid is null", baseQueryAndParams[1] ,[max: limit])
return names
}
def spatialPortal(){
if (params.id && params.type){
//if the list is authoritative, then just do ?q=species_list_uid:
SpeciesList splist = SpeciesList.findByDataResourceUid(params.id)
if (splist && !isViewable(splist)) {
response.sendError(401, "Not authorised.")
return
}
if(grailsApplication.config.biocache.indexAuthoritative.toBoolean() && splist.isAuthoritative){
redirect(url: grailsApplication.config.spatial.baseURL + "/?q=species_list_uid:" + splist.dataResourceUid)
} else {
def guids = getGuidsForList(params.id, grailsApplication.config.downloadLimit)
def unMatchedNames = getUnmatchedNamesForList(params.id, grailsApplication.config.downloadLimit)
def title = "Species List: " + splist.listName
log.debug "unMatchedNames = " + unMatchedNames
def qid = biocacheService.getQid(guids, unMatchedNames, title, splist.wkt)
if(qid?.status == 200){
redirect(url: grailsApplication.config.spatial.baseURL + "/?q=qid:"+qid.result)
} else {
render(view: '../error', model: [message: "Unable to view occurrences records. Please let us know if this error persists."])
}
}
}
}
/**
* Either downloads records from biocache or redirects to bicache depending on the type
* @return
*/
def occurrences(){
if(biocacheService.isListIndexed(params.id)){
redirect(url:biocacheService.getQueryUrlForList(params.id))
} else if (params.id && params.type){
def splist = SpeciesList.findByDataResourceUid(params.id)
if (splist && !isViewable(splist)) {
response.sendError(401, "Not authorised.")
return
}
def guids = getGuidsForList(params.id, grailsApplication.config.downloadLimit)
def unMatchedNames = getUnmatchedNamesForList(params.id, grailsApplication.config.downloadLimit)
def title = "Species List: " + splist.listName
def downloadDto = new DownloadDto()
bindData(downloadDto, params)
log.debug "downloadDto = " + downloadDto
log.debug "unMatchedNames = " + unMatchedNames
def url = biocacheService.performBatchSearchOrDownload(guids, unMatchedNames, downloadDto, title, splist.wkt)
if(url){
redirect(url:url)
} else {
redirect(controller: "speciesListItem", action: "list", id:params.id)
}
}
}
/**
* Performs an initial parse of the species list to provide feedback on values. Allowing
* users to supply vocabs etc.
*
* Data can be submitted either via a file upload or as copy and paste text
*/
def parseData() {
log.debug("Parsing for header")
String separator
CSVReader csvReader
def file = isMultipartRequest() ? request.getFile(CSV_UPLOAD_FILE_NAME) : null
try {
if (file) {
if (ACCEPTED_CONTENT_TYPES.contains(file.getContentType())) {
separator = detectSeparator(file);
csvReader = helperService.getCSVReaderForCSVFileUpload(file, separator as char)
} else {
log.debug("Wrong File Content type: "+file.getContentType())
render(view: 'parsedData', model: [error: "${message(code:'upload.lists.checkdata.errormessage', default:'Invalid file type: must be a tab or comma separated text file.')}"])
return
}
} else {
def rawData = request.getReader().readLines().join("\n").trim()
separator = helperService.getSeparator(rawData)
csvReader = helperService.getCSVReaderForText(rawData, separator)
}
parseDataFromCSV(csvReader, separator)
}
catch (e) {
log.error("Failed to parse data", e)
render(view: 'parsedData', model: [error: "Unable to parse species list data: ${e.getMessage()}"])
}
finally {
csvReader?.close()
}
}
private String detectSeparator(file) {
file?.getInputStream().withReader { r -> helperService.getSeparator(r.readLine()) }
}
/**
*
* 1, Rematch the species list of the given data resource id (drid), or the sequence id (id)
* 2, If the sequence id and the data resource id is not provided, it will rematch all species lists
*
* param id: data resource id of a species list, starting with 'dr'
* reset optional, default to false. Remove all existing matched species if true
*
* if the id is NOT started with "dr", it is assumed it is a sequence id of a species list
* the params.id will be recalculated to the data resource id of this species lis
*
*/
def rematch() {
if (params.id) {
def drid = params.id
//If the id is not started with "dr", it is assumed it is a sequence id of a species list
if ( !params.id.startsWith("dr")) {
drid = SpeciesList.get(params.id)?.dataResourceUid
}
rematchList(drid)
} else {
rematchAll()
}
}
def rematchAll() {
def order = params.order?.equalsIgnoreCase("asc") ? 'asc' : 'desc'
def speciesLists = SpeciesList.list(sort: 'itemsCount', order: order)
def total = speciesLists.size()
def startProcessing = new Date()
def msg = [status: 0, message: "Rematch all species lists [${total}], starting with order: ${order}"]
def rematchLog = new RematchLog(byWhom: authService?.userDetails()?.email ?: "Developer", startTime: new Date(), status: 'Running', logs: [msg.message]);
rematchLog.save()
for(int i= 0; i < speciesLists.size(); i++) {
rematchLog.processing = "${i + 1}/${total}"
def speciesList = speciesLists[i]
msg = helperService.rematchList(speciesList,params.reset?.toBoolean() == true)
rematchLog.latestProcessingTime = new Date()
rematchLog.appendLog("${msg['message']}")
rematchLog.save(failOnError: true)
if (msg['status'] != 0) {
break
}
}
if (msg.status == 0) {
rematchLog.status = 'Completed'
} else {
rematchLog.status = "Failed"
}
def finalMsg = "Total time to complete ${total} lists : ${TimeCategory.minus(new Date(), startProcessing)}"
rematchLog.endTime = new Date()
rematchLog.appendLog(finalMsg)
/**
* With unknown reasons, the live session is closed after the last list is completed.
* And the log for the last list is not saved, We have to use a new transaction to update the log.
*/
RematchLog.withTransaction {
rematchLog.save(failOnError: true, flush: true )
}
log.info(finalMsg)
render(rematchLog.toMap() as JSON)
}
/**
* Rematch the species list of the given data resource id (drid)
* @param id dataResource id of a species list, starting with 'dr'
* @reset optional, default to false. Remove all existing matched species if true
* @return
*/
def rematchList(String id) {
def speciesList = SpeciesList.findByDataResourceUid(id)
if (speciesList) {
if (!isCurrentUserEditorForList(speciesList)) {
response.sendError(401, "Not authorised.")
return
}
def msg = helperService.rematchList(speciesList, params.reset?.toBoolean() == true)
render(msg as JSON)
} else {
render([status: 0, message: "No species list found for data resource id: ${id}" ] as JSON)
}
}
private parseDataFromCSV(CSVReader csvReader, String separator) {
def rawHeader = csvReader.readNext()
log.debug(rawHeader.toList()?.toString())
def parsedHeader = columnMatchingService.parseHeader(rawHeader) ?: helperService.parseData(rawHeader)
def processedHeader = parsedHeader.header
log.debug(processedHeader?.toString())
def dataRows = new ArrayList<String[]>()
def currentLine = csvReader.readNext()
for (int i = 0; i < noOfRowsToDisplay && currentLine != null; i++) {
dataRows.add(helperService.parseRow(currentLine.toList()))
currentLine = csvReader.readNext()
}
def nameColumns = columnMatchingService.speciesNameMatcher.names + columnMatchingService.commonNameMatcher.names
if (processedHeader.find {
it == "scientific name" || it == "vernacular name" || it == "common name" || it == "ambiguous name"
} && processedHeader.size() > 0) {
//grab all the unique values for the none scientific name fields to supply for potential vocabularies
try {
def listProperties = helperService.parseValues(processedHeader as String[], csvReader, separator)
log.debug("names - " + listProperties)
render(view: 'parsedData', model: [columnHeaders: processedHeader, dataRows: dataRows,
listProperties: listProperties, listTypes: ListType.values(),
nameFound: parsedHeader.nameFound, nameColumns: nameColumns])
} catch (Exception e) {
log.debug(e.getMessage())
render(view: 'parsedData', model: [error: e.getMessage()])
}
} else {
render(view: 'parsedData', model: [columnHeaders: processedHeader, dataRows: dataRows,
listTypes: ListType.values(), nameFound: parsedHeader.nameFound,
nameColumns: nameColumns])
}
}
private boolean isMultipartRequest() {
request instanceof MultipartHttpServletRequest
}
/**
* Check if user is either owner, admin or on the specieslist's editors list.
*/
private boolean isCurrentUserEditorForList(SpeciesList sl) {
def isAllowed = false
def loggedInUser = authService.userId
log.debug "Checking isCurrentUserEditorForList: loggedInUser = " + loggedInUser
if (!sl) {
log.debug "speciesList is null"
isAllowed = false // saves repeating this check in subsequent else if
} else if (sl.userId == loggedInUser) {
log.debug "user is owner"
isAllowed = true
} else if (localAuthService.isAdmin()) {
log.debug "user is ADMIN"
isAllowed = true
} else if (sl.editors.any { it == loggedInUser}) {
log.debug "user is in editors list: " + sl.editors.join("|")
isAllowed = true
}
log.debug "isAllowed = " + isAllowed
return isAllowed
}
/**
* Check if list is public OR private and user is either owner, admin or on the specieslist's editors list.
*/
private boolean isViewable(SpeciesList sl) {
def isAllowed = false
def hidePrivateLists = grailsApplication.config.getProperty('publicview.hidePrivateLists', Boolean, false)
def loggedInUser = authService.userId
log.debug "Checking isCurrentUserEditorForList: loggedInUser = " + loggedInUser
if (!sl) {
log.debug "speciesList is null"
isAllowed = false // saves repeating this check in subsequent else if
} else if (!sl.isPrivate || !hidePrivateLists) {
isAllowed = true
} else if (sl.userId == loggedInUser) {
log.debug "user is owner"
isAllowed = true
} else if (localAuthService.isAdmin()) {
log.debug "user is ADMIN"
isAllowed = true
} else if (sl.editors.any { it == loggedInUser}) {
log.debug "user is in editors list: " + sl.editors.join("|")
isAllowed = true
}
log.debug "isAllowed = " + isAllowed
return isAllowed
}
}