-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from Team-Wilhelm/populating-real-data
Populating more realistic data
- Loading branch information
Showing
8 changed files
with
263 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,172 +54,4 @@ protected override void OnModelCreating(ModelBuilder modelBuilder) | |
|
||
base.OnModelCreating(modelBuilder); | ||
} | ||
|
||
public async Task SeedDevelopmentDataAsync(IServiceScope scope, string defaultPlantImage) | ||
{ | ||
var userRepository = scope.ServiceProvider.GetRequiredService<UserRepository>(); | ||
await userRepository.CreateUser(new RegisterUserDto | ||
{ | ||
Email = "[email protected]", | ||
Password = "password", | ||
Username = "bob" | ||
}); | ||
|
||
var collectionsRepository = scope.ServiceProvider.GetRequiredService<CollectionsRepository>(); | ||
var collection1 = await collectionsRepository.CreateCollection( | ||
new Collection | ||
{ | ||
CollectionId = Guid.NewGuid(), | ||
Name = "Succulents", | ||
UserEmail = "[email protected]", | ||
} | ||
); | ||
var collection2 = await collectionsRepository.CreateCollection( | ||
new Collection | ||
{ | ||
CollectionId = Guid.NewGuid(), | ||
Name = "Cacti", | ||
UserEmail = "[email protected]", | ||
} | ||
); | ||
|
||
var plantRepository = scope.ServiceProvider.GetRequiredService<PlantRepository>(); | ||
await plantRepository.CreatePlant( | ||
new Plant | ||
{ | ||
PlantId = Guid.NewGuid(), | ||
Nickname = "Aloe Vera", | ||
UserEmail = "[email protected]", | ||
ImageUrl = defaultPlantImage, | ||
CollectionId = collection1.CollectionId, | ||
LatestChange = DateTime.UtcNow.Subtract(TimeSpan.FromDays(5)) | ||
} | ||
); | ||
|
||
await plantRepository.CreatePlant( | ||
new Plant | ||
{ | ||
PlantId = Guid.NewGuid(), | ||
Nickname = "Prickly Pear", | ||
UserEmail = "[email protected]", | ||
ImageUrl = defaultPlantImage, | ||
CollectionId = collection2.CollectionId, | ||
LatestChange = DateTime.UtcNow.Subtract(TimeSpan.FromDays(7)) | ||
} | ||
); | ||
|
||
await plantRepository.CreatePlant( | ||
new Plant | ||
{ | ||
PlantId = Guid.NewGuid(), | ||
Nickname = "Dying plant", | ||
UserEmail = "[email protected]", | ||
ImageUrl = defaultPlantImage, | ||
CollectionId = collection2.CollectionId, | ||
LatestChange = DateTime.UtcNow | ||
} | ||
); | ||
|
||
var plants = await plantRepository.GetPlantsForUser("[email protected]", 1, 5); | ||
|
||
var requirementsRepository = scope.ServiceProvider.GetRequiredService<RequirementsRepository>(); | ||
await requirementsRepository.CreateRequirements( | ||
new Requirements | ||
{ | ||
RequirementsId = Guid.NewGuid(), | ||
PlantId = plants.First(p => p.Nickname == "Aloe Vera").PlantId, | ||
LightLevel = RequirementLevel.Low, | ||
SoilMoistureLevel = RequirementLevel.Medium, | ||
HumidityLevel = RequirementLevel.High, | ||
TemperatureLevel = 22, | ||
} | ||
); | ||
|
||
await requirementsRepository.CreateRequirements( | ||
new Requirements | ||
{ | ||
RequirementsId = Guid.NewGuid(), | ||
PlantId = plants.First(p => p.Nickname == "Prickly Pear").PlantId, | ||
LightLevel = RequirementLevel.High, | ||
SoilMoistureLevel = RequirementLevel.Low, | ||
HumidityLevel = RequirementLevel.Low, | ||
TemperatureLevel = 27, | ||
} | ||
); | ||
|
||
await requirementsRepository.CreateRequirements( | ||
new Requirements | ||
{ | ||
RequirementsId = Guid.NewGuid(), | ||
PlantId = plants.First(p => p.Nickname == "Dying plant").PlantId, | ||
LightLevel = RequirementLevel.High, | ||
SoilMoistureLevel = RequirementLevel.Low, | ||
HumidityLevel = RequirementLevel.Medium, | ||
TemperatureLevel = 24, | ||
} | ||
); | ||
|
||
var conditionsLogRepository = scope.ServiceProvider.GetRequiredService<ConditionsLogsRepository>(); | ||
|
||
for (var i = 0; i < 100; i++) | ||
{ | ||
await conditionsLogRepository.CreateConditionsLogAsync( | ||
GetRandomConditionsLog(plants.First(p => p.Nickname == "Prickly Pear").PlantId, i * 6) | ||
); | ||
await conditionsLogRepository.CreateConditionsLogAsync( | ||
GetRandomConditionsLog(plants.First(p => p.Nickname == "Aloe Vera").PlantId, i * 6) | ||
); | ||
} | ||
|
||
await conditionsLogRepository.CreateConditionsLogAsync( | ||
new ConditionsLog() | ||
{ | ||
ConditionsId = Guid.NewGuid(), | ||
PlantId = plants.First(p => p.Nickname == "Dying plant").PlantId, | ||
TimeStamp = DateTime.UtcNow, | ||
Mood = 0, | ||
SoilMoisture = 55, | ||
Light = 13, | ||
Humidity = 68, | ||
Temperature = 25, | ||
} | ||
); | ||
|
||
Console.ForegroundColor = ConsoleColor.Green; | ||
Console.WriteLine("Seeded development data"); | ||
Console.ResetColor(); | ||
} | ||
|
||
private double GetRandomLevelValue() | ||
{ | ||
var random = new Random(); | ||
return random.NextDouble() * 100; | ||
} | ||
|
||
private int GetRandomMood() | ||
{ | ||
var random = new Random(); | ||
return random.Next(0, 5); | ||
} | ||
|
||
private int GetRandomTemperature() | ||
{ | ||
var random = new Random(); | ||
return random.Next(-20, 45); | ||
} | ||
|
||
private ConditionsLog GetRandomConditionsLog(Guid plantId, int hoursAgo = 0) | ||
{ | ||
return new ConditionsLog | ||
{ | ||
ConditionsId = Guid.NewGuid(), | ||
PlantId = plantId, | ||
TimeStamp = DateTime.UtcNow.Subtract(TimeSpan.FromHours(hoursAgo)), | ||
Mood = GetRandomMood(), | ||
SoilMoisture = GetRandomLevelValue(), | ||
Light = GetRandomLevelValue(), | ||
Temperature = GetRandomTemperature(), | ||
Humidity = GetRandomLevelValue(), | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
api/WebSocketConnectionService.cs → ...re/Services/WebSocketConnectionService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
using Fleck; | ||
using Shared; | ||
using Shared.Wrappers; | ||
|
||
namespace api; | ||
|
Oops, something went wrong.