2016-07-15 21:39:30 +08:00
|
|
|
|
using System;
|
2014-12-16 22:43:26 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
2015-09-12 07:45:17 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2014-12-16 22:43:26 +08:00
|
|
|
|
using System.Web.Mvc;
|
2016-07-15 21:39:30 +08:00
|
|
|
|
using MongoDB.Bson;
|
|
|
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
|
using MongoDB.Driver;
|
2014-12-16 22:43:26 +08:00
|
|
|
|
using Required = System.ComponentModel.DataAnnotations.RequiredAttribute;
|
|
|
|
|
|
2016-08-20 05:10:55 +08:00
|
|
|
|
namespace BuildFeed.Model
|
2014-12-16 22:43:26 +08:00
|
|
|
|
{
|
2015-09-12 07:45:17 +08:00
|
|
|
|
[DataObject]
|
|
|
|
|
public class MetaItemModel
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
[BsonId]
|
|
|
|
|
[@Required]
|
|
|
|
|
public MetaItemKey Id { get; set; }
|
|
|
|
|
|
2016-07-15 21:39:30 +08:00
|
|
|
|
[DisplayName("Meta Description")]
|
|
|
|
|
public string MetaDescription { get; set; }
|
|
|
|
|
|
2015-09-12 07:45:17 +08:00
|
|
|
|
[DisplayName("Page Content")]
|
|
|
|
|
[AllowHtml]
|
|
|
|
|
public string PageContent { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class MetaItem
|
|
|
|
|
{
|
2016-10-04 06:06:40 +08:00
|
|
|
|
private const string META_COLLECTION_NAME = "metaitem";
|
2016-11-05 09:36:36 +08:00
|
|
|
|
private readonly BuildRepository _bModel;
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
2016-07-15 21:39:30 +08:00
|
|
|
|
private readonly IMongoCollection<MetaItemModel> _metaCollection;
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
public MetaItem()
|
|
|
|
|
{
|
2016-10-04 06:06:40 +08:00
|
|
|
|
MongoClientSettings settings = new MongoClientSettings
|
2015-09-12 07:45:17 +08:00
|
|
|
|
{
|
|
|
|
|
Server = new MongoServerAddress(MongoConfig.Host, MongoConfig.Port)
|
2016-10-04 06:06:40 +08:00
|
|
|
|
};
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
2016-10-04 06:06:40 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(MongoConfig.Username) && !string.IsNullOrEmpty(MongoConfig.Password))
|
|
|
|
|
{
|
|
|
|
|
settings.Credentials = new List<MongoCredential>
|
|
|
|
|
{
|
|
|
|
|
MongoCredential.CreateCredential(MongoConfig.Database, MongoConfig.Username, MongoConfig.Password)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MongoClient dbClient = new MongoClient(settings);
|
|
|
|
|
|
|
|
|
|
_metaCollection = dbClient.GetDatabase(MongoConfig.Database).GetCollection<MetaItemModel>(META_COLLECTION_NAME);
|
|
|
|
|
_bModel = new BuildRepository();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Select, false)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task<IEnumerable<MetaItemModel>> Select()
|
|
|
|
|
{
|
|
|
|
|
return await _metaCollection.Find(new BsonDocument()).ToListAsync();
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Select, true)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task<IEnumerable<MetaItemModel>> SelectByType(MetaType type)
|
|
|
|
|
{
|
|
|
|
|
return await _metaCollection.Find(f => f.Id.Type == type).ToListAsync();
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Select, false)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task<MetaItemModel> SelectById(MetaItemKey id)
|
|
|
|
|
{
|
|
|
|
|
return await _metaCollection.Find(f => (f.Id.Type == id.Type) && (f.Id.Value == id.Value)).SingleOrDefaultAsync();
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Select, false)]
|
|
|
|
|
public async Task<IEnumerable<string>> SelectUnusedLabs()
|
|
|
|
|
{
|
2016-10-04 06:06:40 +08:00
|
|
|
|
string[] labs = await _bModel.SelectAllLabs();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
2016-07-15 21:39:30 +08:00
|
|
|
|
List<MetaItemModel> usedLabs = await _metaCollection.Find(f => f.Id.Type == MetaType.Lab).ToListAsync();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
return from l in labs
|
|
|
|
|
where usedLabs.All(ul => ul.Id.Value != l)
|
|
|
|
|
select l;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Select, false)]
|
|
|
|
|
public async Task<IEnumerable<string>> SelectUnusedVersions()
|
|
|
|
|
{
|
2016-10-04 06:06:40 +08:00
|
|
|
|
BuildVersion[] versions = await _bModel.SelectAllVersions();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
2016-07-15 21:39:30 +08:00
|
|
|
|
List<MetaItemModel> usedVersions = await _metaCollection.Find(f => f.Id.Type == MetaType.Version).ToListAsync();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
return from v in versions
|
|
|
|
|
where usedVersions.All(ul => ul.Id.Value != v.ToString())
|
|
|
|
|
select v.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Select, false)]
|
|
|
|
|
public async Task<IEnumerable<string>> SelectUnusedYears()
|
|
|
|
|
{
|
2016-10-04 06:06:40 +08:00
|
|
|
|
int[] years = await _bModel.SelectAllYears();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
2016-07-15 21:39:30 +08:00
|
|
|
|
List<MetaItemModel> usedYears = await _metaCollection.Find(f => f.Id.Type == MetaType.Year).ToListAsync();
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
return from y in years
|
|
|
|
|
where usedYears.All(ul => ul.Id.Value != y.ToString())
|
|
|
|
|
select y.ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Insert, true)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task Insert(MetaItemModel item)
|
|
|
|
|
{
|
|
|
|
|
await _metaCollection.InsertOneAsync(item);
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Update, true)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task Update(MetaItemModel item)
|
|
|
|
|
{
|
|
|
|
|
await _metaCollection.ReplaceOneAsync(f => (f.Id.Type == item.Id.Type) && (f.Id.Value == item.Id.Value), item);
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Insert, false)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task InsertAll(IEnumerable<MetaItemModel> items)
|
|
|
|
|
{
|
|
|
|
|
await _metaCollection.InsertManyAsync(items);
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
[DataObjectMethod(DataObjectMethodType.Delete, true)]
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public async Task DeleteById(MetaItemKey id)
|
|
|
|
|
{
|
|
|
|
|
await _metaCollection.DeleteOneAsync(f => (f.Id.Type == id.Type) && (f.Id.Value == id.Value));
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class MetaItemKey
|
|
|
|
|
{
|
|
|
|
|
public MetaType Type { get; set; }
|
2016-07-15 21:39:30 +08:00
|
|
|
|
public string Value { get; set; }
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public MetaItemKey()
|
|
|
|
|
{
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
|
|
|
|
|
public MetaItemKey(string id)
|
|
|
|
|
{
|
2016-07-15 21:39:30 +08:00
|
|
|
|
string[] items = id.Split(':');
|
2015-09-12 07:45:17 +08:00
|
|
|
|
Type = (MetaType)Enum.Parse(typeof(MetaType), items[0]);
|
|
|
|
|
Value = items[1];
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-05 09:36:36 +08:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return $"{Type}:{Value}";
|
|
|
|
|
}
|
2015-09-12 07:45:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum MetaType
|
|
|
|
|
{
|
|
|
|
|
Lab,
|
|
|
|
|
Version,
|
|
|
|
|
Source,
|
|
|
|
|
Year
|
|
|
|
|
}
|
2014-12-16 22:43:26 +08:00
|
|
|
|
}
|