2021-06-15 00:49:18 -07:00
---
id: bd7158d8c443edefaeb5bd0e
2021-07-09 21:23:54 -07:00
title: Microservizio di Abbreviazione URL
2021-06-15 00:49:18 -07:00
challengeType: 4
forumTopicId: 301509
dashedName: url-shortener-microservice
---
# --description--
2021-07-09 21:23:54 -07:00
Costruisci un'app JavaScript full-stack che sia funzionalmente simile a questa: < https: / / url-shortener-microservice . freecodecamp . rocks / > . Lavorare su questo progetto ti porterà a scrivere il tuo codice utilizzando uno dei seguenti metodi:
2021-06-15 00:49:18 -07:00
2021-07-09 21:23:54 -07:00
- Clonare [questa repository GitHub ](https://github.com/freeCodeCamp/boilerplate-project-urlshortener/ ) e completare il tuo progetto localmente.
2021-07-19 16:05:37 +05:30
- Usare [la nostra bozza di progetto su Replit ](https://replit.com/github/freeCodeCamp/boilerplate-project-urlshortener ) per completare il tuo progetto.
2021-08-25 09:12:11 -07:00
- Usare un costruttore di siti di tua scelta per completare il progetto. Assicurati di incorporare tutti i file del nostro repository GitHub.
2021-06-15 00:49:18 -07:00
2022-01-27 22:09:01 +05:30
Quando hai finito, assicurati che una demo funzionante del tuo progetto sia ospitata in qualche percorso pubblico. Quindi invia l'URL nel campo `Solution Link` . Facoltativamente, invia anche un link al codice sorgente del tuo progetto nel campo `GitHub Link` .
2021-06-15 00:49:18 -07:00
# --instructions--
2021-07-09 21:23:54 -07:00
**SUGGERIMENTO:** Non dimenticare di utilizzare un middleware di analisi del body per gestire le richieste POST. Inoltre, potrai utilizzare la funzione `dns.lookup(host, cb)` dal modulo core `dns` per verificare un URL inviato.
2021-06-15 00:49:18 -07:00
# --hints--
2021-07-09 21:23:54 -07:00
È necessario fornire il proprio progetto, non l'URL di esempio.
2021-06-15 00:49:18 -07:00
```js
(getUserInput) => {
assert(
!/.*\/url-shortener-microservice\.freecodecamp\.rocks/.test(
getUserInput('url')
)
);
};
```
2021-07-09 21:23:54 -07:00
Puoi inviare via POST un URL a `/api/shorturl` e ottenere una risposta JSON con le proprietà `original_url` e `short_url` . Ecco un esempio: `{ original_url : 'https://freeCodeCamp.org', short_url : 1}`
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const urlVariable = Date.now();
const fullUrl = `${url}/?v=${urlVariable}`
const res = await fetch(url + '/api/shorturl', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `url=${fullUrl}`
});
if (res.ok) {
const { short_url, original_url } = await res.json();
assert.isNotNull(short_url);
assert.strictEqual(original_url, `${url}/?v=${urlVariable}` );
} else {
throw new Error(`${res.status} ${res.statusText}` );
}
};
```
2021-07-09 21:23:54 -07:00
Quando visiti `/api/shorturl/<short_url>` , verrai reindirizzato all'URL originale.
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const urlVariable = Date.now();
const fullUrl = `${url}/?v=${urlVariable}`
let shortenedUrlVariable;
const postResponse = await fetch(url + '/api/shorturl', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: `url=${fullUrl}`
});
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);
assert.strictEqual(url,fullUrl);
} else {
throw new Error(`${getResponse.status} ${getResponse.statusText}` );
}
};
```
2021-07-09 21:23:54 -07:00
Se passi un URL non valido che non segue il formato valido `http://www.example.com` , la risposta JSON conterrà `{ error: 'invalid url' }`
2021-06-15 00:49:18 -07:00
```js
async (getUserInput) => {
const url = getUserInput('url');
const res = await fetch(url + '/api/shorturl', {
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-06-15 00:49:18 -07: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}` );
}
};
```
# --solutions--
```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.
*/
```