Sto lavorando a una semplice app per accorciare gli URL e ho i seguenti percorsi rapidi:
app.get('/', function(req, res){
res.render('index', {
link: null
});
});
app.post('/', function(req, res){
function makeRandom(){
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 3 /*y u looking at me <33??*/; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
var url = req.body.user.url;
var key = makeRandom();
client.set(key, url);
var link = 'http://50.22.248.74/l/' + key;
res.render('index', {
link: link
});
console.log(url);
console.log(key);
});
app.get('/l/:key', function(req, res){
client.get(req.params.key, function(err, reply){
if(client.get(reply)){
res.redirect(reply);
}
else{
res.render('index', {
link: null
});
}
});
});
Vorrei rimuovere il /l/
dal mio percorso (per rendere il mio URL più breve) e rendere facoltativo il parametro: key. Sarebbe questo il modo corretto per farlo:
app.get('/:key?', function(req, res, next){
client.get(req.params.key, function(err, reply){
if(client.get(reply)){
res.redirect(reply);
}
else{
next();
}
});
});
app.get('/', function(req, res){
res.render('index, {
link: null
});
});
Non sono sicuro se devo specificare che il mio /
percorso è quello a cui essere "vicino". Ma poiché il mio unico altro percorso sarebbe il mio /
percorso di posta aggiornato , immagino che funzionerebbe bene.
client.get
. Ho ricevuto uncannot call method 'indexOf' of null
errore.