mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
permissions, user-side permissions settings on datasets, viewing associated datasets under the role page in the admin controler (is this even necessary?), filtering out roles by type. I haven't addressed tests, so the security-related functional tests will fail. I haven't looked at history sharing yet either. Cleanup to remove unused methods is needed in the admin controller. And the admin templates are a bit messy.
55 lines
2.1 KiB
Python
55 lines
2.1 KiB
Python
import os, sys
|
|
|
|
from galaxy import datatypes, config, jobs
|
|
from shutil import copyfile
|
|
|
|
#post processing, set build for data and add additional data to history
|
|
def exec_after_process(app, inp_data, out_data, param_dict, tool, stdout, stderr):
|
|
base_dataset = out_data.items()[0][1]
|
|
history = base_dataset.history
|
|
if history == None:
|
|
print "unknown history!"
|
|
return
|
|
new_stdout = ""
|
|
split_stdout = stdout.split("\n")
|
|
basic_name = ""
|
|
for line in split_stdout:
|
|
fields = line.split("\t")
|
|
if fields[0] == "#File1":
|
|
description = fields[1]
|
|
dbkey = fields[2]
|
|
file_type = fields[3]
|
|
name, data = out_data.items()[0]
|
|
basic_name = data.name
|
|
data.name = data.name + " (" + description + ")"
|
|
data.dbkey = dbkey
|
|
data.info = data.name
|
|
data = app.datatypes_registry.change_datatype( data, file_type )
|
|
data.init_meta()
|
|
data.set_peek()
|
|
data.set_size()
|
|
app.model.flush()
|
|
elif fields[0] == "#NewFile":
|
|
description = fields[1]
|
|
dbkey = fields[2]
|
|
filepath = fields[3]
|
|
file_type = fields[4]
|
|
newdata = app.model.HistoryDatasetAssociation( create_dataset = True ) #This import should become a library
|
|
newdata.extension = file_type
|
|
newdata.name = basic_name + " (" + description + ")"
|
|
history.add_dataset( newdata )
|
|
app.security_agent.copy_dataset_permissions( base_dataset.dataset, newdata.dataset )
|
|
app.model.flush()
|
|
try:
|
|
copyfile(filepath,newdata.file_name)
|
|
newdata.info = newdata.name
|
|
newdata.state = jobs.JOB_OK
|
|
except:
|
|
newdata.info = "The requested file is missing from the system."
|
|
newdata.state = jobs.JOB_ERROR
|
|
newdata.dbkey = dbkey
|
|
newdata.set_meta()
|
|
newdata.set_peek()
|
|
newdata.set_size()
|
|
app.model.flush()
|