-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Cindy Pham
committed
Feb 11, 2025
0 parents
commit 9b2abcd
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Helper functions for conversion | ||
function milesToKM(miles) { | ||
return miles * 1.60934; | ||
} | ||
|
||
function kmToMiles(km) { | ||
return km * 0.621371; | ||
} | ||
|
||
function feetToMeters(feet) { | ||
return feet * 0.3048; | ||
} | ||
|
||
function metersToFeet(meters) { | ||
return meters * 3.28084; | ||
} | ||
|
||
// Cloud Function to handle the conversion | ||
exports.convertDistance = (req, res) => { | ||
// Get the unit and value from the query parameters | ||
const unit = req.query.unit; | ||
const value = parseFloat(req.query.value); | ||
|
||
// Check if the value is a valid number | ||
if (isNaN(value)) { | ||
return res.status(400).send('Invalid value'); | ||
} | ||
|
||
let result; | ||
|
||
// Decide which conversion function to call based on the unit | ||
switch (unit) { | ||
case 'miles_to_km': | ||
result = milesToKM(value); | ||
break; | ||
case 'km_to_miles': | ||
result = kmToMiles(value); | ||
break; | ||
case 'feet_to_meters': | ||
result = feetToMeters(value); | ||
break; | ||
case 'meters_to_feet': | ||
result = metersToFeet(value); | ||
break; | ||
default: | ||
return res.status(400).send('Invalid unit'); | ||
} | ||
|
||
// Send the result back as a string (no extra words) | ||
res.status(200).send(result.toString()); | ||
}; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "distance-converter", | ||
"version": "1.0.0", | ||
"description": "A Google Cloud Function to convert distances.", | ||
"main": "index.js", | ||
"dependencies": {}, | ||
"devDependencies": {}, | ||
"scripts": { | ||
"start": "node index.js" | ||
}, | ||
"author": "Your Name", | ||
"license": "ISC" | ||
} |