Exemplo n.º 1
0
        private async Task <IEnumerable <SubscriptionModel> > GetResourcesAsync(IAssessmentContext context, IEnumerable <string> detailedResourceTypes)
        {
            if (!string.IsNullOrWhiteSpace(context.ResourceCachePath))
            {
                try
                {
                    var content = File.ReadAllText(context.ResourceCachePath);
                    return(JsonConvert.DeserializeObject <IEnumerable <SubscriptionModel> >(content));
                }
                catch
                {
                    // Failed get resources from local cache. Clear `detailedResourceTypes` to force the full list retrieved by API
                    detailedResourceTypes = null;
                }
            }

            var serviceFactory  = this.GetServiceFactory(context);
            var resourceManager = serviceFactory.GetResourceManager();
            var subscriptions   = await resourceManager.GetResourcesAsync(detailedResourceTypes);

            if (!string.IsNullOrWhiteSpace(context.ResourceCachePath))
            {
                File.WriteAllText(
                    context.ResourceCachePath,
                    JsonConvert.SerializeObject(
                        subscriptions,
                        Formatting.Indented,
                        new JsonSerializerSettings
                {
                    NullValueHandling = NullValueHandling.Ignore
                }));
            }

            return(subscriptions);
        }
Exemplo n.º 2
0
 public CostEstimationManager(
     IAssessmentContext context,
     IBillingProvider billingProvider,
     IListPriceProvider listPriceProvider)
 {
     this.context           = context;
     this.billingProvider   = billingProvider;
     this.listPriceProvider = listPriceProvider;
 }
Exemplo n.º 3
0
        private IServiceFactory GetServiceFactory(IAssessmentContext context)
        {
            if (context.ARMAccessToken != null)
            {
                return(new ServiceFactoryForAccessToken(context));
            }

            if (context.UsageReport != null)
            {
                return(new ServiceFactoryForUsageReport(context));
            }

            throw new ArgumentException("Missing access token or usage file");
        }
Exemplo n.º 4
0
        // TODO: split code file
        public async Task <AssessmentReport> ProcessAsync(
            IAssessmentContext context,
            ServiceParityResult serviceParityResult,
            CostEstimationResult costEstimationResult)
        {
            var reportFilePath =
                await this.CreateReportAsync(
                    serviceParityResult,
                    costEstimationResult);

            return(new AssessmentReport
            {
                ReportFilePath = reportFilePath
            });
        }
Exemplo n.º 5
0
 public ResourceManagerForUsageReport(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 6
0
 public RateCardListPriceProvider(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 7
0
 public RateCardBillingProvider(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 8
0
 public TargetListPriceProvider(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 9
0
 public ResourceManager(IAssessmentContext context)
 {
     this.context = context;
 }
 public ServiceFactoryForUsageReport(IAssessmentContext context)
     : base(context)
 {
 }
 public RateCardBillingProviderForUsageReport(IAssessmentContext context)
 {
     this.context = context;
 }
 public ServiceFactoryForAccessToken(IAssessmentContext context)
     : base(context)
 {
 }
Exemplo n.º 13
0
 public ServiceParityManager(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 14
0
 public ReportManager(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 15
0
        public async Task <AssessmentReport> GenerateReportAsync(
            IAssessmentContext context,
            string targetRegion)
        {
            var serviceFactory = this.GetServiceFactory(context);

            // TODO: add telemetry and performance metrics for each steps.
            var billProvider      = serviceFactory.GetBillProvider();
            var listPriceProvider = serviceFactory.GetListPriceProvider();

            // TODO: resolve from IoC container.
            var serviceParityManager = new ServiceParityManager(context);

            var detailedResourceTypes = serviceParityManager.LoadRules();

            context.TelemetryManager.WriteLog(
                TelemetryLogLevel.Verbose,
                TelemetryLogSection,
                FormattableString.Invariant($"Got {detailedResourceTypes.Count()} detailed resource types"));

            IEnumerable <SubscriptionModel> subscriptions = null;

            try
            {
                subscriptions = await this.GetResourcesAsync(context, detailedResourceTypes);
            }
            catch (Exception ex)
            {
                throw new ResourceException("Failed to retrieve Azure resource data due to insufficient permission. Please check your Azure RBAC role and ensure you have any of the role below for the whole subscription: Reader, Contributor and Owner.", ex);
            }

            var resources = subscriptions.SelectMany(m => m.ResourceGroups.SelectMany(r => r.Value));

            context.TelemetryManager.WriteLog(
                TelemetryLogLevel.Verbose,
                TelemetryLogSection,
                FormattableString.Invariant($"Got {resources.Count()} resources"));

            var serviceParityResult = serviceParityManager.Process(subscriptions, targetRegion);

            context.TelemetryManager.WriteLog(
                TelemetryLogLevel.Verbose,
                TelemetryLogSection,
                FormattableString.Invariant($"Got service parity pass result: {serviceParityResult.Pass} with {serviceParityResult.Details.Count()} detail items"));

            var costEstimationManager = new CostEstimationManager(
                context,
                billProvider,
                listPriceProvider);

            var costEstimationResult = await costEstimationManager.ProcessAsync(
                subscriptions,
                targetRegion);

            context.TelemetryManager.WriteLog(
                TelemetryLogLevel.Verbose,
                TelemetryLogSection,
                FormattableString.Invariant($"Got cost estimation result for {costEstimationResult.ResourcesCount} resources of {costEstimationResult.ResourceGroupsCount} resource groups"));

            var reportManager = new ReportManager(context);

            var assessmentReport = await reportManager.ProcessAsync(
                serviceParityResult,
                costEstimationResult);

            context.TelemetryManager.WriteLog(
                TelemetryLogLevel.Verbose,
                TelemetryLogSection,
                FormattableString.Invariant($"Generated assessment report in local file: {assessmentReport.ReportFilePath}"));

            return(assessmentReport);
        }
Exemplo n.º 16
0
 public RateCardListPriceProviderForUsageReport(IAssessmentContext context)
 {
     this.context = context;
 }
Exemplo n.º 17
0
 public ServiceFactoryBase(IAssessmentContext context)
 {
     this.Context = context;
 }