Ejemplo n.º 1
0
 public MockMagpie(string validUrl, IDebuggingInfoLogger infoLogger = null, IAnalyticsLogger analyticsLogger = null)
     : base(new AppInfo(validUrl), infoLogger, analyticsLogger)
 {
     _remoteContentDownloader = Substitute.For <IRemoteContentDownloader>();
     _remoteContentDownloader.DownloadStringContent(validUrl, Arg.Any <IDebuggingInfoLogger>()).Returns(Task.FromResult(VALID_JSON));
     RemoteContentDownloader = _remoteContentDownloader;
 }
Ejemplo n.º 2
0
 internal DownloadWindowViewModel(AppInfo appInfo, IDebuggingInfoLogger logger,
                                  IRemoteContentDownloader contentDownloader)
 {
     AppIconPath        = appInfo.AppIconPath;
     _logger            = logger;
     _contentDownloader = contentDownloader;
 }
Ejemplo n.º 3
0
 public MagpieService(AppInfo appInfo, IDebuggingInfoLogger debuggingInfoLogger = null)
 {
     _appInfo = appInfo;
     _logger = debuggingInfoLogger ?? new DebuggingWindowViewModel();
     RemoteContentDownloader = new DefaultRemoteContentDownloader();
     UpdateDecider = new UpdateDecider(_logger);
 }
Ejemplo n.º 4
0
 public MockMagpieUpdater(string validUrl, IDebuggingInfoLogger infoLogger = null) : base(new AppInfo(validUrl), infoLogger)
 {
     var validJson = VALID_JSON.Replace("'", "\"");
     _remoteContentDownloader = Substitute.For<IRemoteContentDownloader>();
     _remoteContentDownloader.DownloadStringContent(validUrl).Returns(Task.FromResult(validJson));
     base.RemoteContentDownloader = _remoteContentDownloader;
 }
Ejemplo n.º 5
0
 public MainWindowViewModel(AppInfo appInfo, IDebuggingInfoLogger logger, IRemoteContentDownloader contentDownloader, IAnalyticsLogger analyticsLogger)
 {
     AppIconPath = appInfo.AppIconPath;
     _logger = logger;
     _contentDownloader = contentDownloader;
     _analyticsLogger = analyticsLogger;
 }
Ejemplo n.º 6
0
 public MainWindowViewModel(AppInfo appInfo, IDebuggingInfoLogger logger, IRemoteContentDownloader contentDownloader, IAnalyticsLogger analyticsLogger)
 {
     AppIconPath        = appInfo.AppIconPath;
     _logger            = logger;
     _contentDownloader = contentDownloader;
     _analyticsLogger   = analyticsLogger;
 }
Ejemplo n.º 7
0
        public MockMagpieUpdater(string validUrl, IDebuggingInfoLogger infoLogger = null) : base(new AppInfo(validUrl), infoLogger)
        {
            var validJson = VALID_JSON.Replace("'", "\"");

            _remoteContentDownloader = Substitute.For <IRemoteContentDownloader>();
            _remoteContentDownloader.DownloadStringContent(validUrl).Returns(Task.FromResult(validJson));
            base.RemoteContentDownloader = _remoteContentDownloader;
        }
Ejemplo n.º 8
0
 public MagpieUpdater(AppInfo appInfo, IDebuggingInfoLogger debuggingInfoLogger = null, IAnalyticsLogger analyticsLogger = null)
 {
     _appInfo                = appInfo;
     _logger                 = debuggingInfoLogger ?? new DebuggingWindowViewModel();
     _analyticsLogger        = analyticsLogger ?? new AnalyticsLogger();
     RemoteContentDownloader = new DefaultRemoteContentDownloader();
     UpdateDecider           = new UpdateDecider(_logger);
 }
Ejemplo n.º 9
0
 public MockMainWindowViewModel(AppInfo appInfo, IDebuggingInfoLogger logger,
                                IRemoteContentDownloader contentDownloader, IAnalyticsLogger analyticsLogger)
     : base(appInfo, logger, contentDownloader, analyticsLogger)
 {
     DownloadNowCommand     = new DelegateCommand(message => analyticsLogger.LogDownloadNow());
     SkipThisVersionCommand = new DelegateCommand(message => analyticsLogger.LogUserSkipsUpdate(new Channel()));
     RemindMeLaterCommand   = new DelegateCommand(message => analyticsLogger.LogRemindMeLater());
 }
