Skip to content

Commit 3ec4f1d

Browse files
committed
updated step 4
1 parent cd9d48b commit 3ec4f1d

14 files changed

+245
-83
lines changed

.bit/responses/1.4-Week 1 Step 4.md

+31-60
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Week 1 Step 4 ⬤⬤⬤⬤◯◯◯◯◯ | 🕐 Estimated completion: 35-45 min
1818
- [ ] Run `git pull`
1919
- [ ] ***1:*** Create an Azure account
2020
- [ ] ***2:*** Create an HTTP trigger Azure function that gets content from a request parameter called `password` and returns it in the function's body
21-
- [ ] 🚀 Place your function URL in a [repository secret](https://docs.github.com/en/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-a-repository) called `HACKERVOICE_ENDPOINT` and commit the function's code in a file named `HackerVoice/index.js` on the `week1` branch
21+
- [ ] 🚀 Place your function URL in a [repository secret](https://docs.github.com/en/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-a-repository) called `HACKERVOICE_ENDPOINT` and commit the function's code in a file named `HackerVoice/index.js` on a new `hackervoice` branch
2222

2323
## 🚧 Test your Work
2424
**Option 1:**
@@ -49,11 +49,13 @@ When you create an serverless function, you need to be able to "trigger" (call)
4949

5050
### Creating and deploying a simple HTTP trigger function
5151

52+
> [Checkout this detailed tutorial on the Microsoft Azure website](https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-your-first-function-visual-studio). We will cover the same content below.
53+
5254
<details>
5355
<summary>:exclamation: Create a local project</summary>
5456
</br>
5557

56-
1. Choose the Azure icon in the Activity bar, then in the Azure: Functions area, select the Create new project... icon.
58+
1. Click on the Azure icon in the Activity bar (leftmost vertical menu on VS Code). If you hover over the FUNCTIONS dropdown, you will see a bunch of icons appear on the right. Select the Create New Project icon that looks like a folder with a lightning bolt on it.
5759
<br>
5860
<img src="https://docs.microsoft.com/en-us/azure/azure-functions/media/functions-create-first-function-vs-code/create-new-project.png" width=400>
5961
<br>
@@ -66,9 +68,11 @@ When you create an serverless function, you need to be able to "trigger" (call)
6668
* Select how you would like to open your project: Choose Add to workspace.
6769
4. Using this information, Visual Studio Code generates an Azure Functions project with an HTTP trigger. You can view the local project files in the Explorer. To learn more about files that are created, see Generated project files.
6870
</details>
71+
<br>
6972

7073
This is what your VS Code should look like after creating the local project:
7174
<br><img src="https://user-images.githubusercontent.com/28051494/122148350-35f4d080-ce0f-11eb-8763-c832ef097949.png">
75+
<br>
7276

7377
<details>
7478
<summary>:exclamation: Publish the project to Azure</summary>
@@ -87,7 +91,7 @@ In this section, you create a function app and related resources in your Azure s
8791
* **Select a location for new resources**: For better performance, choose a [region](https://azure.microsoft.com/en-us/global-infrastructure/geographies/) near you.
8892

8993
</details>
90-
94+
<br>
9195
<details>
9296
<summary>:exclamation: Run the function locally</summary>
9397
</br>
@@ -110,6 +114,7 @@ You could have instead sent an HTTP GET request to the http://localhost:7071/api
110114

111115
After you've verified that the function runs correctly on your local computer, it's time to use Visual Studio Code to publish the project directly to Azure.
112116
</details>
117+
<br>
113118

114119
<details>
115120
<summary>:exclamation: Sign into Azure</summary>
@@ -125,14 +130,11 @@ If you're already signed in, go to the next section.
125130
2. When prompted in the browser, choose your Azure account and sign in using your Azure account credentials.
126131
3. After you've successfully signed in, you can close the new browser window. The subscriptions that belong to your Azure account are displayed in the Side bar.
127132
</details>
133+
<br>
128134

129-
### Use the function
130-
131-
Let's try triggering this function! Click on the "Get function URL" button and copy the function url, then go ahead and paste it into a new tab. You will be able to see this in the log in your Azure portal, every time your trigger the function.
132-
133-
![trigger the function](https://media.giphy.com/media/gK86LCd5HiEUpz1t0i/giphy.gif)
135+
### Understand the Code
134136

135-
First let's try to understand the code:
137+
Open index.js and check out the code. It should look almost exactly like this:
136138

137139
```javascript
138140
module.exports = async function (context, req) {
@@ -150,63 +152,32 @@ module.exports = async function (context, req) {
150152
}
151153
```
152154

153-
The context.log statement at the top of the function is there to indicate to the developer (you) anytime a trigger has been made. Next, we have a constant variable called name that can be passed in through the query parameters (the Input section when you click "Test & Run").
154-
155-
Below this, we have a "conditional ternary operator" which allows us to make a simple conditional statement (if something is true, do this, else/otherwise do that) efficiently.
156-
157-
```javascript
158-
159-
//condition: if name exists
160-
name
161-
//? is chosen if the condition evaluates to true
162-
? "Hello, " + name + ". This HTTP triggered function executed successfully."
163-
//: is chosen if the condition evaluates to false
164-
: "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.";
165-
166-
```
167-
168-
In this case, we have additionally assigned the results of that conditional ternary statement to another variable called `responseMessage` so that we can return the result of the Azure Function using `context.res`.
169-
170-
Once you have made sure that the function is saved, let's try running it again but now with new query parameters. In the variable definition of `name` we enable the function get the value of `name` in two ways. Let's test it out:
171-
1. In the input, create a new Query parameter with the Name "name" and your name for the Value.
172-
173-
<img width="300" alt="query parameters" src="https://user-images.githubusercontent.com/28051494/114982357-34754f00-9e44-11eb-95c1-f4fbae1bcb40.png">
174-
175-
2. Run the function and check the HTTP response content - make sure that the output now contains your name.
176-
177-
<img width="300" alt="output" src="https://user-images.githubusercontent.com/28051494/114982672-9930a980-9e44-11eb-94f6-fc9d786c7fa5.png">
178-
179-
3. Next, let's try to use the body to change the name. In the input body, change "Azure" to another name (a different name) in double quotes and run the function. You should notice that the output still contains the first name you provided. Check out the code and see if you can figure out why this is.
180-
181-
<details>
182-
<summary>:question: Why does the function output prioritize the Query parameter over the body parameter?</summary>
183-
</br>
155+
Let's go line by line:
156+
- Start of function definition: `module.exports = async function`
157+
- Print comment in Azure Console anytime the function is triggered: `context.log()`
158+
- Get parameter from request body (in sample.dat file): `const name`
159+
- Conditional (ternary) operator to print message if parameter exists (else print error message):
160+
```javascript
161+
//condition: if name exists
162+
name
163+
//? is chosen if the condition evaluates to true
164+
? "Hello, " + name + ". This HTTP triggered function executed successfully."
165+
//: is chosen if the condition evaluates to false
166+
: "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.";
167+
```
168+
169+
- We have additionally assigned the results of that conditional ternary statement to another variable called `responseMessage` so that we can return the result of the Azure Function using `context.res`
170+
171+
### Trigger the function
184172

185-
```javascript
186-
const name = (req.query.name || (req.body && req.body.name));
187-
```
188-
189-
In the name variable definition you will see that or || operator. This indicates that the value of name can either be `req.query.name` or `req.body && req.body.name`. Because of the order of the options, it will take the first value if the first value exists. Thus, if we want to use the body, we will need to remove the name parameter from the query.
190-
<br><br/>
191-
</details>
192-
193-
4. In the Input, remove the name query parameter and try running the function again.
194-
195-
<img width="300" alt="output" src="https://media.giphy.com/media/0FDszXrBqNmV9xR8Dp/giphy.gif">
196-
197-
Try editing this function on your own! *(Don't forget to save when you make changes!)*
198-
199-
200-
<br><br/>
201-
</details>
173+
Let's try triggering this function! Locate this function on the [Azure portal](portal.azure.com) and get the function url, then go ahead and paste it into a new tab. You will be able to see this in the log in your Azure portal, every time your trigger the function.
202174

203175
*One more tip: don’t forget to save! Rewriting code can be challenging and extremely frustrating, so save yourself the trouble!*
204176

205-
## Request Parameters
177+
### Creating a Request Parameters
206178

207179
Request parameters are a way for an HTTP request to take in information! They are pretty much identical in purpose to why you would want a parameter for a function in a coding language. In this instance, we will need a parameter for the password.
208180

209-
### 3: Creating a request parameter
210181
Look at the code for a basic HTTP Function:
211182

212183
```javascript
@@ -244,7 +215,7 @@ Go to the function trigger you are working on, and find this button above the co
244215
</details>
245216

246217

247-
*Note: Every time you make a new commit to `week1`, we will check your function by making a request.*
218+
*Note: Every time you make a new commit to `hackervoice`, we will check your function by making a request.*
248219

249220
<details>
250221
<summary>:exclamation: How do I add a respository secret?</summary>

.bit/responses/1.5-Week 1 Step 5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Week 1 Step 5 ⬤⬤⬤⬤⬤◯◯◯◯ | 🕐 Estimated completion: 25-35 min
1313
- [ ] Run `git pull`
1414
- [ ] ***1:*** Add on to the HTTP Trigger in the previous issue to check if the user’s parameter input of “password” equals `letmein`. If it does, output "Access granted."
1515
- [ ] ***2:*** If it doesn’t equal the correct password, the function should output “Access denied.”
16-
- [ ] 🚀 Commit the update function's code in a file named `HackerVoice/index.js` to the root of the `week1` branch!
16+
- [ ] 🚀 Commit the update function's code in a file named `HackerVoice/index.js` to the root of the `hackervoice` branch!hackervoice
1717

1818
:exclamation: Make sure you follow the *exact* response we provided. `Access denied.` and `Access granted.`
1919

.funcignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.js.map
2+
*.ts
3+
.git*
4+
.vscode
5+
local.settings.json
6+
test
7+
tsconfig.json

.gitignore

+94-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,94 @@
1-
*node_modules/*
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
24+
# nyc test coverage
25+
.nyc_output
26+
27+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
28+
.grunt
29+
30+
# Bower dependency directory (https://bower.io/)
31+
bower_components
32+
33+
# node-waf configuration
34+
.lock-wscript
35+
36+
# Compiled binary addons (https://nodejs.org/api/addons.html)
37+
build/Release
38+
39+
# Dependency directories
40+
node_modules/
41+
jspm_packages/
42+
43+
# TypeScript v1 declaration files
44+
typings/
45+
46+
# Optional npm cache directory
47+
.npm
48+
49+
# Optional eslint cache
50+
.eslintcache
51+
52+
# Optional REPL history
53+
.node_repl_history
54+
55+
# Output of 'npm pack'
56+
*.tgz
57+
58+
# Yarn Integrity file
59+
.yarn-integrity
60+
61+
# dotenv environment variables file
62+
.env
63+
.env.test
64+
65+
# parcel-bundler cache (https://parceljs.org/)
66+
.cache
67+
68+
# next.js build output
69+
.next
70+
71+
# nuxt.js build output
72+
.nuxt
73+
74+
# vuepress build output
75+
.vuepress/dist
76+
77+
# Serverless directories
78+
.serverless/
79+
80+
# FuseBox cache
81+
.fusebox/
82+
83+
# DynamoDB Local files
84+
.dynamodb/
85+
86+
# TypeScript output
87+
dist
88+
out
89+
90+
# Azure Functions artifacts
91+
bin
92+
obj
93+
appsettings.json
94+
local.settings.json

.vscode/extensions.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"ms-azuretools.vscode-azurefunctions"
4+
]
5+
}

.vscode/launch.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Node Functions",
6+
"type": "node",
7+
"request": "attach",
8+
"port": 9229,
9+
"preLaunchTask": "func: host start"
10+
}
11+
]
12+
}

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"azureFunctions.deploySubpath": ".",
3+
"azureFunctions.postDeployTask": "npm install",
4+
"azureFunctions.projectLanguage": "JavaScript",
5+
"azureFunctions.projectRuntime": "~3",
6+
"debug.internalConsoleOptions": "neverOpen",
7+
"azureFunctions.preDeployTask": "npm prune"
8+
}

.vscode/tasks.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "func",
6+
"command": "host start",
7+
"problemMatcher": "$func-node-watch",
8+
"isBackground": true,
9+
"dependsOn": "npm install"
10+
},
11+
{
12+
"type": "shell",
13+
"label": "npm install",
14+
"command": "npm install"
15+
},
16+
{
17+
"type": "shell",
18+
"label": "npm prune",
19+
"command": "npm prune --production",
20+
"problemMatcher": []
21+
}
22+
]
23+
}

HttpTrigger1/function.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"bindings": [
3+
{
4+
"authLevel": "anonymous",
5+
"type": "httpTrigger",
6+
"direction": "in",
7+
"name": "req",
8+
"methods": [
9+
"get",
10+
"post"
11+
]
12+
},
13+
{
14+
"type": "http",
15+
"direction": "out",
16+
"name": "res"
17+
}
18+
]
19+
}

HttpTrigger1/index.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = async function (context, req) {
2+
context.log('JavaScript HTTP trigger function processed a request.');
3+
4+
const name = (req.query.name || (req.body && req.body.name));
5+
const responseMessage = name
6+
? "Hello, " + name + ". This HTTP triggered function executed successfully."
7+
: "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.";
8+
9+
context.res = {
10+
// status: 200, /* Defaults to 200 */
11+
body: responseMessage
12+
};
13+
}

HttpTrigger1/sample.dat

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "Azure"
3+
}

host.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0",
3+
"logging": {
4+
"applicationInsights": {
5+
"samplingSettings": {
6+
"isEnabled": true,
7+
"excludedTypes": "Request"
8+
}
9+
}
10+
},
11+
"extensionBundle": {
12+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
13+
"version": "[2.*, 3.0.0)"
14+
}
15+
}

0 commit comments

Comments
 (0)