diff --git a/netxml2kml/Data/DatabaseContext.cs b/netxml2kml/Data/DatabaseContext.cs new file mode 100644 index 0000000..126f1fc --- /dev/null +++ b/netxml2kml/Data/DatabaseContext.cs @@ -0,0 +1,28 @@ +using Microsoft.EntityFrameworkCore; +using netxml2kml.Models; + +namespace netxml2kml.Data; + +public sealed class DatabaseContext : DbContext +{ + public DbSet WirelessNetworks { get; set; } = null!; + public DbSet WirelessClients { get; set; } = null!; + + private string DbPath { get; } + + public DatabaseContext() + { + var folder = Environment.SpecialFolder.LocalApplicationData; + var path = Path.Join(Environment.GetFolderPath(folder), "netxml2kml"); + + if (!Directory.Exists(path)) + { + Directory.CreateDirectory(path); + } + + DbPath = Path.Join(path, "netxml2kml.sqlite3.db"); + } + + protected override void OnConfiguring(DbContextOptionsBuilder options) + => options.UseSqlite($"Data Source={DbPath}"); +} \ No newline at end of file diff --git a/netxml2kml/Migrations/20220810152156_InitialCreate.Designer.cs b/netxml2kml/Migrations/20220810152156_InitialCreate.Designer.cs new file mode 100644 index 0000000..b5ab709 --- /dev/null +++ b/netxml2kml/Migrations/20220810152156_InitialCreate.Designer.cs @@ -0,0 +1,119 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using netxml2kml.Data; + +#nullable disable + +namespace netxml2kml.Migrations +{ + [DbContext(typeof(DatabaseContext))] + [Migration("20220810152156_InitialCreate")] + partial class InitialCreate + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "6.0.8"); + + modelBuilder.Entity("netxml2kml.Models.WirelessClient", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Mac") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Manufacturer") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TotalPackets") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.ToTable("WirelessClients"); + }); + + modelBuilder.Entity("netxml2kml.Models.WirelessNetwork", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Bssid") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Channel") + .HasColumnType("INTEGER"); + + b.Property("Encryption") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("FirstSeen") + .HasColumnType("TEXT"); + + b.Property("FrequencyMhz") + .HasColumnType("INTEGER"); + + b.Property("IsCloaked") + .HasColumnType("INTEGER"); + + b.Property("LastUpdate") + .HasColumnType("TEXT"); + + b.Property("Manufacturer") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("MaxAltitude") + .HasColumnType("REAL"); + + b.Property("MaxLatitude") + .HasColumnType("REAL"); + + b.Property("MaxLongitude") + .HasColumnType("REAL"); + + b.Property("MaxSignalDbm") + .HasColumnType("INTEGER"); + + b.Property("Ssid") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TotalPackets") + .HasColumnType("INTEGER"); + + b.Property("WirelessClientId") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("WirelessClientId"); + + b.ToTable("WirelessNetworks"); + }); + + modelBuilder.Entity("netxml2kml.Models.WirelessNetwork", b => + { + b.HasOne("netxml2kml.Models.WirelessClient", "WirelessClient") + .WithMany() + .HasForeignKey("WirelessClientId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("WirelessClient"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/netxml2kml/Migrations/20220810152156_InitialCreate.cs b/netxml2kml/Migrations/20220810152156_InitialCreate.cs new file mode 100644 index 0000000..422abc1 --- /dev/null +++ b/netxml2kml/Migrations/20220810152156_InitialCreate.cs @@ -0,0 +1,75 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace netxml2kml.Migrations +{ + public partial class InitialCreate : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "WirelessClients", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Mac = table.Column(type: "TEXT", nullable: false), + Manufacturer = table.Column(type: "TEXT", nullable: false), + TotalPackets = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_WirelessClients", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "WirelessNetworks", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Ssid = table.Column(type: "TEXT", nullable: false), + IsCloaked = table.Column(type: "INTEGER", nullable: false), + Encryption = table.Column(type: "TEXT", nullable: false), + Bssid = table.Column(type: "TEXT", nullable: false), + Manufacturer = table.Column(type: "TEXT", nullable: false), + Channel = table.Column(type: "INTEGER", nullable: false), + FrequencyMhz = table.Column(type: "INTEGER", nullable: false), + MaxSignalDbm = table.Column(type: "INTEGER", nullable: false), + MaxLatitude = table.Column(type: "REAL", nullable: false), + MaxLongitude = table.Column(type: "REAL", nullable: false), + MaxAltitude = table.Column(type: "REAL", nullable: false), + FirstSeen = table.Column(type: "TEXT", nullable: false), + LastUpdate = table.Column(type: "TEXT", nullable: false), + TotalPackets = table.Column(type: "INTEGER", nullable: false), + WirelessClientId = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_WirelessNetworks", x => x.Id); + table.ForeignKey( + name: "FK_WirelessNetworks_WirelessClients_WirelessClientId", + column: x => x.WirelessClientId, + principalTable: "WirelessClients", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_WirelessNetworks_WirelessClientId", + table: "WirelessNetworks", + column: "WirelessClientId"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "WirelessNetworks"); + + migrationBuilder.DropTable( + name: "WirelessClients"); + } + } +} diff --git a/netxml2kml/Migrations/DatabaseContextModelSnapshot.cs b/netxml2kml/Migrations/DatabaseContextModelSnapshot.cs new file mode 100644 index 0000000..99afa3c --- /dev/null +++ b/netxml2kml/Migrations/DatabaseContextModelSnapshot.cs @@ -0,0 +1,117 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using netxml2kml.Data; + +#nullable disable + +namespace netxml2kml.Migrations +{ + [DbContext(typeof(DatabaseContext))] + partial class DatabaseContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "6.0.8"); + + modelBuilder.Entity("netxml2kml.Models.WirelessClient", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Mac") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Manufacturer") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TotalPackets") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.ToTable("WirelessClients"); + }); + + modelBuilder.Entity("netxml2kml.Models.WirelessNetwork", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Bssid") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Channel") + .HasColumnType("INTEGER"); + + b.Property("Encryption") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("FirstSeen") + .HasColumnType("TEXT"); + + b.Property("FrequencyMhz") + .HasColumnType("INTEGER"); + + b.Property("IsCloaked") + .HasColumnType("INTEGER"); + + b.Property("LastUpdate") + .HasColumnType("TEXT"); + + b.Property("Manufacturer") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("MaxAltitude") + .HasColumnType("REAL"); + + b.Property("MaxLatitude") + .HasColumnType("REAL"); + + b.Property("MaxLongitude") + .HasColumnType("REAL"); + + b.Property("MaxSignalDbm") + .HasColumnType("INTEGER"); + + b.Property("Ssid") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TotalPackets") + .HasColumnType("INTEGER"); + + b.Property("WirelessClientId") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("WirelessClientId"); + + b.ToTable("WirelessNetworks"); + }); + + modelBuilder.Entity("netxml2kml.Models.WirelessNetwork", b => + { + b.HasOne("netxml2kml.Models.WirelessClient", "WirelessClient") + .WithMany() + .HasForeignKey("WirelessClientId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("WirelessClient"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/netxml2kml/Models/Models.cs b/netxml2kml/Models/MonoXSD.cs similarity index 100% rename from netxml2kml/Models/Models.cs rename to netxml2kml/Models/MonoXSD.cs diff --git a/netxml2kml/Models/WirelessClient.cs b/netxml2kml/Models/WirelessClient.cs new file mode 100644 index 0000000..e0f9d3c --- /dev/null +++ b/netxml2kml/Models/WirelessClient.cs @@ -0,0 +1,10 @@ +namespace netxml2kml.Models; + +public class WirelessClient +{ + public int Id { get; set; } + + public string Mac { get; set; } = null!; + public string Manufacturer { get; set; } = null!; + public int TotalPackets { get; set; } +} \ No newline at end of file diff --git a/netxml2kml/Models/WirelessNetwork.cs b/netxml2kml/Models/WirelessNetwork.cs new file mode 100644 index 0000000..387aaa8 --- /dev/null +++ b/netxml2kml/Models/WirelessNetwork.cs @@ -0,0 +1,30 @@ +namespace netxml2kml.Models; + +public class WirelessNetwork +{ + public int Id { get; set; } + + public string Ssid { get; set; } = null!; + public bool IsCloaked { get; set; } + public string Encryption { get; set; } = null!; + + public string Bssid { get; set; } = null!; + + public string Manufacturer { get; set; } = null!; + + public int Channel { get; set; } + public int FrequencyMhz { get; set; } + + public int MaxSignalDbm { get; set; } + + public double MaxLatitude { get; set; } + public double MaxLongitude { get; set; } + public double MaxAltitude { get; set; } + + public DateTime FirstSeen { get; set; } + public DateTime LastUpdate { get; set; } + + public int TotalPackets { get; set; } + + public WirelessClient WirelessClient { get; set; } = null!; +} \ No newline at end of file diff --git a/netxml2kml/netxml2kml.csproj b/netxml2kml/netxml2kml.csproj index 05a31fb..bae0828 100644 --- a/netxml2kml/netxml2kml.csproj +++ b/netxml2kml/netxml2kml.csproj @@ -8,7 +8,16 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + +