2019-05-06 07:31:26 -04:00
|
|
|
|
---
|
|
|
|
|
id: bd7158d8c443edefaeb5bd0e
|
2021-02-16 13:01:20 -08:00
|
|
|
|
title: 短网址微服务
|
2019-05-06 07:31:26 -04:00
|
|
|
|
challengeType: 4
|
2020-09-18 00:11:18 +08:00
|
|
|
|
forumTopicId: 301509
|
2021-01-13 03:31:00 +01:00
|
|
|
|
dashedName: url-shortener-microservice
|
2019-05-06 07:31:26 -04:00
|
|
|
|
---
|
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --description--
|
|
|
|
|
|
2021-09-18 11:22:53 -07:00
|
|
|
|
构建一个 JavaScript 的全栈应用,在功能上与这个应用相似:<https://url-shortener-microservice.freecodecamp.rocks/>。 在这个项目中,你将使用以下方法之一编写你的代码:
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
|
- 克隆 [this GitHub repo](https://github.com/freeCodeCamp/boilerplate-project-filemetadata/) 并在本地完成项目。
|
2021-05-12 21:25:58 +05:30
|
|
|
|
- 使用[我们的 Replit 初始化项目](https://replit.com/github/freeCodeCamp/boilerplate-project-urlshortener)来完成你的项目。
|
2021-09-18 11:22:53 -07:00
|
|
|
|
- 使用你选择的网站生成器来完成项目。 需要包含我们 GitHub 仓库的所有文件。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
2021-09-18 11:22:53 -07:00
|
|
|
|
完成本项目后,请将一个正常运行的 demo(项目演示)托管在可以公开访问的平台。 然后在 `Solution Link` 字段中提交它的 URL。 此外,还可以将项目的源码提交到 `GitHub Link` 中。
|
2021-02-06 04:42:36 +00:00
|
|
|
|
|
|
|
|
|
# --instructions--
|
|
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
|
**提示:** 请使用 body parsing 中间件来处理 POST 请求, 也可以使用 `dns` 核心模块中的 `dns.lookup(host, cb)` 函数验证提交的 URL。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --hints--
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
|
提交自己的项目,而不是示例的 URL。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
|
|
```js
|
2021-02-06 04:42:36 +00:00
|
|
|
|
(getUserInput) => {
|
|
|
|
|
assert(
|
|
|
|
|
!/.*\/url-shortener-microservice\.freecodecamp\.rocks/.test(
|
|
|
|
|
getUserInput('url')
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
};
|
2019-05-06 07:31:26 -04:00
|
|
|
|
```
|
|
|
|
|
|
2021-05-12 21:25:58 +05:30
|
|
|
|
可以通过 POST 请求给 `/api/shorturl` 发送一个 URL,并返回一个带有 `original_url` 和 `short_url` 属性的 JSON 响应。 例如:`{ original_url : 'https://freeCodeCamp.org', short_url : 1}`。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```js
|
2021-02-06 04:42:36 +00:00
|
|
|
|
async (getUserInput) => {
|
|
|
|
|
const url = getUserInput('url');
|
|
|
|
|
const urlVariable = Date.now();
|
2021-03-04 09:49:46 -08:00
|
|
|
|
const fullUrl = `${url}/?v=${urlVariable}`
|
2021-05-12 21:25:58 +05:30
|
|
|
|
const res = await fetch(url + '/api/shorturl', {
|
2021-02-06 04:42:36 +00:00
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
2021-03-04 09:49:46 -08:00
|
|
|
|
body: `url=${fullUrl}`
|
2021-02-06 04:42:36 +00:00
|
|
|
|
});
|
|
|
|
|
if (res.ok) {
|
|
|
|
|
const { short_url, original_url } = await res.json();
|
|
|
|
|
assert.isNotNull(short_url);
|
2021-03-04 09:49:46 -08:00
|
|
|
|
assert.strictEqual(original_url, `${url}/?v=${urlVariable}`);
|
2021-02-06 04:42:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
throw new Error(`${res.status} ${res.statusText}`);
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-12-16 00:37:30 -07:00
|
|
|
|
```
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
|
当访问 `/api/shorturl/<short_url>` 时, 将重定向到原来的 URL。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
|
|
|
|
```js
|
2021-02-06 04:42:36 +00:00
|
|
|
|
async (getUserInput) => {
|
|
|
|
|
const url = getUserInput('url');
|
|
|
|
|
const urlVariable = Date.now();
|
2021-03-04 09:49:46 -08:00
|
|
|
|
const fullUrl = `${url}/?v=${urlVariable}`
|
2021-02-06 04:42:36 +00:00
|
|
|
|
let shortenedUrlVariable;
|
2021-05-12 21:25:58 +05:30
|
|
|
|
const postResponse = await fetch(url + '/api/shorturl', {
|
2021-02-06 04:42:36 +00:00
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
2021-03-04 09:49:46 -08:00
|
|
|
|
body: `url=${fullUrl}`
|
2021-02-06 04:42:36 +00:00
|
|
|
|
});
|
|
|
|
|
if (postResponse.ok) {
|
|
|
|
|
const { short_url } = await postResponse.json();
|
|
|
|
|
shortenedUrlVariable = short_url;
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(`${postResponse.status} ${postResponse.statusText}`);
|
|
|
|
|
}
|
|
|
|
|
const getResponse = await fetch(
|
|
|
|
|
url + '/api/shorturl/' + shortenedUrlVariable
|
|
|
|
|
);
|
|
|
|
|
if (getResponse) {
|
|
|
|
|
const { redirected, url } = getResponse;
|
|
|
|
|
assert.isTrue(redirected);
|
2021-03-04 09:49:46 -08:00
|
|
|
|
assert.strictEqual(url,fullUrl);
|
2021-02-06 04:42:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
throw new Error(`${getResponse.status} ${getResponse.statusText}`);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
```
|
|
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
|
如果传入一个没有遵循如 `http://www.example.com` 的无效 URL,则返回包含 `{ error: 'invalid url' }` 的 JSON 响应。
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
2021-02-06 04:42:36 +00:00
|
|
|
|
```js
|
|
|
|
|
async (getUserInput) => {
|
|
|
|
|
const url = getUserInput('url');
|
2021-05-12 21:25:58 +05:30
|
|
|
|
const res = await fetch(url + '/api/shorturl', {
|
2021-02-06 04:42:36 +00:00
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
2022-03-09 20:59:59 +05:30
|
|
|
|
body: `url=ftp:/john-doe.invalidTLD`
|
2021-02-06 04:42:36 +00:00
|
|
|
|
});
|
|
|
|
|
if (res.ok) {
|
|
|
|
|
const { error } = await res.json();
|
|
|
|
|
assert.isNotNull(error);
|
|
|
|
|
assert.strictEqual(error.toLowerCase(), 'invalid url');
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(`${res.status} ${res.statusText}`);
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-05-06 07:31:26 -04:00
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
|
# --solutions--
|
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
|
```js
|
|
|
|
|
/**
|
|
|
|
|
Backend challenges don't need solutions,
|
|
|
|
|
because they would need to be tested against a full working project.
|
|
|
|
|
Please check our contributing guidelines to learn more.
|
|
|
|
|
*/
|
|
|
|
|
```
|