Digital Ocean App Platform and Security Provider Restricts

Hi Everyone,

I’ve been able to deploy my app onto Digital Ocean’s App Platform. Its connected to an existing Postgres DB cluster that I created thru Wappler DB Manager. My local Wappler target is a Wappler Local Node Server and I manually added the Postgres connection. After changes are tested and pass, I would update Git and that will deploy to Digital Ocean. I can access pages (without access restricts) and update the database tables thru server connect forms.

On my local server, I’ve been able to test the argon login functionality and restrict access to my various pages. It worked with my other configurations as well (docker+droplet). However, when I deploy to the App platform, the page restrict functionality doesn’t work and crashes the app. Maybe I’m missing some packages or modules for the App platform deployment? Does anyone know what the issue maybe? I’ve upgraded to the latest Wappler version (4.6.2) and it still doesn’t work.

Any guidance would be greatly appreciated! Have a great weekend.

Thanks!

Do you have any log messages about the app crashing? Maybe database connection can’t be established.

I just redeployed and updated the ca certificate as a precaution. I didn’t copy the entire log as it goes thru various api workflows that queries the db and they work. This error message pops up after login and redirects to a restricted page. Both the layout and content page have the same restrict access. I’ve also tested with Node v16.4 and it had the same outcome.

Here is the error message:

[production-postgres] [2022-02-25 17:41:45] 2022-02-25T17:41:45.887Z server-connect:app Executing action step refresh
[production-postgres] [2022-02-25 17:41:45] 2022-02-25T17:41:45.887Z server-connect:app options: { action: ‘dash_load/cc’ }
[production-postgres] [2022-02-25 17:41:45] 2022-02-25T17:41:45.891Z server-connect:app Executing action step refresh
[production-postgres] [2022-02-25 17:41:45] 2022-02-25T17:41:45.891Z server-connect:app options: { action: ‘admin/currencies/get_currencies’ }
[production-postgres] [2022-02-25 17:41:45] 2022-02-25T17:41:45.891Z server-connect:app Executing action step setvalue
[production-postgres] [2022-02-25 17:41:45] 2022-02-25T17:41:45.891Z server-connect:app options: { key: ‘type’, value: ‘{{exec3.type}}’ }
[production-postgres] [2022-02-25 17:41:46] 2022-02-25T17:41:46.100Z server-connect:app Executing action step restrict
[production-postgres] [2022-02-25 17:41:46] 2022-02-25T17:41:46.100Z server-connect:app options: {
[production-postgres] [2022-02-25 17:41:46] provider: ‘argon’,
[production-postgres] [2022-02-25 17:41:46] permissions: [ ‘sys_user’ ],
[production-postgres] [2022-02-25 17:41:46] loginUrl: ‘/login’,
[production-postgres] [2022-02-25 17:41:46] forbiddenUrl: ‘/login’
[production-postgres] [2022-02-25 17:41:46] }
[production-postgres] [2022-02-25 17:41:46] 2022-02-25T17:41:46.101Z server-connect:auth No login cookie found
[production-postgres] [2022-02-25 17:41:46] /workspace/lib/auth/provider.js:82
[production-postgres] [2022-02-25 17:41:46] this.app.res.redirect(opts.loginUrl);
[production-postgres] [2022-02-25 17:41:46] ^
[production-postgres] [2022-02-25 17:41:46]
[production-postgres] [2022-02-25 17:41:46] TypeError: this.app.res.redirect is not a function
[production-postgres] [2022-02-25 17:41:46] at DatabaseProvider.restrict (/workspace/lib/auth/provider.js:82:34)
[production-postgres] [2022-02-25 17:41:46] at App.restrict (/workspace/lib/modules/auth.js:50:25)
[production-postgres] [2022-02-25 17:41:46] at async App._exec (/workspace/lib/core/app.js:481:30)
[production-postgres] [2022-02-25 17:41:46] at async App._exec (/workspace/lib/core/app.js:452:17)
[production-postgres] [2022-02-25 17:41:46] at async App.exec (/workspace/lib/core/app.js:421:9)
[production-postgres] [2022-02-25 17:41:46] at async App.define (/workspace/lib/core/app.js:411:9)
[production-postgres] [2022-02-25 17:41:46] at async /workspace/lib/setup/sockets.js:72:29
[production-postgres] [2022-02-25 17:41:46]
[production-postgres] [2022-02-25 17:41:46] Node.js v17.6.0
[production-postgres] [2022-02-25 17:41:46] [nodemon] app crashed - waiting for file changes before starting…