28e5901929
allows for attachments to be uploaded and associated with Device Batches
97 lines
3.9 KiB
C#
97 lines
3.9 KiB
C#
using Disco.Services;
|
|
using System;
|
|
|
|
namespace Disco.Web.Areas.API.Models.Attachment
|
|
{
|
|
public class _AttachmentModel
|
|
{
|
|
public string ParentId { get; set; }
|
|
public int Id { get; set; }
|
|
public string Author { get; set; }
|
|
public string AuthorId { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string Comments { get; set; }
|
|
public string DocumentTemplateId { get; set; }
|
|
public string DocumentTemplateDescription { get; set; }
|
|
public string Description
|
|
{
|
|
get
|
|
{
|
|
if (DocumentTemplateId != null && DocumentTemplateDescription != null)
|
|
return DocumentTemplateDescription;
|
|
else
|
|
return Comments;
|
|
}
|
|
}
|
|
public string Filename { get; set; }
|
|
public string MimeType { get; set; }
|
|
public long TimestampUnixEpoc { get { return Timestamp.ToUnixEpoc(); } }
|
|
public string TimestampFull { get { return Timestamp.ToFullDateTime(); } }
|
|
|
|
public static _AttachmentModel FromAttachment(Disco.Models.Repository.UserAttachment ua)
|
|
{
|
|
return new _AttachmentModel
|
|
{
|
|
ParentId = ua.UserId,
|
|
Id = ua.Id,
|
|
AuthorId = ua.TechUserId,
|
|
Author = ua.TechUser.ToStringFriendly(),
|
|
Timestamp = ua.Timestamp,
|
|
Comments = ua.Comments,
|
|
DocumentTemplateId = ua.DocumentTemplateId,
|
|
DocumentTemplateDescription = ua.DocumentTemplateId == null ? null : ua.DocumentTemplate.Description,
|
|
Filename = ua.Filename,
|
|
MimeType = ua.MimeType
|
|
};
|
|
}
|
|
public static _AttachmentModel FromAttachment(Disco.Models.Repository.JobAttachment ja)
|
|
{
|
|
return new _AttachmentModel
|
|
{
|
|
ParentId = ja.JobId.ToString(),
|
|
Id = ja.Id,
|
|
AuthorId = ja.TechUserId,
|
|
Author = ja.TechUser.ToStringFriendly(),
|
|
Timestamp = ja.Timestamp,
|
|
Comments = ja.Comments,
|
|
DocumentTemplateId = ja.DocumentTemplateId,
|
|
DocumentTemplateDescription = ja.DocumentTemplateId == null ? null : ja.DocumentTemplate.Description,
|
|
Filename = ja.Filename,
|
|
MimeType = ja.MimeType
|
|
};
|
|
}
|
|
public static _AttachmentModel FromAttachment(Disco.Models.Repository.DeviceAttachment da)
|
|
{
|
|
return new _AttachmentModel
|
|
{
|
|
ParentId = da.DeviceSerialNumber,
|
|
Id = da.Id,
|
|
AuthorId = da.TechUserId,
|
|
Author = da.TechUser.ToStringFriendly(),
|
|
Timestamp = da.Timestamp,
|
|
Comments = da.Comments,
|
|
DocumentTemplateId = da.DocumentTemplateId,
|
|
DocumentTemplateDescription = da.DocumentTemplateId == null ? null : da.DocumentTemplate.Description,
|
|
Filename = da.Filename,
|
|
MimeType = da.MimeType
|
|
};
|
|
}
|
|
public static _AttachmentModel FromAttachment(Disco.Models.Repository.DeviceBatchAttachment attachment)
|
|
{
|
|
return new _AttachmentModel
|
|
{
|
|
ParentId = attachment.DeviceBatchId.ToString(),
|
|
Id = attachment.Id,
|
|
AuthorId = attachment.TechUserId,
|
|
Author = attachment.TechUser.ToStringFriendly(),
|
|
Timestamp = attachment.Timestamp,
|
|
Comments = attachment.Comments,
|
|
DocumentTemplateId = null, // not supported for DeviceBatchAttachment
|
|
DocumentTemplateDescription = null, // not supported for DeviceBatchAttachment
|
|
Filename = attachment.Filename,
|
|
MimeType = attachment.MimeType
|
|
};
|
|
}
|
|
|
|
}
|
|
} |