Files
server/src/Core/Services/IAttachmentStorageService.cs

21 lines
890 B
C#
Raw Normal View History

2017-07-10 17:08:50 -04:00
using Bit.Core.Models.Table;
using System;
2017-07-10 14:30:12 -04:00
using System.IO;
using System.Threading.Tasks;
namespace Bit.Core.Services
{
public interface IAttachmentStorageService
{
2017-07-10 17:08:50 -04:00
Task UploadNewAttachmentAsync(Stream stream, Cipher cipher, string attachmentId);
2017-07-10 14:30:12 -04:00
Task UploadShareAttachmentAsync(Stream stream, Guid cipherId, Guid organizationId, string attachmentId);
Task StartShareAttachmentAsync(Guid cipherId, Guid organizationId, string attachmentId);
Task RollbackShareAttachmentAsync(Guid cipherId, Guid organizationId, string attachmentId);
2017-07-10 20:48:06 -04:00
Task CleanupAsync(Guid cipherId);
2017-07-10 14:30:12 -04:00
Task DeleteAttachmentAsync(Guid cipherId, string attachmentId);
2017-07-10 20:48:06 -04:00
Task DeleteAttachmentsForCipherAsync(Guid cipherId);
Task DeleteAttachmentsForOrganizationAsync(Guid organizationId);
Task DeleteAttachmentsForUserAsync(Guid userId);
}
}