Ejemplo n.º 10
0
 public MagpieUpdater(AppInfo appInfo, IDebuggingInfoLogger debuggingInfoLogger = null, IAnalyticsLogger analyticsLogger = null)
 {
     _appInfo = appInfo;
     _logger = debuggingInfoLogger ?? new DebuggingWindowViewModel();
     _analyticsLogger = analyticsLogger ?? new AnalyticsLogger();
     RemoteContentDownloader = new DefaultRemoteContentDownloader();
     UpdateDecider = new UpdateDecider(_logger);
 }
 public async Task <string> DownloadStringContent(string url, IDebuggingInfoLogger logger = null)
 {
     try
     {
         using (var client = new WebClient())
         {
             return(await client.DownloadStringTaskAsync(new Uri(url)).ConfigureAwait(false));
         }
     }
     catch (Exception e)
     {
         if (logger != null)
         {
             logger.Log(e.Message);
         }
         return(string.Empty);
     }
 }
        public async Task <string> DownloadFile(string sourceUrl, string destinationPath, Action <int> onProgressChanged, IDebuggingInfoLogger logger = null)
        {
            try
            {
                using (var client = new WebClient())
                {
                    client.DownloadProgressChanged += (s, e) => onProgressChanged(e.ProgressPercentage);
                    var uri = new Uri(sourceUrl);
                    await client.DownloadFileTaskAsync(uri, destinationPath).ConfigureAwait(false);

                    return(destinationPath);
                }
            }
            catch (Exception e)
            {
                if (logger != null)
                {
                    logger.Log(e.Message);
                }
                return(string.Empty);
            }
        }
Ejemplo n.º 13
0
 public ExampleMagpie(AppInfo appInfo, IDebuggingInfoLogger debuggingInfoLogger = null, IAnalyticsLogger analyticsLogger = null)
     : base(appInfo, debuggingInfoLogger, analyticsLogger)
 {
 }
Ejemplo n.º 14
0
 internal DownloadWindowViewModel(AppInfo appInfo, IDebuggingInfoLogger logger, IRemoteContentDownloader contentDownloader)
 {
     AppIconPath = appInfo.AppIconPath;
     _logger = logger;
     _contentDownloader = contentDownloader;
 }
Ejemplo n.º 15
0
 public UpdateDecider(IDebuggingInfoLogger debuggingInfoLogger)
 {
     _logger = debuggingInfoLogger;
     _registryIO = new RegistryIO();
 }
Ejemplo n.º 16
0
 public BestChannelFinder(IDebuggingInfoLogger logger)
 {
     _logger = logger;
 }
Ejemplo n.º 17
0
 public UpdateDecider(IDebuggingInfoLogger debuggingInfoLogger)
 {
     _logger     = debuggingInfoLogger;
     _registryIO = new RegistryIO();
 }
Ejemplo n.º 18
0
 internal UpdateDecider(IDebuggingInfoLogger debuggingInfoLogger, RegistryIO registryIO)
 {
     _logger     = debuggingInfoLogger;
     _registryIO = registryIO ?? new RegistryIO();
 }
Ejemplo n.º 19
0
 public UpdateDecider(IDebuggingInfoLogger debuggingInfoLogger) : this(debuggingInfoLogger, new RegistryIO())
 {
 }
Ejemplo n.º 20
0
 public MockMainWindowViewModel(AppInfo appInfo, IDebuggingInfoLogger logger, IRemoteContentDownloader contentDownloader, IAnalyticsLogger analyticsLogger) : base(appInfo, logger, contentDownloader, analyticsLogger)
 {
     DownloadNowCommand = new DelegateCommand(message=> analyticsLogger.LogDownloadNow());
     SkipThisVersionCommand = new DelegateCommand(message => analyticsLogger.LogSkipThisVersion());
     RemindMeLaterCommand = new DelegateCommand(message => analyticsLogger.LogRemindMeLater());
 }