Example #1
0
        public ActionResult Ignition(int?Id = null)
        {
            IgnitionAlert alertModel = new IgnitionAlert();

            try
            {
                ScheduleViewModel sVM = new ScheduleViewModel();
                sVM.SelectedAlertType = DeviceAlarmType.AccAlarm;

                sVM = new AlertData().GetAlertDetails(sVM, Id);
                AlertBase alertData = sVM.AlertDatas.FirstOrDefault() as AlertBase;

                if (alertData == null)
                {
                    alertData = new AlertBase()
                    {
                        Id         = 0,
                        Conditions = new List <Tracker.Common.Condition>(),
                        IsActive   = false
                    };
                }

                bool IsOnAcc = false;

                if (alertData.Conditions.Where(m => m.Operand == "OnAcc").FirstOrDefault() != null)
                {
                    IsOnAcc = Convert.ToBoolean(Convert.ToInt32(alertData.Conditions.Where(m => m.Operand == "OnAcc").FirstOrDefault().Value));
                }
                else
                {
                    IsOnAcc = false;
                }

                alertModel = new IgnitionAlert()
                {
                    Id       = alertData.Id,
                    IsActive = alertData.IsActive,
                    IsOnAcc  = IsOnAcc,
                    Devices  = new List <DeviceDetailSelection>()
                };
                List <DeviceDetailSelection> availableDevices = new AlertData().GetAvailableDevices();
                List <string> activeDevices = new AlertData().GetDevicesForAlert(alertData.Id);
                if (availableDevices != null && availableDevices.Count > 0)
                {
                    alertModel.Devices = availableDevices.Select(m => new DeviceDetailSelection
                    {
                        DeviceId  = m.DeviceId,
                        VehicleId = m.VehicleId,
                        Checked   = activeDevices.Contains(m.DeviceId)
                    }).ToList();
                }
            }
            catch (Exception ex)
            {
            }
            return(View(alertModel));
        }
Example #2
0
        public ActionResult Ignition(IgnitionAlert alertModel)
        {
            ScheduleViewModel sVM = new ScheduleViewModel();

            sVM.SelectedAlertType = DeviceAlarmType.AccAlarm;

            sVM.AlertDatas = new List <object>();
            AlertBase alertData = new AlertBase()
            {
                Id         = alertModel.Id,
                IsActive   = alertModel.IsActive,
                Conditions = new List <Tracker.Common.Condition>()
                {
                    new Tracker.Common.Condition()
                    {
                        Operand = "OnAcc",
                        Value   = alertModel.IsOnAcc == true ? "1" : "0"
                    }
                }
            };

            sVM.AlertDatas.Add(alertData);

            if (new AlertData().SaveAlertData(sVM))
            {
                int updateId = 0;
                if (int.TryParse(sVM.SelectedAlertId, out updateId))
                {
                    alertModel.Id = updateId;
                    if (alertModel.Devices != null && alertModel.Devices.Count > 0)
                    {
                        alertModel.Devices.ForEach(d =>
                        {
                            try
                            {
                                new AlertData().SaveDevicesForAlert(alertModel.Id, d.DeviceId, !d.Checked);
                            }
                            catch (Exception ex)
                            {
                            }
                        });
                    }
                }
                ViewBag.AlertWriteStatus = "Success";
            }
            else
            {
                ViewBag.AlertWriteStatus = "Failed";
            }

            return(View(alertModel));
        }