Jump to content

Implementation structure


This topic is 5096 days old. Please don't post here. Open a new topic instead.

Recommended Posts

What is the common procedure/structure for implementing a users management table inside a solution? (not using external server to authenticate)

I mean, if someone would like to use a custom login screen as well as provide a custom UI for the management of accounts and users (add/delete, reset passwords, assign privileges etc)?

What aspects of security do need to be considered?

Can anyone provide a complete model for that?

Link to comment
Share on other sites

Hmm, interesting. Useful to know. Thanks a lot.

But how do you usually create a "nice" GUI integrating the abilities usually wanted?

Or does all this mean that everytime the customer wants to add an account needs to re-hire the developer? (I hope not...)

I apologize if my questions are childish, please tolerate them...

Last minute question: Would an encrypted field for storing account and privilege info solve the problem? Also does all that mean that a separation model is the way to go?

Edited by Guest
Link to comment
Share on other sites

Basically, I'm in the learning process...

Trying to figure out what is the correct and safe way to go. I'm not a professional developer, just an amateur with growing plans.

I'm currently developing for my own needs, but soon enough I am going to develop small scale applications for a small number of users at work (~10 people), and I'm trying to plan my next steps.

What I would like to do is to have a UI to manage accounts not by me (so-caled developer) but simple users (not privilige-wise).

Link to comment
Share on other sites

It's OK to have a table that stores the user names. Do NOT store passwords in it.

Use the built-in script steps to create and delete user accounts. To add a user account you'd prompt for a username, check it is unique, create the record in the Users table and use the Add Account script to create the account in the database with a default password that is set to require changing on first login. That way there is no need to know the user's passwords. When the account record is deleted from the Users table use the Delete Account script step to delete the actual account from the file. This keeps the Users table and the actual accounts in sync.

Use record level access privilege sets to control access, don't try to tricky things with scripts and global fields to control access: they do not work.

The developer will be needed whenever a new privilege set needs to be created, but for everything else the users can do it themselves.

OTOH external authentication is quick and easy and not just for big organisations. I set up an art gallery with EA a month ago, they have just 4 users but the database solution consists of 21 files. Automating account management in 21 files is too much work.

Link to comment
Share on other sites

This topic is 5096 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.