Open Closed

How can I customize the login URL? #7697


User avatar
0
dfzamora created

Hello I have been trying to implement SAML authentication in my app, I have created a controller in the Auth Server which is going to do the redirect to an Azure App with SAML Auth enabled.

For now the Angular app redirects to account/login (plus the parameter of ReturnUrl) when the user is not logged in, this is something I would like to change, I would like to redirect to a custom URL of the Auth server, I do not want to remove the OpenId login since there are some users that are going to log in through that login and some others are login through SAML, the goal is to redirect to the custom URL by default when the user is not logged in, and show the login page of Abp only when the user writes the URL in the browser.

I have configured oAuthConfig ResponseType = token

  • ABP Framework version: v8.2
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Auth Server Separated (for Angular): yes

5 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    the goal is to redirect to the custom URL by default when the user is not logged in, and show the login page of Abp only when the user writes the URL in the browser.

    The angular using the https://github.com/manfredsteyer/angular-oauth2-oidc as oidc client. It uses the standard oauth2 protocol to set the redirect url in the query string. If you change the redirect url you may break the protocol.

    the goal is to redirect to the custom URL by default when the user is not logged in

    You can override the account/login page to challenge your SAML authentication.

  • User Avatar
    0
    dfzamora created

    In summary what I was looking for is to change the default url (in the frontend project) account/loginby something like auth/login, from my understanding the Account module from Abp relies on the accountroute to redirect when the user is not logged in, in the end this is what I had to do, to overcome my requirenments

    1. Overrided the route account/login to show a custom component which is going to redirect to a SAML Login App
    2. Loaded account module (this is the default line that comes with the project)
    3. Loaded account module under the route account/admin to allow the admin the ability to login using the default login (the one with openId)

    This is correctly working, but I am concerned about the double load of Account module, is there another way to do the same?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    I will ask our angular team.

  • User Avatar
    0
    sumeyye.kurtulus created
    Support Team Angular Developer

    Hello, I can suggest you to utilize the component replacement feature that framework proposes to override the default login page. In this case, you will need to consider AuthWrapperComponent to replace with a custom one.

    After the replacement, you can also implement your custom logic for the account/admin route in the same way.

  • User Avatar
    0
    dfzamora created

    Hello, Based on your replies, definitely there is no way to change account/login URL, for now, I will go with my solution, since the complement replacement doesn't fit my requirement, thanks for the support, I will close the ticket.

Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13