-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
213 lines (187 loc) · 5.37 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
require('newrelic');
var express = require('express'), engine = require('ejs-locals');
var path = require('path');
var favicon = require('static-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var url = require("url");
var fs = require('fs');
var nconf = require('nconf');
var expressLayouts = require('express-ejs-layouts');
var usarioLogado;
var client_id;
var client_secret;
var contextPath;
var app = express();
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.set('layout', 'layout_principal')
app.use(expressLayouts);
app.use(favicon());
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded());
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use('/assets', express.static(path.join(__dirname, 'public')));
// development error handler
// will print stacktrace
nconf.argv().env();
console.log('NODE_ENV: ' + nconf.get('NODE_ENV'));
if (nconf.get('NODE_ENV') == 'production') {
client_id = '209a14dbcc1046e29d2f918da8e35e61';
client_secret = '3dc5ce58724b4045b9eca63b161a3c86';
contextPath = 'http://sorte.herokuapp.com/';
client_id = '209a14dbcc1046e29d2f918da8e35e61';
client_secret = '3dc5ce58724b4045b9eca63b161a3c86';
}else{
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
client_id = 'be36280ed5804eaba6c54e5369bc3519';
client_secret = '3e2a019830bc4ccc92b5e3ed2f53dddf';
contextPath = 'http://localhost:3000/';
}
var redirect_uri = contextPath + 'instagram_redirect';
/**
Parametros de configuração da ig do instagram
*/
var ig = require('instagram-node').instagram();
ig.use({
client_id: client_id,
client_secret: client_secret
});
app.get('/', function(req, res){
res.render('index', {
title: 'Sorte.ar | Faça aqui o seus sorteios do Instagram',
usarioLogado : usarioLogado,
contextPath: contextPath,
client_id: client_id,
client_secret: client_secret,
layout: 'layout_principal'
});
});
/*
Implementando a rota de autorização do usuario instagram
*/
app.get('/login', function(req, res) {
res.redirect(ig.get_authorization_url(redirect_uri, { scope: ['likes'], state: 'a state' }));
});
/*
Implementando a roda de redirecionamento do instagram
*/
app.get('/instagram_redirect', function(req, res) {
ig.authorize_user(req.query.code, redirect_uri, function(err, result) {
if (err) {
console.log(err);
res.redirect('/');
} else {
usarioLogado = result;
res.redirect('/recentes');
}
});
});
app.get('/feed', function(req, res){
console.log(url.parse(req.url));
if(usarioLogado){
res.render('feed', {
title: 'Sorte.ar | Faça aqui o seus sorteios do Instagram',
path: url.parse(req.url).path,
usarioLogado : usarioLogado,
contextPath: contextPath,
client_id: client_id,
client_secret: client_secret,
layout: 'layout_comun'
});
}else{
res.redirect('/');
}
});
app.get('/recentes', function(req, res){
if(usarioLogado){
res.render('recentes', {
title: 'Sorte.ar | Faça aqui o seus sorteios do Instagram',
path: url.parse(req.url).path,
contextPath: contextPath,
usarioLogado : usarioLogado,
client_id: client_id,
client_secret: client_secret,
layout: 'layout_comun'
});
}else{
res.redirect('/');
}
});
app.get('/sortear/:usuario/media/:media', function(req, res){
if(usarioLogado){
res.render('sortear', {
title: 'Sorte.ar | Faça aqui o seus sorteios do Instagram',
path: url.parse(req.url).path,
usarioLogado : usarioLogado,
contextPath: contextPath,
client_id: client_id,
client_secret: client_secret,
usuario: req.param("usuario"),
media: req.param("media"),
layout: 'layout_comun'
});
}else{
res.redirect('/');
}
});
app.get('/buscar', function(req, res){
if(usarioLogado){
res.render('buscar', {
title: 'Sorte.ar | Faça aqui o seus sorteios do Instagram',
path: url.parse(req.url).path,
usarioLogado : usarioLogado,
contextPath: contextPath,
client_id: client_id,
client_secret: client_secret,
layout: 'layout_comun'
});
}else{
res.redirect('/');
}
});
app.post('/buscar', function(req, res){
if(usarioLogado){
ig.user_search(req.body.username, {
count: 1
},function(err, users, limit) {
console.log(err, users, limit, users.length);
if(err != null){
res.send(500, err);
}else if (users.length == undefined || users.length <= 0){
res.send(404, 'Usuário não encontrado');
}else{
res.send(users);
}
});
}else{
res.send(500, 'Usuario não logado');
}
});
/// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
/// error handlers
// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});
module.exports = app;