-
Notifications
You must be signed in to change notification settings - Fork 515
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
Annas Project Mongo API- cats #513
Open
Anna2024WebDev
wants to merge
3
commits into
Technigo:master
Choose a base branch
from
Anna2024WebDev:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HIPPIEKICK
approved these changes
Dec 18, 2024
Comment on lines
+69
to
+103
app.get("/", (request, response) => { | ||
const endpoints = listEndpoints(app); // Fetch all available routes | ||
response.json({ | ||
message: | ||
"Miao Miao! Welcome to the Cats Mongo API! Here you can find all types of cats. Below are the available endpoints", | ||
endpoints: endpoints, // Send the list of endpoints as JSON | ||
}); | ||
}); | ||
|
||
app.get("/cats", async (request, response) => { | ||
const { personality, fur_length, commonality, breed } = request.query; | ||
|
||
// Build the query object based on provided parameters | ||
const query = {}; | ||
|
||
// If no query parameters are provided, return all cats | ||
if (personality) query.personality = { $regex: new RegExp(personality, "i") }; // Case-insensitive search | ||
if (fur_length) query.fur_length = { $regex: new RegExp(fur_length, "i") }; | ||
if (commonality) query.commonality = { $regex: new RegExp(commonality, "i") }; | ||
if (breed) query.breed = { $regex: new RegExp(breed, "i") }; | ||
|
||
try { | ||
// Query the MongoDB 'Cat' collection | ||
const matchingCats = await Cat.find(query); | ||
|
||
if (matchingCats.length > 0) { | ||
response.json(matchingCats); // Return the matching cats | ||
} else { | ||
response.status(404).send("No cats found with the specified criteria"); | ||
} | ||
} catch (error) { | ||
console.error("Error fetching cats:", error); | ||
response.status(500).send("Server error occurred"); | ||
} | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done query-building 💯
|
||
try { | ||
// Query MongoDB for the cat with the given custom 'id' field (cast to Number) | ||
const cat = await Cat.findOne({ id: parseInt(id) }); // Convert the id to an integer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Each instance gets its own mongoDB ID so we can use that
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Netlify link
https://project-mongo-api-cats.onrender.com/cats