Exemplo n.º 1
0
        public static async Task Add(string host, IPAddress ip)
        {
            using var db = new IPDbContext();

            var record = db.IPRecords.FirstOrDefault(x => x.Host == host);

            if (record == default(IPRecord))
            {
                // if it's one that doesn't exist
                db.IPRecords.Add(new IPRecord(host, ip));
                await db.SaveChangesAsync();
            }
            else
            {
                // if the host exists in the database update the LastChecked timestamp.
                record.LastChecked = DateTime.UtcNow;

                // if the entry has changed, update the IPAddress and LastChanged timestamp.
                if (record.IPAddress != ip)
                {
                    record.IPAddress   = ip;
                    record.LastChanged = DateTime.UtcNow;
                }
                db.IPRecords.Update(record);
                await db.SaveChangesAsync();
            }
        }
Exemplo n.º 2
0
        public override string ToString()
        {
            using var db = new IPDbContext();

            var records = db.IPRecords.ToList();

            return(JsonConvert.SerializeObject(records, Formatting.Indented));
        }
Exemplo n.º 3
0
        public static IPAddress LookupHost(string host)
        {
            using var db = new IPDbContext();

            var record = db.IPRecords.FirstOrDefault(x => x.Host == host);

            if (record == default(IPRecord))
            {
                return(null);
            }
            else
            {
                return(record.IPAddress);
            }
        }