Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port Customer DAO to use PDO #551

Merged
merged 9 commits into from
Jan 25, 2022
Merged

Port Customer DAO to use PDO #551

merged 9 commits into from
Jan 25, 2022

Conversation

jaragunde
Copy link
Member

This does some refactoring to reuse the runSelectQuery() function and ports another DAO, CustomerDAO, to use the PDO API. Part of #513.

Includes a patch for #431. Also removes unused code.

It will be reused by other DAOs. The class name for PDO::FETCH_CLASS
is now passed as a parameter.
The declaration in CustomerDAO was shadowed by the one in
PostgreSQLCustomerDAO, it was actually invalid because it was declared
"protected", which didn't allow the DAOFactory to instantiate it.
The query for getAll when $active is set was incorrect, so it has been
changed. The front end is not using it, but it can be tested calling
web/services/getUserCustomersService.php?active=true

CustomerVO property names changed for PDO::FETCH_CLASS to work.
Copy link
Member

@anarute anarute left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clean up looks good, I haven't tested the code manually though and added some nit comments but it's a personal preference, if you don't agree with them you can ignore

web/services/getUserCustomersService.php Outdated Show resolved Hide resolved
model/dao/CustomerDAO/PostgreSQLCustomerDAO.php Outdated Show resolved Hide resolved
The query was incorrect and we hadn't noticed because it's not
currently used by our front end. It can be tested calling
web/services/getUserCustomersService.php?uid=admin&active=true
It was only used from SectorDAO::GetCustomers, which was in turn
unused.
We also remove unnecessary checks for the customer id in update and
delete operations.
Fixes:
* Undefined index: sid, uid, active, login, order
* Undefined variable: string
@jaragunde jaragunde merged commit edd6c61 into main Jan 25, 2022
@jaragunde jaragunde deleted the pdo-customer branch January 25, 2022 08:30
This was referenced Jan 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants