const $ = require('jquery');
const { Context } = require('../../core/context');
const { BagItProfile } = require('../../bagit/bagit_profile');
const { BagItProfileForm } = require('../forms/bagit_profile_form');
const { BagItUtil } = require('../../bagit/bagit_util');
const { BaseController } = require('./base_controller');
const { NewBagItProfileForm } = require('../forms/new_bagit_profile_form');
const request = require('request');
const { TagDefinition } = require('../../bagit/tag_definition');
const { TagDefinitionForm } = require('../forms/tag_definition_form');
const { TagFileForm } = require('../forms/tag_file_form');
const Templates = require('../common/templates');
const url = require('url');
const { Util } = require('../../core/util');
const typeMap = {
allowFetchTxt: 'boolean',
isBuiltIn: 'boolean',
tarDirMustMatchName: 'boolean',
userCanDelete: 'boolean'
}
class BagItProfileController extends BaseController {
constructor(params) {
super(params, 'Settings');
this.typeMap = typeMap;
this.model = BagItProfile;
this.formClass = BagItProfileForm;
this.formTemplate = Templates.bagItProfileForm;
this.listTemplate = Templates.bagItProfileList;
this.nameProperty = 'name';
this.defaultOrderBy = 'name';
this.defaultSortDirection = 'asc';
}
new() {
let form = new NewBagItProfileForm();
let html = Templates.bagItProfileNew({ form: form });
return this.containerContent(html);
}
create() {
let newProfile = this.getNewProfileFromBase();
newProfile.save();
this.params.set('id', newProfile.id);
return this.edit();
}
edit() {
let profile = BagItProfile.find(this.params.get('id'));
let opts = {
alertMessage: this.alertMessage || this.params.get('alertMessage')
};
this.alertMessage = null;
return this.containerContent(this._getPageHTML(profile, opts));
}
update() {
let profile = BagItProfile.find(this.params.get('id'));
let form = new BagItProfileForm(profile);
form.parseFromDOM();
if (!form.obj.validate()) {
let errors = this._getPageLevelErrors(form.obj);
let opts = {
errMessage: Context.y18n.__('Please correct the following errors.'),
errors: errors
}
return this.containerContent(this._getPageHTML(form.obj, opts));
}
this.alertMessage = Context.y18n.__(
"ObjectSaved_message",
Util.camelToTitle(profile.constructor.name),
profile.name);
profile.save();
return this.list();
}
_getPageHTML(profile, opts = {}) {
let errors = this._getPageLevelErrors(profile);
let tagsByFile = profile.tagsGroupedByFile();
let tagFileNames = Object.keys(tagsByFile).sort();
let data = {
bagItProfileId: profile.id,
form: new BagItProfileForm(profile),
tagFileNames: tagFileNames,
tagsByFile: tagsByFile
}
Object.assign(data, opts);
return this.formTemplate(data, Templates.renderOptions);
}
_getPageLevelErrors(profile) {
let errors = [];
if (!Util.isEmpty(profile.errors["name"])) {
errors.push(Context.y18n.__("About Tab: %s", profile.errors["name"]));
}
if (!Util.isEmpty(profile.errors["acceptBagItVersion"])) {
errors.push(Context.y18n.__("General Tab: %s", profile.errors["acceptBagItVersion"]));
}
if (!Util.isEmpty(profile.errors["manifestsAllowed"])) {
errors.push(Context.y18n.__("Manifests Tab: %s", profile.errors["manifestsAllowed"]));
}
if (!Util.isEmpty(profile.errors["serialization"])) {
errors.push(Context.y18n.__("Serialization Tab: %s", profile.errors["serialization"]));
}
if (!Util.isEmpty(profile.errors["acceptSerialization"])) {
errors.push(Context.y18n.__("Serialization Tab: %s", profile.errors["acceptSerialization"]));
}
if (!Util.isEmpty(profile.errors["tags"])) {
errors.push(Context.y18n.__("Tag Files Tab: %s", profile.errors["tags"]));
}
return errors;
}
getNewProfileFromBase() {
let newProfile = null;
let form = new NewBagItProfileForm();
form.parseFromDOM();
if(form.obj.baseProfile) {
let baseProfile = BagItProfile.find(form.obj.baseProfile);
newProfile = new BagItProfile();
Object.assign(newProfile, baseProfile);
newProfile.id = Util.uuid4();
newProfile.baseProfileId = baseProfile.id;
newProfile.isBuiltIn = false;
newProfile.userCanDelete = true;
newProfile.name = `Copy of ${baseProfile.name}`;
newProfile.description = `Customized version of ${baseProfile.name}`;
} else {
newProfile = new BagItProfile();
}
return newProfile;
}
newTagFile() {
let title = Context.y18n.__("New Tag File");
let form = new TagFileForm('custom-tags.txt');
let body = Templates.tagFileForm({
form: form,
bagItProfileId: this.params.get('id')
});
return this.modalContent(title, body);
}
newTagFileCreate() {
let title = Context.y18n.__("New Tag File");
let form = new TagFileForm();
form.parseFromDOM();
if (Util.isEmpty(form.obj.tagFileName)) {
$('#tagFileForm_tagFileNameError').text(Context.y18n.__('Tag file name is required'));
return this.noContent();
}
let profile = BagItProfile.find(this.params.get('id'));
if (profile.hasTagFile(form.obj.tagFileName)) {
$('#tagFileForm_tagFileNameError').text(Context.y18n.__('This profile already has a tag file called %s', form.obj.tagFileName));
return this.noContent();
}
profile.tags.push(new TagDefinition({
tagName: Context.y18n.__('New-Tag'),
tagFile: form.obj.tagFileName
}));
profile.save();
this.alertMessage = Context.y18n.__("New tag file %s is available from the Tag Files menu below.", form.obj.tagFileName);
return this.edit();
}
deleteTagDef() {
let profile = BagItProfile.find(this.params.get('id'));
let tagDef = profile.firstMatchingTag('id', this.params.get('tagDefId'));
let isLastTagInFile = false;
let tagsGroupedByFile = profile.tagsGroupedByFile();
let message = Context.y18n.__("Delete tag %s from this profile?", tagDef.tagName);
if (tagsGroupedByFile[tagDef.tagFile].length < 2) {
message += ' ' + Context.y18n.__(
"Deleting the last tag in the file will delete the tag file as well.")
isLastTagInFile = true;
}
if (confirm(message)) {
profile.tags = profile.tags.filter(t => t.id !== tagDef.id);
profile.save();
$(`tr[data-tag-id="${tagDef.id}"]`).remove();
if (isLastTagInFile) {
this.alertMessage = Context.y18n.__(
"Deleted tag %s and tag file %s",
tagDef.tagName, tagDef.tagFile);
return this.edit(profile);
}
}
return this.noContent();
}
importStart() {
let title = Context.y18n.__("Import BagIt Profile");
let body = Templates.bagItProfileImport();
return this.modalContent(title, body);
}
exportProfile() {
let profile = BagItProfile.find(this.params.get('id'));
let json = BagItUtil.profileToStandardJson(profile);
let title = Context.y18n.__(profile.name);
let body = Templates.bagItProfileExport({
profile: profile,
json: json
});
return this.modalContent(title, body);
}
postRenderCallback(fnName) {
let controller = this;
if (fnName == 'newTagFile' || fnName == 'newTagFileCreate') {
$('#tagFileForm_tagFileName').keydown(this._enterKeyHandler);
} else if (fnName == 'importStart') {
$('#importSourceUrl').click(this._importSourceUrlClick);
$('#importSourceTextArea').click(this._importSourceTextAreaClick);
$('#btnImport').click(function() { controller._importProfile() });
}
}
_importSourceUrlClick(e) {
$('#txtJsonContainer').hide();
$('#txtUrlContainer').show();
}
_importSourceTextAreaClick(e) {
$('#txtUrlContainer').hide();
$('#txtJsonContainer').show();
}
_importProfile() {
var importSource = $("input[name='importSource']:checked").val();
if (importSource == 'URL') {
this._importProfileFromUrl();
} else if (importSource == 'TextArea') {
this._importProfileFromTextArea();
}
}
_importProfileFromUrl() {
let controller = this;
let profileUrl = $("#txtUrl").val();
try {
new url.URL(profileUrl);
} catch (ex) {
alert(Context.y18n.__("Please enter a valid URL."));
}
request(profileUrl, function (error, response, body) {
if (error) {
let msg = Context.y18n.__("Error retrieving profile from %s: %s", profileUrl, error);
Context.logger.error(msg);
alert(msg);
} else if (response && response.statusCode == 200) {
controller._importWithErrHandling(body, profileUrl);
} else {
let statusCode = (response && response.statusCode) || Context.y18n.__('Unknown');
let msg = Context.y18n.__("Got response %s from %s", statusCode, profileUrl);
Context.logger.error(msg);
alert(msg);
}
});
}
_importProfileFromTextArea() {
let profileJson = $("#txtJson").val();
this._importWithErrHandling(profileJson);
}
_importWithErrHandling(json, profileUrl) {
try {
this._importProfileObject(json, profileUrl);
return true;
} catch (ex) {
let msg = Context.y18n.__("Error importing profile: %s", ex);
Context.logger.error(msg);
Context.logger.error(ex);
alert(msg);
return false;
}
}
_importProfileObject(json, profileUrl) {
let obj;
try {
obj = JSON.parse(json);
} catch (ex) {
let msg = Context.y18n.__("Error parsing JSON: %s. ", ex.message || ex);
if (profileUrl) {
msg += Context.y18n.__("Be sure the URL returned JSON, not HTML.");
}
throw msg;
}
let convertedProfile;
let profileType = BagItUtil.guessProfileType(obj);
switch (profileType) {
case 'dart':
convertedProfile = obj;
break;
case 'loc_ordered':
convertedProfile = BagItUtil.profileFromLOCOrdered(obj, profileUrl);
break;
case 'loc_unordered':
convertedProfile = BagItUtil.profileFromLOC(obj, profileUrl);
break;
case 'bagit_profiles':
convertedProfile = BagItUtil.profileFromStandardObject(obj);
break;
default:
alert(Context.y18n.__("DART does not recognize this BagIt Profile structure."));
}
if (convertedProfile) {
convertedProfile.save();
let params = new URLSearchParams({
id: convertedProfile.id,
alertMessage: Context.y18n.__("Imported BagIt profile. Please review the profile to ensure it is accurate.")
});
return this.redirect('BagItProfile', 'edit', params);
} else {
let msg = Context.y18n.__("Failed to import profile");
Context.logger.error(msg);
alert(msg);
}
}
_enterKeyHandler(e) {
if (e.keyCode == 13) {
e.stopPropagation();
e.preventDefault();
if (e.type == 'keydown') {
location.href = $('#newTagFileSave').attr('href');
}
}
}
}
module.exports.BagItProfileController = BagItProfileController;
module.exports.BagItProfileControllerTypeMap = typeMap;