Skip to content

Commit 5080ae8

Browse files
committed
add files
add files
1 parent 8d2b6b3 commit 5080ae8

14 files changed

+435
-0
lines changed

app.js

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
var express = require('express');
2+
var path = require('path');
3+
var favicon = require('serve-favicon');
4+
var logger = require('morgan');
5+
var cookieParser = require('cookie-parser');
6+
var bodyParser = require('body-parser');
7+
8+
var index = require('./routes/index');
9+
var users = require('./routes/users');
10+
11+
var app = express();
12+
13+
// view engine setup
14+
app.set('views', path.join(__dirname, 'views'));
15+
app.engine('art', require('express-art-template'));
16+
app.set('view options', {
17+
debug: process.env.NODE_ENV !== 'production'
18+
});
19+
20+
app.set('view engine', 'art');
21+
22+
// uncomment after placing your favicon in /public
23+
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
24+
app.use(logger('dev'));
25+
app.use(bodyParser.json());
26+
app.use(bodyParser.urlencoded({ extended: false }));
27+
app.use(cookieParser());
28+
29+
app.use("/public",express.static(path.join(__dirname, '/public')));
30+
31+
app.use('/', index);
32+
app.use('/users', users);
33+
// app.use('*', function(req, res, next) {
34+
// res.header("Access-Control-Allow-Origin", "*");
35+
// res.header('Access-Control-Allow-Methods', 'PUT, GET, POST, DELETE, OPTIONS');
36+
// res.header("Access-Control-Allow-Headers", "X-Requested-With");
37+
// res.header('Access-Control-Allow-Headers', 'Content-Type');
38+
// next();
39+
// });
40+
41+
42+
43+
// catch 404 and forward to error handler
44+
app.use(function(req, res, next) {
45+
var err = new Error('Not Found');
46+
err.status = 404;
47+
next(err);
48+
});
49+
50+
// error handler
51+
app.use(function(err, req, res, next) {
52+
// set locals, only providing error in development
53+
res.locals.message = err.message;
54+
res.locals.error = req.app.get('env') === 'development' ? err : {};
55+
56+
// render the error page
57+
res.status(err.status || 500);
58+
res.render('error');
59+
});
60+
61+
module.exports = app;

bin/google-proxy

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
#!/usr/bin/env node
2+
3+
/**
4+
* Module dependencies.
5+
*/
6+
7+
var app = require('../app');
8+
var debug = require('debug')('google-proxy:server');
9+
var http = require('http');
10+
11+
/**
12+
* Get port from environment and store in Express.
13+
*/
14+
15+
var port = normalizePort('3001');
16+
app.set('port', port);
17+
18+
/**
19+
* Create HTTP server.
20+
*/
21+
22+
var server = http.createServer(app);
23+
24+
/**
25+
* Listen on provided port, on all network interfaces.
26+
*/
27+
28+
server.listen(port);
29+
server.on('error', onError);
30+
server.on('listening', onListening);
31+
32+
/**
33+
* Normalize a port into a number, string, or false.
34+
*/
35+
36+
function normalizePort(val) {
37+
var port = parseInt(val, 10);
38+
39+
if (isNaN(port)) {
40+
// named pipe
41+
return val;
42+
}
43+
44+
if (port >= 0) {
45+
// port number
46+
return port;
47+
}
48+
49+
return false;
50+
}
51+
52+
/**
53+
* Event listener for HTTP server "error" event.
54+
*/
55+
56+
function onError(error) {
57+
if (error.syscall !== 'listen') {
58+
throw error;
59+
}
60+
61+
var bind = typeof port === 'string'
62+
? 'Pipe ' + port
63+
: 'Port ' + port;
64+
65+
// handle specific listen errors with friendly messages
66+
switch (error.code) {
67+
case 'EACCES':
68+
console.error(bind + ' requires elevated privileges');
69+
process.exit(1);
70+
break;
71+
case 'EADDRINUSE':
72+
console.error(bind + ' is already in use');
73+
process.exit(1);
74+
break;
75+
default:
76+
throw error;
77+
}
78+
}
79+
80+
/**
81+
* Event listener for HTTP server "listening" event.
82+
*/
83+
84+
function onListening() {
85+
var addr = server.address();
86+
var bind = typeof addr === 'string'
87+
? 'pipe ' + addr
88+
: 'port ' + addr.port;
89+
debug('Listening on ' + bind);
90+
}

bin/npm-debug.log.2354145098

Whitespace-only changes.

package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "google-proxy",
3+
"version": "0.0.0",
4+
"private": true,
5+
"scripts": {
6+
"start": "node ./bin/google-proxy"
7+
},
8+
"dependencies": {
9+
"art-template": "^4.12.1",
10+
"body-parser": "~1.17.1",
11+
"cookie-parser": "~1.4.3",
12+
"debug": "~2.6.3",
13+
"express": "~4.15.2",
14+
"express-art-template": "^1.0.0",
15+
"jade": "~1.11.0",
16+
"morgan": "~1.8.1",
17+
"serve-favicon": "~2.4.2",
18+
"superagent": "^3.6.3"
19+
}
20+
}

public/1.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.txt1.txt1.txt1.txt1.txt1.txt1.txt1.txt1.txt1.txt1.txt

public/images/google.png

