Пример #1
0
        public MattimonAgentForm()
        {
            InitializeComponent();
            DefineVersionLabelText(GetMattimonUpdateServiceStatus());
            DefineUpdVersionLabelText();

            Text = new MattimonAgentLibrary.Tools.ProjectAssemblyAtrributes(
                Application.ExecutablePath).AssemblyTitle;

            Icon = MattimonAgentApplication.Properties.Resources.MattimonIcon;

            BackgroundWorkerFetchAll();
            ThreadLoop();
        }
        /// <summary>
        ///
        /// </summary>
        /// <param name="reqFilesize"></param>
        /// <param name="reqVersion"></param>
        /// <param name="updSvcVersion"></param>
        /// <returns></returns>
        private object DownloadBytes(out long reqFilesize, out string reqVersion, out string updSvcVersion)
        {
            Rest.RestClientRequests rest = new Rest.RestClientRequests();

            String updSvcFullpath = System.IO.Path.Combine(this.MattimonAppInstallDirectory,
                                                           "MattimonUpdateService.exe");

            String updSvcExe = Path.Combine(this.MattimonAppInstallDirectory, "MattimonUpdateService.exe");

            updSvcVersion = new MattimonAgentLibrary.Tools.ProjectAssemblyAtrributes(
                updSvcExe, true).GetAssemblyVersion().ToString();

            long   fileSize = rest.RequestFilesize();
            string version  = rest.RequestVersion();

            reqFilesize = fileSize;
            reqVersion  = version;

            short sRequestedUpdaterVersion = AssemblyVersionToShort(version, true, out FormatException ex);
            short sUpdSvcVersion           = AssemblyVersionToShort(updSvcVersion, false, out ex);

            EventLog.WriteEntry("DownloadBytes()\n\n" +
                                "sRequestedUpdaterVersion: " + sRequestedUpdaterVersion + "\n" +
                                "sUpdSvcVersion: " + sUpdSvcVersion, EventLogEntryType.Warning, UPD_DOWNLOAD_EVENT_ID);


            if (ex != null)
            {
                throw ex;
            }

            if (sRequestedUpdaterVersion <= sUpdSvcVersion)
            {
                return(null);
            }

            byte[] zipBytes = rest.GetZipBytes();
            if (fileSize != zipBytes.Length)
            {
                throw new Exception("Downloaded bytes don't correspond to the requested file size.\nThe source is maybe damaged.");
            }

            return(rest.GetZipBytes());
        }
        /// <summary>
        ///
        /// </summary>
        private void InitializeServiceComponents()
        {
            try
            {
                InitializeEventLog();
            }
            catch { }

            try
            {
                InitializePaths();

                if (!System.IO.File.Exists(this.guiExePath))
                {
                    EventLog.WriteEntry("Main application assembly file is missing.\n\n" +
                                        "Application must be properly installed in order to access required assembly information and paths.",
                                        EventLogEntryType.Error, SVC_INIT_EVENT_ID);
                    return;
                }

                if (!System.IO.File.Exists(this.thisSvcExePath))
                {
                    EventLog.WriteEntry("Service assembly file is missing.\n\n" +
                                        "Application must be properly installed in order to access required assembly information and paths.",
                                        EventLogEntryType.Error, SVC_INIT_EVENT_ID);
                    return;
                }

                try
                {
                    MattimonAgentLibrary.Tools.ProjectAssemblyAtrributes thisSvcAssemAttr =
                        new MattimonAgentLibrary.Tools.ProjectAssemblyAtrributes(
                            this.thisSvcExePath);


                    String message = "";
                    message = String.Format(

                        "{0}->InitializeServiceComponents\n\n" +
                        "Application path: {1}\n" +
                        "Service path: {2}\n" +
                        "Service path (Win32_Services->PathName): {3}\n\n" +
                        "MattimonAgentApplication.exe assembly information:\n\n" +
                        "Title: {4}\n" +
                        "Company: {5}\n" +
                        "Product: {6}\n" +
                        "Version: {7}\n\n" +
                        "CommonAppData directory: {8}",

                        ServiceName,
                        this.guiExePath,
                        this.thisSvcExePath,
                        MattimonAgentLibrary.Tools.MyServiceController.GetWin32ServicePathName(ServiceName),
                        this.thisSvcAssemAttr.AssemblyTitle,
                        this.thisSvcAssemAttr.AssemblyCompany,
                        this.thisSvcAssemAttr.AssemblyProduct,
                        this.thisSvcAssemAttr.GetAssemblyVersion(),
                        MattimonAgentLibrary.Static.Constants.CommonAppData
                        );


                    /// Initialize the local database
                    SQLiteClientDatabase = new SQLiteClientDatabase(

                        MattimonAgentLibrary.Static.Constants.CommonAppData,

                        MattimonAgentLibrary.Tools.RegistryTools.GetPublisherByDisplayName(
                            MattimonAgentLibrary.Static.MattimonRegistrySubkeyNames.DisplayName),

                        MattimonAgentLibrary.Static.MattimonRegistrySubkeyNames.DisplayName,

                        MattimonAgentLibrary.Static.Constants.LocalDatabaseName
                        );

                    long   deviceId     = SQLiteClientDatabase.GetDeviceId();
                    long   deviceTypeId = SQLiteClientDatabase.GetDeviceTypeId();
                    long   userId       = SQLiteClientDatabase.GetUserId();
                    long   companyId    = SQLiteClientDatabase.GetCompanyId();
                    double interval     = SQLiteClientDatabase.GetReportingInterval();

                    string agentId = SQLiteClientDatabase.GetAgentId();

                    // Set global variables
                    this.fetchedDeviceId     = deviceId;
                    this.fetchedDeviceTypeId = deviceTypeId;
                    this.fetchedUserId       = userId;
                    this.fetchedCompanyId    = companyId;
                    this.fetchedInterval     = interval;

                    this.fetchedAgentId = agentId;


                    // Prepare the rest request
                    this.deviceRequests =
                        new MattimonAgentLibrary.Rest.DeviceRequests();

                    // Get the device Options
                    MattimonAgentLibrary.Models.DeviceOptions deviceOptions =
                        RequestDeviceOptions(deviceId, userId, companyId);
                    /// NOTE: each time the user changes related options, the service needs to be stopped and restarted
                    /// in order for the options to take effect.
                    /// [Void if CheckOnlineOptions is called in every timer-elapsed event!]


                    this.fetchedUseAgent = deviceOptions.UseAgent;
                    this.fetchedSqlMonit = deviceOptions.MonitorSql ? 1 : 0;


                    message += String.Format(
                        "User authentication keys:\n\n" +
                        "User ID: {0}\n" +
                        "Company ID: {1}\n" +
                        "Device ID: {2}\n\n" +

                        "Device Options:\n\n" +
                        "Reporting interval (local): every {3} minute(s)\n" +
                        "Reporting inteval (server): every {4} minute(s)\n" +
                        "(Reporting interval on local and server must be identical)\n" +
                        "Email notifications: {5}",
                        userId,
                        companyId,
                        deviceId,
                        MattimonAgentLibrary.Tools.TimeSpanUtil.ConvertMillisecondsToMinutes(interval),
                        MattimonAgentLibrary.Tools.TimeSpanUtil.ConvertMillisecondsToMinutes(deviceOptions.ReportingInterval),
                        (deviceOptions.NotificationEmails ? "Enabled" : "Disabled")
                        );

                    EventLog.WriteEntry(message, EventLogEntryType.Information, SVC_INIT_EVENT_ID);

                    /// Finally, initialize the timers
                    Timer = new System.Timers.Timer
                    {
                        Interval = interval
                    };
                    Timer.Elapsed += Timer_Elapsed;
                    Timer.Start();

                    /// And the Timer that handles the update for our updater service
                    TimerUpd = new System.Timers.Timer
                    {
                        Interval = 1000 * 60 * 1
                    };
                    TimerUpd.Elapsed += TimerUpd_Elapsed;
                    TimerUpd.Start();
                }
                catch (Exception ex)
                {
                    EventLog.WriteEntry(ex.Message + "\n\n" + ex.ToString(),
                                        EventLogEntryType.Error, SVC_INIT_EVENT_ID);
                }
            }
            catch (Exception ex)
            {
                EventLog.WriteEntry(ex.Message + "\n\n" + ex.ToString(),
                                    EventLogEntryType.Error, SVC_INIT_EVENT_ID);
            }
        }
        private void InitializeServiceComponents()
        {
            try
            {
                InitializeEventLog();
            }
            catch { }

            try
            {
                InitializePaths();



                if (!System.IO.File.Exists(this.guiExePath))
                {
                    EventLog.WriteEntry("Main application assembly file is missing.\n\n" +
                                        "Application must be properly installed in order to access required assembly information and paths.",
                                        EventLogEntryType.Error, SVC_INIT_EVENT_ID);
                    return;
                }

                if (!System.IO.File.Exists(this.thisSvcExePath))
                {
                    EventLog.WriteEntry("Service assembly file is missing.\n\n" +
                                        "Application must be properly installed in order to access required assembly information and paths.",
                                        EventLogEntryType.Error, SVC_INIT_EVENT_ID);
                    return;
                }

                MattimonAgentLibrary.Tools.ProjectAssemblyAtrributes thisSvcAssemAttr =
                    new MattimonAgentLibrary.Tools.ProjectAssemblyAtrributes(
                        this.thisSvcExePath);


                String message = "";
                message = String.Format(

                    "{0}->InitializeServiceComponents\n\n" +
                    "Application path: {1}\n" +
                    "Service path: {2}\n" +
                    "Service path (Win32_Services->PathName): {3}\n\n" +
                    "MattimonAgentApplication.exe assembly information:\n\n" +
                    "Title: {4}\n" +
                    "Company: {5}\n" +
                    "Product: {6}\n" +
                    "Version: {7}\n\n" +
                    "CommonAppData directory: {8}",

                    ServiceName,
                    this.guiExePath,
                    this.thisSvcExePath,
                    MattimonAgentLibrary.Tools.MyServiceController.GetWin32ServicePathName(ServiceName),
                    this.thisSvcAssemAttr.AssemblyTitle,
                    this.thisSvcAssemAttr.AssemblyCompany,
                    this.thisSvcAssemAttr.AssemblyProduct,
                    this.thisSvcAssemAttr.GetAssemblyVersion(),
                    MattimonAgentLibrary.Static.Constants.CommonAppData
                    );


                /// Initialize the local database
                SQLiteClientDatabase = new SQLiteClientDatabase(

                    MattimonAgentLibrary.Static.Constants.CommonAppData,

                    MattimonAgentLibrary.Tools.RegistryTools.GetPublisherByDisplayName(
                        MattimonAgentLibrary.Static.MattimonRegistrySubkeyNames.DisplayName),

                    MattimonAgentLibrary.Static.MattimonRegistrySubkeyNames.DisplayName,

                    MattimonAgentLibrary.Static.Constants.LocalDatabaseName
                    );

                long   deviceId     = SQLiteClientDatabase.GetDeviceId();
                long   deviceTypeId = SQLiteClientDatabase.GetDeviceTypeId();
                long   userId       = SQLiteClientDatabase.GetUserId();
                long   companyId    = SQLiteClientDatabase.GetCompanyId();
                double interval     = SQLiteClientDatabase.GetReportingInterval();

                string agentId = SQLiteClientDatabase.GetAgentId();

                // Set global variables
                this.fetchedDeviceId     = deviceId;
                this.fetchedDeviceTypeId = deviceTypeId;
                this.fetchedUserId       = userId;
                this.fetchedCompanyId    = companyId;
                this.fetchedInterval     = interval;

                this.fetchedAgentId = agentId;


                // Prepare the rest request
                this.deviceRequests =
                    new MattimonAgentLibrary.Rest.DeviceRequests();


                try
                {
                    // Prepare the EventLongEntryListeners
                    // WARNING: The listener posts any event log entry that occurs.
                    // Service intervals do NOT apply in this case --- just a friendly reminder.
                    EventLogEntryListener = new EventLogEntryListener(
                        EventLogEntryListener_EntryWritten,
                        "Application", "Security", "System")
                    {
                        DebugLog = EventLog
                    };

                    // EDITED: The following statement has been removed from OnStart()
                    if (this.EventLogEntryListener != null)
                    {
                        this.EventLogEntryListener.StartListening();
                    }
                    // END EDITED;
                }
                catch (Exception ex)
                {
                    message += "\nError while initializing EventLogsEntryListeners.\n\n" + ex.Message + "\n\n" + ex.ToString() + "\n";
                }

                // Get the device Options
                MattimonAgentLibrary.Models.DeviceOptions deviceOptions =
                    RequestDeviceOptions(deviceId, userId, companyId);

                this.fetchedUseAgent       = deviceOptions.UseAgent;
                this.fetchedMonitorEvtLogs = deviceOptions.MonitorEventLog;

                message += String.Format(
                    "User authentication keys:\n\n" +
                    "User ID: {0}\n" +
                    "Company ID: {1}\n" +
                    "Device ID: {2}\n\n" +

                    "Device Options:\n\n" +
                    "Reporting interval (local): every {3} minute(s)\n" +
                    "Reporting inteval (server): every {4} minute(s)\n" +
                    "(Reporting interval on local and server must be identical)\n" +
                    "Email notifications: {5}",
                    userId,
                    companyId,
                    deviceId,
                    MattimonAgentLibrary.Tools.TimeSpanUtil.ConvertMillisecondsToMinutes(interval),
                    MattimonAgentLibrary.Tools.TimeSpanUtil.ConvertMillisecondsToMinutes(deviceOptions.ReportingInterval),
                    (deviceOptions.NotificationEmails ? "Enabled" : "Disabled")
                    );

                EventLog.WriteEntry(message, EventLogEntryType.Information, SVC_INIT_EVENT_ID);
            }
            catch (Exception ex)
            {
                EventLog.WriteEntry(ex.Message + "\n\n" + ex.ToString(),
                                    EventLogEntryType.Error, SVC_INIT_EVENT_ID);
            }
        }