Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "BobIngham"

Angular cli 6.0.8, Node 8.11.4, OS Win32, Angular 6.0.0 @angular-devkit/architect 0.6.0 @angular-devkit/build-angular 0.6.0 @angular-devkit/build-optimizer 0.6.0 @angular-devkit/core 0.6.8 @angular-devkit/schematics 0.6.8 @angular/cdk 6.4.7 @angular/cli 6.0.8 @angular/compiler-cli 6.0.4 @ngtools/webpack 6.0.0 @schematics/angular 0.6.8 @schematics/update 0.6.8 rxjs 6.1.0 typescript 2.7.2 webpack 4.6.0 The .net core soluition is gramework 4.6.1 but the Mongo and BlobStorage projects and .NET standard 2.0 Does that help? Thanks for your help.

Hi @maliming, I reached a dead-end and I have sent you a copy of my project by email. I'm hoping you can help me in this because I'm fairly much at my wits end! Cheers, Bob

You might also find this useful for scheduling inside of Hangfire. https://www.twilio.com/docs/sms/tutorials/appointment-reminders-csharp-mvc

@maliming, I will investigate further by placing some log statements in the GetCurrentLoginInformations method on the server and also place some console.log statements in angular. I'm not sure what this means exactly (in terms of what I physically have to do):

In order to rule out the problem of azure. You can deploy multiple domain name environments locally, modify the domain name in your computer's Host file, and then bind the domain name in IIS, which helps to debug the problem.

So I may come back to you to explain this if I reach another dead-end. Thanks for your assistance and guidance so far.

@maliming, thanks for the reply but I still have no luck. My appconfig.json file looks as follows:

{
  "remoteServiceBaseUrl": "http://{TENANCY_NAME}.projectname.api",
  "appBaseUrl": "http://{TENANCY_NAME}.projectname.ui"
}

I have changed my Azure settings accordingly:

I am expecting the page to pick up the tenant from the sub-domain in the browser bar. I have applied some debug statements in the login page. Here is an example after I have impersonated a user in the tenant and logged out:

If you traverse to [subdomain.websitehere] you will see that the debug value for tenant session object is null.

Any ideas anyone, I'm kind of getting a bit desperate now and definitely getting balder as I tear more of my hair out....

