aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineSetupRequest.cs
blob: 821828a4885ce7561aa37197a0b5339bfefde0ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Transport.Web;

namespace Tango.PPC.Common.Web
{
    public class MachineSetupRequest : WebRequestMessage
    {
        public String SerialNumber { get; set; }
        public String DeviceID { get; set; }
        public String DeviceName { get; set; }
    }
}
.c1 { color: #888888 } /* Comment.Single */ .highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */ .highlight .gr { color: #aa0000 } /* Generic.Error */ .highlight .gh { color: #333333 } /* Generic.Heading */ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ .highlight .go { color: #888888 } /* Generic.Output */ .highlight .gp { color: #555555 } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #666666 } /* Generic.Subheading */ .highlight .gt { color: #aa0000 } /* Generic.Traceback */ .highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */ .highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */ .highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */ .highlight .kp { color: #008800 } /* Keyword.Pseudo */ .highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL;
using Tango.BL.ActionLogs;
using Tango.BL.Builders;
using Tango.BL.Entities;
using Tango.Core.Commands;
using Tango.Core.Threading;
using Tango.MachineStudio.Common;
using Tango.MachineStudio.Common.Authentication;
using Tango.MachineStudio.Common.Notifications;
using Tango.MachineStudio.Sites.Contracts;
using Tango.MachineStudio.Sites.Models;

namespace Tango.MachineStudio.Sites.ViewModels
{
    public class MainViewVM : StudioViewModel<IMainView>
    {
        private ObservablesContext _db;
        private INotificationProvider _notification;
        private IAuthenticationProvider _authentication;
        private IActionLogManager _actionLogManager;
        private ActionTimer _filter_timer;

        private List<SiteModel> _sites;
        public List<SiteModel> Sites
        {
            get { return _sites; }
            set { _sites = value; RaisePropertyChangedAuto(); }
        }

        private SiteModel _selectedSite;
        public SiteModel SelectedSite
        {
            get { return _selectedSite; }
            set { _selectedSite = value; RaisePropertyChangedAuto(); InvalidateRelayCommands(); }
        }

        private String _filter;
        public String Filter
        {
            get { return _filter; }
            set { _filter = value; RaisePropertyChangedAuto(); OnFilterChanged(); }
        }

        private SiteDetailsViewVM _siteDetailsViewVM;
        public SiteDetailsViewVM SiteDetailsViewVM
        {
            get { return _siteDetailsViewVM; }
            set { _siteDetailsViewVM = value; RaisePropertyChangedAuto(); }
        }

        public RelayCommand AddSiteCommand { get; set; }

        public RelayCommand RemoveSiteCommand { get; set; }

        public RelayCommand ManageSiteCommand { get; set; }

        public RelayCommand BackToSitesCommand { get; set; }

        public MainViewVM(INotificationProvider notificationProvider, IAuthenticationProvider authentication, IActionLogManager actionLogManager)
        {
            _notification = notificationProvider;
            _authentication = authentication;
            _actionLogManager = actionLogManager;
            _filter_timer = new ActionTimer(TimeSpan.FromMilliseconds(500));

            ManageSiteCommand = new RelayCommand(() => LoadSelectedSite(), () => SelectedSite != null);
            BackToSitesCommand = new RelayCommand(() => { View.NavigateTo(SitesNavigationView.SitesView); });
            AddSiteCommand = new RelayCommand(AddNewSite);
            RemoveSiteCommand = new RelayCommand(RemoveSelectedSite, () => SelectedSite != null);
        }

        private async void RemoveSelectedSite()
        {
            if (!_notification.ShowQuestion("Are you sure you wish to remove the selected site?")) return;

            try
            {
                using (_notification.PushTaskItem("Removing site..."))
                {
                    IsFree = false;
                    await Task.Factory.StartNew(() =>
                    {
                        var site = _db.Sites.SingleOrDefault(x => x.Guid == SelectedSite.Guid);
                        site.Delete(_db);
                        _db.SaveChanges();
                        _actionLogManager.InsertLog(BL.Enumerations.ActionLogType.SiteDeleted, _authentication.CurrentUser, site.Name, site, "Site deleted using Machine Studio.");
                        Sites.Remove(SelectedSite);
                        LoadSites();
                    });
                }
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Error removing site.");
                _notification.ShowError($"Error removing site.\n{ex.FlattenMessage()}");
            }
            finally
            {
                IsFree = true;
            }
        }

        private async void AddNewSite()
        {
            try
            {
                String name = _notification.ShowTextInput("Enter site name", "name");
                if (String.IsNullOrWhiteSpace(name)) return;

                using (_notification.PushTaskItem("Creating site..."))
                {
                    IsFree = false;
                    SiteDetailsViewVM = new SiteDetailsViewVM();
                    SiteDetailsViewVM.Saved += SiteDetailsViewVM_Saved;
                    await SiteDetailsViewVM.Init(SelectedSite?.Guid, _notification, _authentication, _actionLogManager, true, name);
                    View.NavigateTo(SitesNavigationView.SiteDetailsView);
                }
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Error creating site.");
                _notification.ShowError($"Error creating site.\n{ex.FlattenMessage()}");
            }
            finally
            {
                IsFree = true;
            }
        }

        private async void LoadSelectedSite()
        {
            try
            {
                using (_notification.PushTaskItem("Loading site details..."))
                {
                    IsFree = false;
                    SiteDetailsViewVM = new SiteDetailsViewVM();
                    SiteDetailsViewVM.Saved += SiteDetailsViewVM_Saved;
                    await SiteDetailsViewVM.Init(SelectedSite.Guid, _notification, _authentication, _actionLogManager, false);
                    View.NavigateTo(SitesNavigationView.SiteDetailsView);
                }
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Error loading site details.");
                _notification.ShowError($"Error loading site details.\n{ex.FlattenMessage()}");
            }
            finally
            {
                IsFree = true;
            }
        }

        private void SiteDetailsViewVM_Saved(object sender, EventArgs e)
        {
            OnFilterChanged();
            View.NavigateTo(SitesNavigationView.SitesView);
        }

        private void OnFilterChanged()
        {
            if (Filter != null)
            {
                _filter_timer.ResetReplace(() =>
                {
                    try
                    {
                        LoadSites();
                    }
                    catch (Exception ex)
                    {
                        LogManager.Log(ex, "Error loading sites list.");
                    }
                });
            }
        }

        private void LoadSites()
        {
            using (_notification.PushTaskItem("Loading sites..."))
            {
                Sites = (from site in _db.Sites
                         join organization in _db.Organizations on site.OrganizationGuid equals organization.Guid
                         join sites_rmls in _db.SitesRmls on site.Guid equals sites_rmls.SiteGuid into rmls
                         join sites_catalogs in _db.SitesCatalogs on site.Guid equals sites_catalogs.SiteGuid into catalogs
                         join sites_machines in _db.Machines on site.Guid equals sites_machines.SiteGuid into machines
                         where Filter == null || Filter == "" || site.Name.ToLower().StartsWith(Filter.ToLower()) || organization.Name.ToLower().StartsWith(Filter.ToLower())
                         select new
                         {
                             Site = site,
                             OrganizationName = organization.Name,
                             ThreadCount = rmls.Count(x => x.SiteGuid == site.Guid),
                             CatalogCount = catalogs.Count(x => x.SiteGuid == site.Guid),
                             MachineCount = machines.Count(x => x.SiteGuid == site.Guid)
                         }).Distinct().ToList().DistinctBy(x => x.Site.Guid).Select(x => new SiteModel()
                         {
                             Guid = x.Site.Guid,
                             ID = x.Site.ID,
                             Name = x.Site.Name,
                             Description = x.Site.Description,
                             ThreadCount = x.ThreadCount,
                             CatalogCount = x.CatalogCount,
                             MachineCount = x.MachineCount,
                             Organization = x.OrganizationName,
                         }).ToList();
            }
        }

        public override void OnApplicationReady()
        {
            _db = ObservablesContext.CreateDefault();
        }
    }
}