Пример #1
0
        public SaveResponse SetValue(Guid id, GadgetSetValueRequest value)
        {
            SaveResponse returnValue = new SaveResponse();

            returnValue.AddAction(string.Format("Set Value '{0}' started with values {1}, {2}", id, value.Value, value.ComplexValue));

            ProcessGadget(
                id,
                value,
                (log) => { returnValue.AddAction(string.Format("Process for '{0}' :{1}", id, log)); }
                );

            return(returnValue);
        }
Пример #2
0
        public SaveResponse <GadgetDefinition> DeleteGadgetDefinition(Guid gadgetDefinitionId)
        {
            var returnValue = new SaveResponse <GadgetDefinition>();

            //1- Check Existance
            returnValue.AddAction("Checking any dependend gadget existance", SaveActionType.Information);

            SqliteDataReader reader = _database.ExecuteReader(
                ConstantStrings.SqlQueries.Gadget.Get.FilterByDefinition,
                new List <SqliteParameter> {
                new SqliteParameter("DefinitionId", gadgetDefinitionId)
            }
                );

            if (reader.Read())
            {
                returnValue.AddAction("Gadget definition has gadgets", SaveActionType.Warning);
                return(returnValue);
            }
            else
            {
                returnValue.AddAction("Gadget definition has not dependent gadgets", SaveActionType.Information);
            }

            //3- Delete


            var deleteResult = _database.ExecuteNonQuery(
                ConstantStrings.SqlQueries.GadgetDefinition.Delete.DeleteWithId,
                new List <SqliteParameter> {
                new SqliteParameter("Id", gadgetDefinitionId)
            }
                );

            if (deleteResult > 0)
            {
                returnValue.AddAction("Gadget definition has deleted successfully", SaveActionType.Success);
                return(returnValue);
            }
            else
            {
                returnValue.AddAction("Gadget definition  has not deleted !", SaveActionType.Error);
            }

            return(returnValue);
        }