Hi Vlad, I think the key here is to override EntityHistoryStore. Paste a copy (I seem to tremember it's in Boilerplate) and inject in ProjectNameCoreModule:

Configuration.ReplaceService<IEntityHistoryStore, YourEntityHistoryStore>(DependencyLifeStyle.Transient);

Then modify the SaveAsync method accordingly. Personally I choose to save entity history in Mongodb because of the size of data (I also use Mongodb for audit log entries) so my personal override uses a Mongodb interface. Let me know if you want the code and I will post accordingly but, judging by your product, your guys seem to be proficient enough to take this forward.

see #5856

Hi Jasen, I took a different approach and successfully hooked into Nuagecare.Migrations.Seed.SeedHelper:

public static void SeedHostDb(NuagecareDbContext context)
{
    context.SuppressAutoSetTenantId = true;

    //Host seed
    new InitialHostDbBuilder(context).Create();

    //Default tenant seed (in host database).
    new DefaultTenantBuilder(context).Create();
     new DefaultTenantDataBuilder(context, 1).Create();

    var tenants = context.Tenants.ToList();
    foreach (var tenant in tenants)
    {
        new TenantRoleAndUserBuilder(context, tenant.Id).Create();
    }
}

And then, within TenantRoleAndUserBuilder(context, tenant.Id).Create():

public void Create()
{
    CreateRolesAndUsers();
}

And, in CreateRolesAndUsers() here is a sample role with base permissions allocated:

var carerRole = _context.Roles.IgnoreQueryFilters().FirstOrDefault(r => r.TenantId == _tenantId && r.Name == StaticRoleNames.Tenants.Carer);
if (carerRole == null)
{
    carerRole = _context.Roles.Add(new Role(_tenantId, StaticRoleNames.Tenants.Carer, StaticRoleNames.Tenants.Carer) { IsStatic = true, IsDefault = true }).Entity;
    _context.SaveChanges();

    //Grant selected permissions to carer role
    var permissions = PermissionFinder
        .GetAllPermissions(new AppAuthorizationProvider(false))
        .Where(p => p.MultiTenancySides.HasFlag(MultiTenancySides.Tenant))
        .ToList();

    foreach (var permission in permissions)
    {
        if (
            permission.Name == "Pages.Tenant.Dashboard" ||
            permission.Name == "Pages.NcEntities" ||
            permission.Name == "Pages.NcEntity.Display" ||
            permission.Name == "Pages.NcEntity.Display.Dashboard" ||
            permission.Name == "Pages.NcEntity.Display.Profile" ||
            permission.Name == "Pages.NcEntity.Display.Profile.Metrics" ||
            permission.Name == "Pages.NcEntity.NcCarePlans" ||
            permission.Name == "Pages.NcEntity.NcCarePlan.Read" ||
            permission.Name == "Pages.NcEntity.NcWarnings"
            )
        {
            _context.Permissions.Add(
                new RolePermissionSetting
                {
                    TenantId = _tenantId,
                    Name = permission.Name,
                    IsGranted = true,
                    RoleId = carerRole.Id
                });
        }
    }
    _context.SaveChanges();
}

That will create your roles with default permissions across all tenants.

My attempts to do exactly this are documented here: https://support.aspnetzero.com/QA/Questions/5873 My thoughts were to leverage the seed helper class to call each tenant:

public static void SeedHostDb(NuagecareDbContext context)
{
    context.SuppressAutoSetTenantId = true;

    //Host seed
    new InitialHostDbBuilder(context).Create();

    //Default tenant seed (in host database).
    new DefaultTenantBuilder(context).Create();

    //how do I get all tenants here?
    //foreach (var tenant in tenants)....
    new TenantRoleAndUserBuilder(context, tenant.id).Create();
    new DefaultTenantDataBuilder(context, tenant.id).Create();
}

and then, in my_ TenantRoleAndUserBuilder.Create()_ method:

private void CreateRolesAndUsers()
{
    //Carer role
    _context.Roles.Add(new Role(_tenantId, StaticRoleNames.Tenants.Carer, StaticRoleNames.Tenants.Carer) { IsStatic = true, IsDefault = true });

    var carerRole = _context.Roles.IgnoreQueryFilters().FirstOrDefault(r => r.TenantId == _tenantId && r.Name == StaticRoleNames.Tenants.Carer);
    if (carerRole == null)
    {
        //Grant permissions to carer role
        var permissions = PermissionFinder
            .GetAllPermissions(new AppAuthorizationProvider(false))
            .Where(p => p.MultiTenancySides.HasFlag(MultiTenancySides.Tenant))
            .ToList();

        foreach (var permission in permissions)
        {
            if (
                permission.Name == "Pages.Tenant.Dashboard" ||
                permission.Name == "Pages.NcEntities" ||
                permission.Name == "Pages.NcEntity.Display" ||
                permission.Name == "Pages.NcEntity.Display.Dashboard" ||
                permission.Name == "Pages.NcEntity.Display.Profile" ||
                permission.Name == "Pages.NcEntity.Display.Profile.Metrics" ||
                permission.Name == "Pages.NcEntity.NcCarePlans" ||
                permission.Name == "Pages.NcEntity.NcCarePlan.Read" ||
                permission.Name == "Pages.NcEntity.NcWarnings"
                )
            {
                _context.Permissions.Add(
                    new RolePermissionSetting
                    {
                        TenantId = _tenantId,
                        Name = permission.Name,
                        IsGranted = true,
                        RoleId = carerRole.Id
                    });
            }
        }
        _context.SaveChanges();
    }
}

However, I can't work out how to get the list of tenants in the seed helper class. Is there a solution to the problem of creating roles for tenants with pre-defined permissions?

Because within the method: TenantRoleAndUserBuilder(context, tenant.id).Create(); I am setting permissions and need the tenant number.:

private void CreateRolesAndUsers()
{
    //Staff role
    _context.Roles.Add(new Role(_tenantId, StaticRoleNames.Tenants.Carer, StaticRoleNames.Tenants.Carer) { IsStatic = true, IsDefault = true });

    var carerRole = _context.Roles.IgnoreQueryFilters().FirstOrDefault(r => r.TenantId == _tenantId && r.Name == StaticRoleNames.Tenants.Carer);
    if (carerRole == null)
    {
        //Grant all permissions to admin role
        var permissions = PermissionFinder
            .GetAllPermissions(new AppAuthorizationProvider(false))
            .Where(p => p.MultiTenancySides.HasFlag(MultiTenancySides.Tenant))
            .ToList();

        foreach (var permission in permissions)
        {
            if (
                permission.Name == "Pages.Tenant.Dashboard" ||
                permission.Name == "Pages.NcEntities" ||
                permission.Name == "Pages.NcEntity.Display" ||
                permission.Name == "Pages.NcEntity.Display.Dashboard" ||
                permission.Name == "Pages.NcEntity.Display.Profile" ||
                permission.Name == "Pages.NcEntity.Display.Profile.Metrics" ||
                permission.Name == "Pages.NcEntity.NcCarePlans" ||
                permission.Name == "Pages.NcEntity.NcCarePlan.Read" ||
                permission.Name == "Pages.NcEntity.NcWarnings"
                )
            {
                _context.Permissions.Add(
                    new RolePermissionSetting
                    {
                        TenantId = _tenantId,
                        Name = permission.Name,
                        IsGranted = true,
                        RoleId = carerRole.Id
                    });
            }
        }
        _context.SaveChanges();
    }
}

And therefore i would like to seed each tenant indivdiually.

Showing 331 to 340 of 477 entries