Exemplo n.º 1
0
        public ActionResult NodeCheckinData(string id)
        {
            if (!System.Text.RegularExpressions.Regex.IsMatch(id, "^[a-zA-Z\\-0-9]+$"))
              {
            return new ContentResult { ContentType = "text/plain", Content = "Bad id" };
              }
              if (Request.Files.Count == 0) return new ContentResult { Content = "no file", ContentType = "text/plain" };

              var hpf = Request.Files[0] as System.Web.HttpPostedFileBase;
              XDocument doc = XDocument.Load(hpf.InputStream, LoadOptions.PreserveWhitespace);

              using (var mnc = new MeshNodeEntities())
              {
            var locElement = doc.Element("MeshReport").Element("Location").Element("Last");
            string[] loc = locElement.Attribute("Position").Value.Split(',');
            var status = new MeshNodeStatus
            {
              Location = (loc.Length > 1) ? DbGeography.PointFromText(string.Format("POINT({0} {1})", loc[1], loc[0]), GeographyServices.SRID) : null,
              Time = DateTime.Parse(doc.Element("MeshReport").Attribute("time").Value),
              Name = id,
              IPAddr = doc.ElementOrDefault("Modem").ElementOrDefault("IP").SafeValue()
            };

            try
            {
              float uptime;
              if (float.TryParse(doc.ElementOrDefault("Uptime").SafeValue(), out uptime))
              {
            status.Uptime = uptime;
              }

              var volts = doc.ElementOrDefault("Voltages").SafeValue();
              if (!string.IsNullOrWhiteSpace(volts))
              {
            var voltParts = volts.Split(' ');
            status.BatteryVolts = float.Parse(voltParts[0]);
            status.HouseVolts = float.Parse(voltParts[1]);
            status.AlternatorVolts = float.Parse(voltParts[2]);
              }
            }
            catch (Exception)
            {
              // eat
            }

            foreach (var existing in mnc.Checkins.Where(f => f.Name == id))
            {
              mnc.Checkins.Remove(existing);
            }
            mnc.Checkins.Add(status);
            mnc.SaveChanges();

            string track = doc.ElementOrDefault("Location").ElementOrDefault("History").SafeValue();
            if (!string.IsNullOrWhiteSpace(track))
            {
              string[] trackParts = track.Trim().Split('\n');
              DateTime start = UnixEpoch.AddSeconds(int.Parse(trackParts[0].Split(',')[0]));
              DateTime stop = UnixEpoch.AddSeconds(int.Parse(trackParts[trackParts.Length - 1].Split(',')[0]));

              MeshNodeLocation before = mnc.Locations.Where(f => f.Name == id && f.Time < start).OrderByDescending(f => f.Time).FirstOrDefault();
              MeshNodeLocation after = mnc.Locations.Where(f => f.Name == id && f.Time > stop).OrderBy(f => f.Time).FirstOrDefault();

              foreach (var existing in mnc.Locations.Where(f => f.Name == id && f.Time >= start && f.Time <= stop))
              {
            mnc.Locations.Remove(existing);
              }

              foreach (var report in trackParts)
              {
            string[] parts = report.Split(',');
            DateTime time = UnixEpoch.AddSeconds(int.Parse(parts[0]));
            if (string.IsNullOrWhiteSpace(parts[1]) || string.IsNullOrWhiteSpace(parts[2])) continue;

            DbGeography location = DbGeography.PointFromText(string.Format("POINT({0} {1})", parts[2], parts[1]), GeographyServices.SRID);

            if ((before == null || location.Distance(before.Location) > 20) && (after == null || location.Distance(after.Location) > 10)) // meters
            {
              MeshNodeLocation newLoc = new MeshNodeLocation
              {
                Name = id,
                Time = time,
                Location = location
              };
              mnc.Locations.Add(newLoc);
              before = newLoc;
            }
              }

              mnc.SaveChanges();
            }
              }

              return new ContentResult { Content = "Thanks", ContentType = "text/plain" };
        }
Exemplo n.º 2
0
        public ActionResult MeshNodeTrack(string id, DateTime? start, DateTime? stop)
        {
            if (string.IsNullOrWhiteSpace(id))
              {
            return new ContentResult { Content = "Invalid id" };
              }

              start = start ?? DateTime.Today.AddDays(-1);
              stop = stop ?? DateTime.Now;

              GpxDocument gpx = new GpxDocument();
              gpx.StartTrack(id + " track");
              using (var mnc = new MeshNodeEntities())
              {
            foreach (var point in (from p in mnc.Locations where p.Name == id && p.Time >= start && p.Time <= stop select p))
            {
              gpx.AppendToTrack(point.Location.Latitude.Value, point.Location.Longitude.Value, null, point.Time);
            }
              }
              gpx.FinishTrack();

              return new FileContentResult(gpx.ToUtf8(), "text/xml") { FileDownloadName = id + ".gpx" };
        }
Exemplo n.º 3
0
 public ActionResult MeshStatus()
 {
     MeshNodeStatus[] model;
       using (var mnc = new MeshNodeEntities())
       {
     model = mnc.Checkins.ToArray();
       }
       return View(model);
 }
Exemplo n.º 4
0
 public ActionResult MeshGraphs(string id, string type)
 {
     MeshNodeStatus model;
       using (var mnc = new MeshNodeEntities())
       {
     model = mnc.Checkins.Single(f => f.Name == id);
       }
       ViewData["type"] = type;
       return View(model);
 }