mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
Complete User and Role Migration in Tool
This commit is contained in:
parent
b1058db213
commit
2ca45d30df
|
@ -118,7 +118,7 @@ public string FullBuildString
|
|||
}
|
||||
}
|
||||
|
||||
public string GenerateLabUrl() => Lab.Replace('/', '-').ToLower();
|
||||
public string GenerateLabUrl() => (Lab ?? "").Replace('/', '-').ToLower();
|
||||
}
|
||||
|
||||
public class Build
|
||||
|
|
|
@ -26,6 +26,8 @@ public class BuildModel
|
|||
public DateTime? LeakDate { get; set; }
|
||||
public MongoLevelOfFlight FlightLevel { get; set; }
|
||||
|
||||
public string LabUrl { get; set; }
|
||||
|
||||
public bool IsLeaked
|
||||
{
|
||||
get
|
||||
|
@ -68,6 +70,8 @@ public string FullBuildString
|
|||
return sb.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
public string GenerateLabUrl() => (Lab ?? "").Replace('/', '-').ToLower();
|
||||
}
|
||||
|
||||
public class Build
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using MongoDB.Bson;
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using MongoDB.Driver;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
@ -7,7 +9,7 @@
|
|||
|
||||
namespace RedisMongoMigration.Mongo
|
||||
{
|
||||
public class MongoMember
|
||||
public class MemberModel
|
||||
{
|
||||
[BsonId]
|
||||
public Guid Id { get; set; }
|
||||
|
@ -28,4 +30,42 @@ public class MongoMember
|
|||
public DateTime LockoutWindowStart { get; set; }
|
||||
public int LockoutWindowAttempts { get; set; }
|
||||
}
|
||||
|
||||
public class MongoMember
|
||||
{
|
||||
private const string _buildCollectionName = "members";
|
||||
|
||||
private MongoClient _dbClient;
|
||||
private IMongoCollection<MemberModel> _buildCollection;
|
||||
|
||||
public MongoMember()
|
||||
{
|
||||
_dbClient = new MongoClient(new MongoClientSettings()
|
||||
{
|
||||
Server = new MongoServerAddress("localhost", 27017)
|
||||
});
|
||||
|
||||
_buildCollection = _dbClient.GetDatabase("BuildFeed").GetCollection<MemberModel>(_buildCollectionName);
|
||||
}
|
||||
|
||||
public List<MemberModel> Select()
|
||||
{
|
||||
var task = _buildCollection.Find(new BsonDocument()).ToListAsync();
|
||||
task.Wait();
|
||||
return task.Result;
|
||||
}
|
||||
|
||||
public void Insert(MemberModel item)
|
||||
{
|
||||
item.Id = Guid.NewGuid();
|
||||
var task = _buildCollection.InsertOneAsync(item);
|
||||
task.Wait();
|
||||
}
|
||||
|
||||
public void InsertAll(IEnumerable<MemberModel> items)
|
||||
{
|
||||
var task = _buildCollection.InsertManyAsync(items);
|
||||
task.Wait();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using MongoDB.Bson;
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using MongoDB.Driver;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
@ -7,7 +9,7 @@
|
|||
|
||||
namespace RedisMongoMigration.Mongo
|
||||
{
|
||||
public class MongoRole
|
||||
public class RoleModel
|
||||
{
|
||||
[BsonId]
|
||||
public Guid Id { get; set; }
|
||||
|
@ -16,4 +18,42 @@ public class MongoRole
|
|||
|
||||
public Guid[] Users { get; set; }
|
||||
}
|
||||
|
||||
public class MongoRole
|
||||
{
|
||||
private const string _buildCollectionName = "roles";
|
||||
|
||||
private MongoClient _dbClient;
|
||||
private IMongoCollection<RoleModel> _buildCollection;
|
||||
|
||||
public MongoRole()
|
||||
{
|
||||
_dbClient = new MongoClient(new MongoClientSettings()
|
||||
{
|
||||
Server = new MongoServerAddress("localhost", 27017)
|
||||
});
|
||||
|
||||
_buildCollection = _dbClient.GetDatabase("BuildFeed").GetCollection<RoleModel>(_buildCollectionName);
|
||||
}
|
||||
|
||||
public List<RoleModel> Select()
|
||||
{
|
||||
var task = _buildCollection.Find(new BsonDocument()).ToListAsync();
|
||||
task.Wait();
|
||||
return task.Result;
|
||||
}
|
||||
|
||||
public void Insert(RoleModel item)
|
||||
{
|
||||
item.Id = Guid.NewGuid();
|
||||
var task = _buildCollection.InsertOneAsync(item);
|
||||
task.Wait();
|
||||
}
|
||||
|
||||
public void InsertAll(IEnumerable<RoleModel> items)
|
||||
{
|
||||
var task = _buildCollection.InsertManyAsync(items);
|
||||
task.Wait();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,8 +9,10 @@
|
|||
using RBuild = RedisMongoMigration.Redis.Build;
|
||||
using MongoLevelOfFlight = RedisMongoMigration.Mongo.MongoLevelOfFlight;
|
||||
using RedisLevelOfFlight = RedisMongoMigration.Redis.RedisLevelOfFlight;
|
||||
using MMember = RedisMongoMigration.Mongo.MongoMember;
|
||||
using MMemberModel = RedisMongoMigration.Mongo.MemberModel;
|
||||
using RMember = RedisMongoMigration.Redis.RedisMember;
|
||||
using MMember = RedisMongoMigration.Mongo.MongoMember;
|
||||
using MRoleModel = RedisMongoMigration.Mongo.RoleModel;
|
||||
using RRole = RedisMongoMigration.Redis.RedisRole;
|
||||
using MRole = RedisMongoMigration.Mongo.MongoRole;
|
||||
|
||||
|
@ -38,14 +40,16 @@ static void Main(string[] args)
|
|||
SourceType = b.SourceType,
|
||||
SourceDetails = b.SourceDetails,
|
||||
LeakDate = b.LeakDate,
|
||||
FlightLevel = ExchangeFlights(b.FlightLevel)
|
||||
FlightLevel = ExchangeFlights(b.FlightLevel),
|
||||
|
||||
LabUrl = b.GenerateLabUrl()
|
||||
};
|
||||
MBuild m = new MBuild();
|
||||
m.InsertAll(builds);
|
||||
MBuild mb = new MBuild();
|
||||
mb.InsertAll(builds);
|
||||
Console.WriteLine("Builds: Complete");
|
||||
|
||||
var members = from r in RMember.Select()
|
||||
select new MMember()
|
||||
select new MMemberModel()
|
||||
{
|
||||
CreationDate = r.CreationDate,
|
||||
EmailAddress = r.EmailAddress,
|
||||
|
@ -61,15 +65,19 @@ static void Main(string[] args)
|
|||
PassSalt = r.PassSalt,
|
||||
UserName = r.UserName
|
||||
};
|
||||
MMember mm = new MMember();
|
||||
mm.InsertAll(members);
|
||||
Console.WriteLine("Members: Complete");
|
||||
|
||||
var roles = from r in RRole.Select()
|
||||
select new MRole()
|
||||
select new MRoleModel()
|
||||
{
|
||||
Id = r.Id,
|
||||
RoleName = r.RoleName,
|
||||
Users = r.Users
|
||||
};
|
||||
MRole mr = new MRole();
|
||||
mr.InsertAll(roles);
|
||||
Console.WriteLine("Roles: Complete");
|
||||
|
||||
Console.ReadKey();
|
||||
|
|
|
@ -72,6 +72,8 @@ public string FullBuildString
|
|||
}
|
||||
}
|
||||
|
||||
public string GenerateLabUrl() => (Lab ?? "").Replace('/', '-').ToLower();
|
||||
|
||||
public static IEnumerable<Build> Select()
|
||||
{
|
||||
using (RedisClient rClient = new RedisClient("localhost", 6379, db: 1))
|
||||
|
|
Loading…
Reference in New Issue
Block a user