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
|
package org.irods.mydrop.controller
import org.irods.jargon.core.connection.IRODSAccount
import org.irods.jargon.core.exception.CatNoAccessException
import org.irods.jargon.core.exception.DataNotFoundException
import org.irods.jargon.core.pub.CollectionAndDataObjectListAndSearchAO
import org.irods.jargon.core.pub.CollectionAuditAO
import org.irods.jargon.core.pub.DataObjectAuditAO
import org.irods.jargon.core.pub.IRODSAccessObjectFactory
import org.irods.jargon.core.pub.domain.DataObject
import org.irods.jargon.core.pub.io.IRODSFile
class AuditController {
IRODSAccessObjectFactory irodsAccessObjectFactory
IRODSAccount irodsAccount
/**
* Interceptor grabs IRODSAccount from the SecurityContextHolder
*/
def beforeInterceptor = [action:this.&auth]
def auth() {
if(!session["SPRING_SECURITY_CONTEXT"]) {
redirect(controller:"login", action:"login")
return false
}
irodsAccount = session["SPRING_SECURITY_CONTEXT"]
}
def afterInterceptor = {
log.debug("closing the session")
irodsAccessObjectFactory.closeSession()
}
def auditInfo = {
log.info("auditInfo()")
def absPath = params['absPath']
if (absPath == null) {
log.error "no absPath in request "
def message = message(code:"error.no.path.provided")
response.sendError(500,message)
}
def actionCode = params['actionCode']
if (actionCode == null) {
log.error "no actionCode in request"
def message = message(code:"error.no.id.provided")
response.sendError(500,message)
}
def timeStamp = params['timeStamp']
if (timeStamp == null) {
log.error "no timeStamp in request"
def message = message(code:"error.no.timestamp.provided")
response.sendError(500,message)
}
log.info("get object and audit for absPath: ${absPath} and actionCode: ${actionCode}")
CollectionAndDataObjectListAndSearchAO collectionAndDataObjectListAndSearchAO = irodsAccessObjectFactory.getCollectionAndDataObjectListAndSearchAO(irodsAccount)
def retObj = collectionAndDataObjectListAndSearchAO.getFullObjectForType(absPath)
def isDataObject = retObj instanceof DataObject
def auditedAction
try {
if (isDataObject) {
log.info("is a data object, get audit for it")
DataObjectAuditAO dataObjectAuditAO = irodsAccessObjectFactory.getDataObjectAuditAO(irodsAccount)
IRODSFile dataObjectFile = irodsAccessObjectFactory.getIRODSFileFactory(irodsAccount).instanceIRODSFile(absPath)
auditedAction = dataObjectAuditAO.getAuditedActionForDataObject(dataObjectFile, actionCode, timeStamp)
} else {
log.info("is a collection, get audit info for it")
CollectionAuditAO collectionAuditAO = irodsAccessObjectFactory.getCollectionAuditAO(irodsAccount)
IRODSFile collectionFile = irodsAccessObjectFactory.getIRODSFileFactory(irodsAccount).instanceIRODSFile(absPath)
auditedAction = collectionAuditAO.getAuditedActionForCollection(collectionFile, actionCode, timeStamp)
}
} catch (DataNotFoundException e) {
log.error("no audit data found")
response.sendError(500,e.message)
return
}
render(view:"auditInfo", model:[auditedAction:auditedAction])
}
def auditTable = {
def absPath = params['absPath']
if (absPath == null) {
log.error "no absPath in request for showAclDetails()"
def message = message(code:"error.no.path.provided")
response.sendError(500,message)
}
log.info("auditListDataObject for absPath: ${absPath}")
CollectionAndDataObjectListAndSearchAO collectionAndDataObjectListAndSearchAO = irodsAccessObjectFactory.getCollectionAndDataObjectListAndSearchAO(irodsAccount)
def retObj = collectionAndDataObjectListAndSearchAO.getFullObjectForType(absPath)
def isDataObject = retObj instanceof DataObject
try {
def auditedActions
if (isDataObject) {
log.info("is a data object, get audit for it")
DataObjectAuditAO dataObjectAuditAO = irodsAccessObjectFactory.getDataObjectAuditAO(irodsAccount)
IRODSFile dataObjectFile = irodsAccessObjectFactory.getIRODSFileFactory(irodsAccount).instanceIRODSFile(absPath)
auditedActions = dataObjectAuditAO.findAllAuditRecordsForDataObject(dataObjectFile, 0, 1000)
} else {
log.info("is a collection, get audit info for it")
CollectionAuditAO collectionAuditAO = irodsAccessObjectFactory.getCollectionAuditAO(irodsAccount)
IRODSFile dataObjectFile = irodsAccessObjectFactory.getIRODSFileFactory(irodsAccount).instanceIRODSFile(absPath)
auditedActions = collectionAuditAO.findAllAuditRecordsForCollection(dataObjectFile, 0, 1000)
}
render(view:"auditTable", model:[auditedActions:auditedActions])
return
} catch(CatNoAccessException cna) {
render(view:"auditNoAccess")
return
}
}
/**
* Load the audit details area for a data object, this will show the main form, and
* subsequently, the table will be loaded via AJAX
*/
def auditList = {
def absPath = params['absPath']
if (absPath == null) {
log.error "no absPath in request for showAclDetails()"
def message = message(code:"error.no.path.provided")
response.sendError(500,message)
}
log.info("auditListDataObject for absPath: ${absPath}")
CollectionAndDataObjectListAndSearchAO collectionAndDataObjectListAndSearchAO = irodsAccessObjectFactory.getCollectionAndDataObjectListAndSearchAO(irodsAccount)
def retObj = collectionAndDataObjectListAndSearchAO.getFullObjectForType(absPath)
def isDataObject = retObj instanceof DataObject
render(view:"auditDetails", model:[dataObject:retObj])
}
}
|