Пример #3
0
        public SaveResponse <Settings> Save(Settings request)
        {
            var returnValue = new SaveResponse <Settings>();


            request.GadgetDefinitions.ForEach(
                gadgetDefinition =>
            {
                _database.SaveItem(
                    gadgetDefinition.Id,
                    ConstantStrings.SqlQueries.GadgetDefinition.Get.IdParam,
                    ConstantStrings.SqlQueries.GadgetDefinition.Save.Insert,
                    ConstantStrings.SqlQueries.GadgetDefinition.Save.UpdateWithId,
                    new List <SaveItemProperty> {
                    new SaveItemProperty {
                        Name = "Name", Value = gadgetDefinition.Name
                    },
                    new SaveItemProperty {
                        Name = "Type", Value = gadgetDefinition.Type
                    },
                    new SaveItemProperty {
                        Name = "ReadScript", Value = gadgetDefinition.ReadScript
                    },
                    new SaveItemProperty {
                        Name = "WriteScript", Value = gadgetDefinition.WriteScript
                    },
                },
                    (log, actionType) => { returnValue.AddAction(string.Format("Gadget Definition '{0}' : {1}", gadgetDefinition.Name, log), actionType); }
                    );
            });



            request.Regions.ForEach(
                region =>
            {
                region.Rows.ForEach(row =>
                {
                    _database.SaveItem(
                        row.Id,
                        ConstantStrings.SqlQueries.RegionRows.Get.IdParam,
                        ConstantStrings.SqlQueries.RegionRows.Save.Insert,
                        ConstantStrings.SqlQueries.RegionRows.Save.UpdateWithId,
                        new List <SaveItemProperty> {
                        new SaveItemProperty {
                            Name = "No", Value = row.No
                        },
                        new SaveItemProperty {
                            Name = "Percentage", Value = row.Percentage
                        },
                    },
                        (log, actionType) => { returnValue.AddAction(string.Format("Percante '{0}' : {1}", row.No, log), actionType); }
                        );
                });

                region.Sections.ForEach(
                    section =>
                {
                    section.Gadgets.ForEach(
                        gadget =>
                    {
                        gadget.SourceActions.ForEach(
                            action =>
                        {
                            _database.SaveItem(
                                action.Id,
                                ConstantStrings.SqlQueries.GadgetAction.Get.IdParam,
                                ConstantStrings.SqlQueries.GadgetAction.Save.Insert,
                                ConstantStrings.SqlQueries.GadgetAction.Save.UpdateWithId,
                                new List <SaveItemProperty> {
                                new SaveItemProperty {
                                    Name = "Order", Value = action.Order
                                },
                                new SaveItemProperty {
                                    Name = "SourceGadget", Value = gadget.Id
                                },
                                new SaveItemProperty {
                                    Name = "TargetGadget", Value = action.TargetGadget
                                },
                                new SaveItemProperty {
                                    Name = "Execute", Value = action.Execute
                                },
                                new SaveItemProperty {
                                    Name = "CanExecute", Value = action.CanExecute
                                },
                            },
                                (log, actionType) => { returnValue.AddAction(string.Format("Gadget Action '{0}' : {1}", action.Order, log), actionType); }
                                );
                        }
                            );


                        _database.SaveItem(
                            gadget.Id,
                            ConstantStrings.SqlQueries.Gadget.Get.IdParam,
                            ConstantStrings.SqlQueries.Gadget.Save.Insert,
                            ConstantStrings.SqlQueries.Gadget.Save.UpdateWithId,
                            new List <SaveItemProperty> {
                            new SaveItemProperty {
                                Name = "Name", Value = gadget.Name
                            },
                            new SaveItemProperty {
                                Name = "Configuration", Value = gadget.Configuration
                            },
                            new SaveItemProperty {
                                Name = "Value", Value = gadget.Value
                            },
                            new SaveItemProperty {
                                Name = "ComplexValue", Value = gadget.ComplexValue
                            },
                            new SaveItemProperty {
                                Name = "Status", Value = gadget.Status
                            },
                            new SaveItemProperty {
                                Name = "Section", Value = section.Id
                            },
                            new SaveItemProperty {
                                Name = "SectionPosition", Value = gadget.SectionPosition
                            },
                            new SaveItemProperty {
                                Name = "Definition", Value = gadget.Definition
                            },
                            new SaveItemProperty {
                                Name = "ReadFrequency", Value = gadget.ReadFrequency
                            },
                        },
                            (log, actionType) => { returnValue.AddAction(string.Format("Gadget '{0}' : {1}", gadget.Name, log), actionType); }
                            );
                    });


                    _database.SaveItem(
                        section.Id,
                        ConstantStrings.SqlQueries.Section.Get.IdParam,
                        ConstantStrings.SqlQueries.Section.Save.Insert,
                        ConstantStrings.SqlQueries.Section.Save.UpdateWithId,
                        new List <SaveItemProperty> {
                        new SaveItemProperty {
                            Name = "Name", Value = section.Name
                        },
                        new SaveItemProperty {
                            Name = "Region", Value = region.Id
                        },
                        new SaveItemProperty {
                            Name = "Type", Value = section.Type
                        },
                        new SaveItemProperty {
                            Name = "Row", Value = section.Row
                        },
                        new SaveItemProperty {
                            Name = "Column", Value = section.Column
                        },
                    },
                        (log, actionType) => { returnValue.AddAction(string.Format("Section '{0}' : {1}", section.Name, log), actionType); }
                        );
                });

                _database.SaveItem(
                    region.Id,
                    ConstantStrings.SqlQueries.Region.Get.IdParam,
                    ConstantStrings.SqlQueries.Region.Save.Insert,
                    ConstantStrings.SqlQueries.Region.Save.UpdateWithId,
                    new List <SaveItemProperty> {
                    new SaveItemProperty {
                        Name = "Name", Value = region.Name
                    },
                    new SaveItemProperty {
                        Name = "Type", Value = region.Type
                    },
                    new SaveItemProperty {
                        Name = "BackgroundImage", Value = region.BackgroundImage
                    },
                    new SaveItemProperty {
                        Name = "AspectRatio", Value = region.AspectRatio
                    },
                },
                    (log, actionType) => { returnValue.AddAction(string.Format("Region '{0}' : {1}", region.Name, log), actionType); }
                    );
            });

            returnValue.Item = Get();

            return(returnValue);
        }
