e9042f7666
Dynamic device importing. better input parsing and 5 additional import fields.
107 lines
4.2 KiB
C#
107 lines
4.2 KiB
C#
using Disco.Data.Repository;
|
|
using Disco.Models.Repository;
|
|
using Disco.Models.Services.Devices.Importing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
|
|
namespace Disco.Services.Devices.Importing.Fields
|
|
{
|
|
internal class BatchIdImportField : DeviceImportFieldBase
|
|
{
|
|
private int? parsedValue;
|
|
private string friendlyValue;
|
|
private string friendlyPreviousValue;
|
|
|
|
public override DeviceImportFieldTypes FieldType { get { return DeviceImportFieldTypes.BatchId; } }
|
|
|
|
public override object RawParsedValue { get { return parsedValue; } }
|
|
public override string FriendlyValue { get { return friendlyValue; } }
|
|
public override string FriendlyPreviousValue { get { return friendlyPreviousValue; } }
|
|
|
|
public override bool Parse(DiscoDataContext Database, IDeviceImportCache Cache, DeviceImportContext Context, int RecordIndex, string DeviceSerialNumber, Device ExistingDevice, Dictionary<DeviceImportFieldTypes, string> Values, string Value)
|
|
{
|
|
friendlyValue = Value;
|
|
|
|
// Validate
|
|
if (string.IsNullOrWhiteSpace(Value))
|
|
this.parsedValue = null; // Default = null
|
|
else
|
|
{
|
|
int valueInt;
|
|
if (int.TryParse(Value, out valueInt))
|
|
this.parsedValue = valueInt;
|
|
else
|
|
return Error("The Batch Identifier must be a number");
|
|
}
|
|
|
|
if (this.parsedValue.HasValue)
|
|
{
|
|
var b = Cache.DeviceBatches.FirstOrDefault(db => db.Id == parsedValue);
|
|
if (b == null)
|
|
return Error(string.Format("The identifier ({0}) does not match any Device Batch", Value));
|
|
friendlyValue = string.Format("{0} [{1}]", b.Name, b.Id);
|
|
}
|
|
else
|
|
friendlyValue = null;
|
|
|
|
if (ExistingDevice == null)
|
|
return Success(EntityState.Added);
|
|
else if (ExistingDevice != null && ExistingDevice.DeviceBatchId != parsedValue)
|
|
{
|
|
DeviceBatch previousBatch = null;
|
|
if (ExistingDevice.DeviceBatchId.HasValue)
|
|
previousBatch = Cache.DeviceBatches.FirstOrDefault(db => db.Id == ExistingDevice.DeviceBatchId.Value);
|
|
|
|
if (previousBatch != null)
|
|
friendlyPreviousValue = string.Format("{0} [{1}]", previousBatch.Name, previousBatch.Id);
|
|
|
|
return Success(EntityState.Modified);
|
|
}
|
|
else
|
|
return Success(EntityState.Unchanged);
|
|
}
|
|
|
|
public override bool Apply(DiscoDataContext Database, Device Device)
|
|
{
|
|
if (this.FieldAction == EntityState.Added ||
|
|
this.FieldAction == EntityState.Modified)
|
|
{
|
|
Device.DeviceBatchId = this.parsedValue;
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public override int? GuessHeader(DiscoDataContext Database, DeviceImportContext Context)
|
|
{
|
|
// column name
|
|
var possibleColumns = Context.Header
|
|
.Select((h, i) => Tuple.Create(h, i))
|
|
.Where(h => h.Item1.Item2 == DeviceImportFieldTypes.IgnoreColumn && h.Item1.Item1.IndexOf("batch", System.StringComparison.OrdinalIgnoreCase) >= 0);
|
|
|
|
// All Integers Numbers
|
|
possibleColumns = possibleColumns.Where(h =>
|
|
{
|
|
int lastValue;
|
|
return Context.RawData.Select(v => v[h.Item2]).Take(100).Where(v => !string.IsNullOrWhiteSpace(v)).All(v => int.TryParse(v, out lastValue));
|
|
}).ToList();
|
|
|
|
// Multiple Columns, tighten column definition
|
|
if (possibleColumns.Count() > 1)
|
|
{
|
|
possibleColumns = possibleColumns
|
|
.Where(h =>
|
|
h.Item1.Item1.IndexOf("batchid", StringComparison.OrdinalIgnoreCase) >= 0 ||
|
|
h.Item1.Item1.IndexOf("batch id", StringComparison.OrdinalIgnoreCase) >= 0);
|
|
}
|
|
|
|
return possibleColumns.Select(h => (int?)h.Item2).FirstOrDefault();
|
|
}
|
|
}
|
|
}
|