i am looking for help on an up down voting system.
at the moment i have a voting table that references the user that voted , the user who was voted for and the piece of information(a parking spot) that was voted for
CREATE TABLE parking_spots_votes(
vote_id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,
parking_spot_id INTEGER DEFAULT NULL,
key parking_spot_id_fk (parking_spot_id),
FOREIGN KEY (parking_spot_id) REFERENCES parking_spots(id),
uploaded_by_user_id INTEGER DEFAULT NULL,
key user_id_fk (uploaded_by_user_id),
FOREIGN KEY (uploaded_by_user_id) REFERENCES parking_angel_users(id),
vote_casted_user_id INTEGER DEFAULT NULL,
key vote_cast_user_id_fk (vote_casted_user_id),
FOREIGN KEY (vote_casted_user_id) REFERENCES parking_angel_users(id),
vote_type INTEGER NOT NULL
)
vote type can be 0 for no vote, 1 for up vote, 2 for downvote
now i am having a little logical trouble.
for example
- what if the user has already voted on a parking_spot
How do i check if a user has already voted and if he has not then insert but if he has then do not a return voted already.
How do i update a user(uploaded_by_user_id) score. plus one for an up vote and minus one for a down vote.
so the general flow would be ,
A user presses up vote, the server checks if has been voted for already, if so then you cant vote again. if not then the vote_casted_user_id = current user , parking_spot_id = current info , uploaded_by_user_id = the person who uploaded the info , then the uploaded_by_user score would update depending on the vote type.
I am using java servlet with a JDBC connection to a MYSQL database.
Any ideas for me?