Пример #4
0
        public SaveResponse <Section> DeleteSection(Guid sectionId)
        {
            var returnValue = new SaveResponse <Section>();

            //1- Check Existance

            returnValue.AddAction("Checking section existance");

            Section          section = null;
            SqliteDataReader reader  = _database.ExecuteReader(
                ConstantStrings.SqlQueries.Section.Get.IdParam,
                new List <SqliteParameter> {
                new SqliteParameter("Id", sectionId)
            }
                );

            if (reader.Read())
            {
                section          = _bindSectionData(reader);
                returnValue.Item = section;
                returnValue.AddAction("Section is exist", SaveActionType.Information);
            }
            else
            {
                returnValue.AddAction("Section is NOT exist", SaveActionType.Error);
                return(returnValue);
            }

            //2- Check Dependency - Any Gadget

            returnValue.AddAction("Checking dependent gadgets");
            List <Gadget> gadgets = _gadgetService.GetBySection(sectionId, false);

            if (gadgets.Count > 0)
            {
                returnValue.AddAction("Section has gadgets", SaveActionType.Warning);
                return(returnValue);
            }
            else
            {
                returnValue.AddAction("Section has not dependent gadgets", SaveActionType.Information);
            }

            //3- Delete


            var deleteResult = _database.ExecuteNonQuery(
                ConstantStrings.SqlQueries.Section.Delete.DeleteWithId,
                new List <SqliteParameter> {
                new SqliteParameter("Id", sectionId)
            }
                );

            if (deleteResult > 0)
            {
                returnValue.AddAction("Section has deleted successfully", SaveActionType.Success);
                return(returnValue);
            }
            else
            {
                returnValue.AddAction("Section has not deleted !", SaveActionType.Error);
            }

            return(returnValue);
        }
Пример #5
0
        public SaveResponse <Region> DeleteRegion(Guid regionId)
        {
            var returnValue = new SaveResponse <Region>();

            //1- Check Existance
            returnValue.AddAction("Checking any dependend section existance", SaveActionType.Information);

            Region           region = null;
            SqliteDataReader reader = _database.ExecuteReader(
                ConstantStrings.SqlQueries.Region.Get.IdParam,
                new List <SqliteParameter> {
                new SqliteParameter("Id", regionId)
            }
                );

            if (reader.Read())
            {
                region           = _bindRegionData(reader);
                returnValue.Item = region;
                returnValue.AddAction("Region is exist", SaveActionType.Information);
            }
            else
            {
                returnValue.AddAction("Region is NOT exist", SaveActionType.Error);
                return(returnValue);
            }

            //2- Check Dependency - Any Section

            reader = _database.ExecuteReader(
                ConstantStrings.SqlQueries.Section.Get.FilterByRegion,
                new List <SqliteParameter> {
                new SqliteParameter("Region", regionId)
            }
                );

            if (reader.Read())
            {
                returnValue.AddAction("Region has sections", SaveActionType.Warning);
                return(returnValue);
            }
            else
            {
                returnValue.AddAction("Region has not dependent sections", SaveActionType.Information);
            }

            //3- Delete


            var deleteResult = _database.ExecuteNonQuery(
                ConstantStrings.SqlQueries.Region.Delete.DeleteWithId,
                new List <SqliteParameter> {
                new SqliteParameter("Id", regionId)
            }
                );

            if (deleteResult > 0)
            {
                returnValue.AddAction("Region has deleted successfully", SaveActionType.Success);
                return(returnValue);
            }
            else
            {
                returnValue.AddAction("Region has not deleted !", SaveActionType.Error);
            }

            return(returnValue);
        }