Skip to content

Commit

Permalink
Avengers REST Function
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthebrit committed Aug 25, 2024
1 parent 7876fc5 commit b3f2bee
Show file tree
Hide file tree
Showing 9 changed files with 267 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"ms-python.python"
]
}
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Python Functions",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 9091
},
"preLaunchTask": "func: host start"
}
]
}
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
{
"files.associations": {
"UPTIME.C": "cpp"
}
},
"azureFunctions.deploySubpath": "Functions\\AvengersInfo",
"azureFunctions.scmDoBuildDuringDeployment": true,
"azureFunctions.pythonVenv": ".venv",
"azureFunctions.projectLanguage": "Python",
"azureFunctions.projectRuntime": "~4",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.projectLanguageModel": 2
}
33 changes: 33 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "func",
"label": "func: host start",
"command": "host start",
"problemMatcher": "$func-python-watch",
"isBackground": true,
"dependsOn": "pip install (functions)",
"options": {
"cwd": "${workspaceFolder}/Functions\\AvengersInfo"
}
},
{
"label": "pip install (functions)",
"type": "shell",
"osx": {
"command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt"
},
"windows": {
"command": "${config:azureFunctions.pythonVenv}\\Scripts\\python -m pip install -r requirements.txt"
},
"linux": {
"command": "${config:azureFunctions.pythonVenv}/bin/python -m pip install -r requirements.txt"
},
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/Functions\\AvengersInfo"
}
}
]
}
8 changes: 8 additions & 0 deletions Functions/AvengersInfo/.funcignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.git*
.vscode
__azurite_db*__.json
__blobstorage__
__queuestorage__
local.settings.json
test
.venv
135 changes: 135 additions & 0 deletions Functions/AvengersInfo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don’t work, or not
# install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Azure Functions artifacts
bin
obj
appsettings.json
local.settings.json

# Azurite artifacts
__blobstorage__
__queuestorage__
__azurite_db*__.json
.python_packages
42 changes: 42 additions & 0 deletions Functions/AvengersInfo/function_app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import azure.functions as func
import json

# Dictionary of Avenger code names and real names
avengers = {
'IronMan': 'Tony Stank',
'CaptainAmerica': 'Steve Rogers',
'BlackWidow': 'Natasha Romanoff',
'Hulk': 'Bruce Banner',
'Thor': 'Thor Odinson',
'Hawkeye': 'Clint Barton',
}

app = func.FunctionApp(http_auth_level=func.AuthLevel.FUNCTION)

@app.route(route="avengers/{codename?}", methods=["GET"])
def GetAvenger(req: func.HttpRequest) -> func.HttpResponse:
# The code name is part of the URL path and is optional
code_name = req.route_params.get('codename', None)

if code_name:
real_name = avengers.get(code_name)
if not real_name:
return func.HttpResponse(
f"The Avenger code name '{code_name}' is not recognized.",
status_code=404
)
return func.HttpResponse(json.dumps({'realName': real_name}), mimetype="application/json")
else:
# If no codename is provided, return the entire list
return func.HttpResponse(json.dumps(avengers), mimetype="application/json")

@app.route(route="avengers/{codeName}", methods=["DELETE"])
def DeleteAvenger(req: func.HttpRequest) -> func.HttpResponse:

method = req.method
if method == 'DELETE':
# Handle DELETE request
code_name = req.route_params.get('codeName', None)
return func.HttpResponse(f"Avenger: {code_name} has been deleted.", status_code=200)
else:
return func.HttpResponse("This HTTP method is not supported.", status_code=405)
15 changes: 15 additions & 0 deletions Functions/AvengersInfo/host.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.*, 5.0.0)"
}
}
5 changes: 5 additions & 0 deletions Functions/AvengersInfo/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# DO NOT include azure-functions-worker in this file
# The Python Worker is managed by Azure Functions platform
# Manually managing azure-functions-worker may cause unexpected issues

azure-functions

0 comments on commit b3f2bee

Please sign in to comment.