2016-05-21 23:16:22 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-12-09 04:57:38 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2017-03-09 03:45:08 +01:00
|
|
|
|
using Bit.Core.Models.Table;
|
2017-03-18 05:02:06 +01:00
|
|
|
|
using Core.Models.Data;
|
2015-12-09 04:57:38 +01:00
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Repositories
|
|
|
|
|
{
|
2016-05-21 23:16:22 +02:00
|
|
|
|
public interface ICipherRepository : IRepository<Cipher, Guid>
|
2015-12-09 04:57:38 +01:00
|
|
|
|
{
|
2017-03-18 16:58:02 +01:00
|
|
|
|
Task<CipherDetails> GetByIdAsync(Guid id, Guid userId);
|
2017-03-18 05:02:06 +01:00
|
|
|
|
Task<ICollection<CipherDetails>> GetManyByUserIdAsync(Guid userId);
|
|
|
|
|
Task<ICollection<CipherDetails>> GetManyByTypeAndUserIdAsync(Enums.CipherType type, Guid userId);
|
|
|
|
|
Task<Tuple<ICollection<CipherDetails>, ICollection<Guid>>> GetManySinceRevisionDateAndUserIdWithDeleteHistoryAsync(
|
2017-03-01 04:51:29 +01:00
|
|
|
|
DateTime sinceRevisionDate, Guid userId);
|
2017-03-19 04:41:46 +01:00
|
|
|
|
Task CreateAsync(CipherDetails cipher);
|
|
|
|
|
Task ReplaceAsync(CipherDetails cipher);
|
|
|
|
|
Task UpsertAsync(CipherDetails cipher);
|
2017-03-21 05:04:39 +01:00
|
|
|
|
Task ReplaceAsync(Cipher obj, IEnumerable<Guid> subvaultIds);
|
2016-05-21 23:16:22 +02:00
|
|
|
|
Task UpdateUserEmailPasswordAndCiphersAsync(User user, IEnumerable<Cipher> ciphers);
|
|
|
|
|
Task CreateAsync(IEnumerable<Cipher> ciphers);
|
2015-12-09 04:57:38 +01:00
|
|
|
|
}
|
|
|
|
|
}
|