Nick Clemens
f927d80112
We don't seem to directly handle the errors in most cases, let's always return the record To test: 1 - Add some blank lines to editor, previous patch is okay with this 2 - Add a line with just 'e' or some other incomplete field 3 - Try to save 4 - Note JS leader error 5 - Apply this patch 6 - No errors Signed-off-by: Liz Rea <wizzyrea@gmail.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
102 lines
3.7 KiB
JavaScript
102 lines
3.7 KiB
JavaScript
/**
|
|
* Copyright 2015 ByWater Solutions
|
|
*
|
|
* This file is part of Koha.
|
|
*
|
|
* Koha is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Koha is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
*/
|
|
|
|
define( [ 'marc-record' ], function( MARC ) {
|
|
return {
|
|
RecordToText: function( record ) {
|
|
var lines = [];
|
|
var fields = record.fields();
|
|
|
|
for ( var i = 0; i < fields.length; i++ ) {
|
|
var field = fields[i];
|
|
|
|
if ( field.isControlField() ) {
|
|
lines.push( field.tagnumber() + ' ' + field.subfield('@') );
|
|
} else {
|
|
var result = [ field.tagnumber() + ' ' ];
|
|
|
|
result.push( field.indicator(0) == ' ' ? '_' : field.indicator(0), ' ' );
|
|
result.push( field.indicator(1) == ' ' ? '_' : field.indicator(1), ' ' );
|
|
|
|
$.each( field.subfields(), function( i, subfield ) {
|
|
result.push( '‡' + subfield[0] + subfield[1] );
|
|
} );
|
|
|
|
lines.push( result.join('') );
|
|
}
|
|
}
|
|
|
|
return lines.join('\n');
|
|
},
|
|
|
|
TextToRecord: function( text ) {
|
|
var record = new MARC.Record();
|
|
var errors = [];
|
|
$.each( text.split('\n'), function( i, line ) {
|
|
if (line === "") {return};
|
|
var tagNumber = line.match( /^([A-Za-z0-9]{3}) / );
|
|
if ( !tagNumber ) {
|
|
errors.push( { type: 'noTag', line: i } );
|
|
return;
|
|
}
|
|
tagNumber = tagNumber[1];
|
|
|
|
if ( tagNumber < '010' ) {
|
|
var field = new MARC.Field( tagNumber, ' ', ' ', [ [ '@', line.substring( 4 ) ] ] );
|
|
field.sourceLine = i;
|
|
record.addField( field );
|
|
} else {
|
|
var indicators = line.match( /^... ([0-9A-Za-z_ ]) ([0-9A-Za-z_ ])/ );
|
|
if ( !indicators ) {
|
|
errors.push( { type: 'noIndicators', line: i } );
|
|
return;
|
|
}
|
|
|
|
var field = new MARC.Field( tagNumber, ( indicators[1] == '_' ? ' ' : indicators[1] ), ( indicators[2] == '_' ? ' ' : indicators[2] ), [] );
|
|
|
|
var matcher = /‡([a-zA-Z0-9%])/g;
|
|
var match;
|
|
|
|
var subfields = [];
|
|
|
|
while ( ( match = matcher.exec(line) ) ) {
|
|
subfields.push( { code: match[1], ch: match.index } );
|
|
}
|
|
|
|
if ( !subfields.length ) {
|
|
errors.push( { type: 'noSubfields', line: i } );
|
|
return;
|
|
}
|
|
|
|
$.each( subfields, function( i, subfield ) {
|
|
var next = subfields[ i + 1 ];
|
|
|
|
field.addSubfield( [ subfield.code, line.substring( subfield.ch + 2, next ? next.ch : line.length ) ] );
|
|
} );
|
|
|
|
field.sourceLine = i;
|
|
record.addField( field );
|
|
}
|
|
} );
|
|
|
|
if( errors.length ) { record.errors = errors; }
|
|
return record;
|
|
}
|
|
};
|
|
} );
|