81.9 KB
Loading

public/javascripts/index.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
$(function() {
2+
3+
$('#search').click(render);
4+
$('#search-input').keydown(function(e){
5+
if(e.keyCode == '13')
6+
render();
7+
});
8+
9+
var canSend = true;
10+
11+
function render(){
12+
var value = $('#search-input').val();
13+
console.log(value)
14+
$('#app').html("<p>加载中...</p>")
15+
if(!$.trim(value) || !canSend)
16+
return
17+
canSend = false;
18+
19+
$.ajax({
20+
type: 'POST',
21+
url: '/getGoogle',
22+
data: {
23+
keyword: encodeURI(value)
24+
},
25+
success: function(data){
26+
$('#app').html(data.html)
27+
canSend = true;
28+
},
29+
error: function(){
30+
$('#app').html("<p>加载失败</p>")
31+
canSend = true;
32+
}
33+
})
34+
35+
}
36+
})

public/stylesheets/public.css

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
*{
2+
box-sizing: border-box;
3+
}
4+
body{
5+
padding-top: 90px;
6+
}
7+
.pull-left{
8+
float: left;
9+
}
10+
.pull-right{
11+
float: right;
12+
}
13+
.search-header{
14+
position: fixed;
15+
padding: 20px;
16+
height: 80px;
17+
border-bottom: 1px solid #ccc;
18+
top: 0;
19+
left: 0;
20+
width: 100%;
21+
background-color: #fff;
22+
box-shadow: 0 0 4px #ccc;
23+
z-index: 99999999999;
24+
}
25+
26+
.search-header .logo img{
27+
height: 40px;
28+
width: auto;
29+
}
30+
31+
.search-header .search-wrap{
32+
position: absolute;
33+
right: 20px;
34+
height: 40px;
35+
left: 150px;
36+
max-width: 1200px;
37+
}
38+
.search-header .search-wrap input[type=text]{
39+
display: block;
40+
height: 40px;
41+
border:1px solid #ccc;
42+
border-right:none;
43+
padding:0 10px;
44+
color: #333;
45+
outline: none;
46+
width: 100%;
47+
padding-right: 110px;
48+
border-radius: 6px;
49+
}
50+
.search-header .search-wrap .search-button{
51+
display: block;
52+
position: absolute;
53+
right: 0;
54+
top: 0;
55+
height: 40px;
56+
width: 100px;
57+
text-align: center;
58+
background-color: #4585F4;
59+
color: #fff;
60+
font-size: 14px;
61+
text-decoration: none;
62+
line-height: 40px;
63+
border-radius: 0 6px 6px 0;
64+
}
65+
.app{
66+
padding: 0 10px;
67+
}
68+
69+
@media screen and (max-width: 980px) {
70+
.search-header{
71+
padding: 10px;
72+
height: 50px;
73+
}
74+
.search-header .logo img{
75+
height: 30px;
76+
width: auto;
77+
}
78+
.search-header .search-wrap{
79+
left: 110px;
80+
height: 30px;
81+
}
82+
.search-header .search-wrap .search-button,.search-header .search-wrap input[type=text]{
83+
height: 30px;
84+
line-height: 30px;
85+
}
86+
.search-header .search-wrap .search-button{
87+
width: 60px;
88+
}
89+
.search-header .search-wrap input[type=text]{
90+
padding-right: 70px;
91+
}
92+
body{
93+
padding-top: 60px;
94+
}
95+
}

public/stylesheets/style.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
body {
2+
padding: 50px;
3+
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
4+
}
5+
6+
a {
7+
color: #00B7FF;
8+
}

routes/index.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
var express = require('express');
2+
var router = express.Router();
3+
var superagent = require('superagent');
4+
5+
/* GET home page. */
6+
router.get('/', function(req, res, next) {
7+
res.render('index.art');
8+
});
9+
10+
11+
router.post('/getGoogle', function(req, res, next) {
12+
13+
var betaJSON = {
14+
code: 200,
15+
html: '<p style="font-size:40px;color:#333;">): 服务请求失败</p>'
16+
17+
}
18+
function getGoogleBase(keyword){
19+
return 'https://www.google.co.jp/search?q='+keyword+'&oq='+keyword+'&aqs=chrome..69i57j69i60l5.988j0j7&sourceid=chrome&ie=UTF-8'
20+
}
21+
22+
if(req.body.keyword){
23+
24+
superagent.get(getGoogleBase(req.body.keyword))
25+
.set('Accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8')
26+
.set('Accept-Language', 'zh-CN,zh;q=0.8,en;q=0.6')
27+
.set('User-Agent', req.headers['user-agent'] || 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36')
28+
.end(function(err, data){
29+
if(err){
30+
betaJSON.code = 500
31+
}else{
32+
betaJSON.html = data.text;
33+
}
34+
res.json(betaJSON);
35+
})
36+
37+
}else{
38+
39+
res.json(betaJSON);
40+
41+
}
42+
43+
});
44+
45+
module.exports = router;
46+
47+

routes/users.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var express = require('express');
2+
var router = express.Router();
3+
4+
/* GET users listing. */
5+
router.get('/', function(req, res, next) {
6+
res.send('respond with a resource');
7+
});
8+
9+
module.exports = router;

views/error.art

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<h1>error</h1>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)