-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_app2.py
93 lines (76 loc) · 2.83 KB
/
sc_app2.py
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
from flask import Flask, render_template, Response, request, jsonify
import cv2
import requests
app = Flask(__name__)
def generate_frames():
# Initialize the camera
camera = cv2.VideoCapture(1)
while True:
success, frame = camera.read() # Read the camera frame
if not success:
break
else:
# Encode the frame as JPEG
ret, buffer = cv2.imencode('.jpg', frame)
frame = buffer.tobytes()
# Yield the frame to the browser
yield (b'--frame\r\n'
b'Content-Type: image/jpeg\r\n\r\n' + frame + b'\r\n')
@app.route('/video_feed')
def video_feed():
# Return the camera feed
return Response(generate_frames(), mimetype='multipart/x-mixed-replace; boundary=frame')
""" def get_location(ip):
try:
# Using a public API to get location details based on IP
response = requests.get(f'http://ip-api.com/json/{ip}')
data = response.json()
return {
"ip": ip,
"country": data.get("country"),
"region": data.get("regionName"),
"city": data.get("city"),
"zip": data.get("zip"),
"lat": data.get("lat"),
"lon": data.get("lon"),
"isp": data.get("isp"),
}
except Exception as e:
return {"error": str(e)} """
def get_ip_based_geolocation(ip):
try:
response = requests.get(f'https://ipinfo.io/{ip}/json')
data = response.json()
return {
"ip": data.get("ip"),
"hostname": data.get("hostname"),
"city": data.get("city"),
"region": data.get("region"),
"country": data.get("country"),
# Latitude and Longitude in "lat,lon" format
"loc": data.get("loc"),
"organization": data.get("org")
}
except Exception as e:
return {"error": str(e)}
@ app.route('/')
def index():
# Render the HTML template
# user_ip = request.remote_addr # Get the user's IP address
# user_ip = request.headers['X-Forwarded-For']
""" headers_list = request.headers.getlist("X-Forwarded-For")
user_ip = headers_list[0] if headers_list else request.remote_addr """
user_ip = request.access_route[-1]
# location_info = get_location(user_ip) # Get the location information
location_info = get_ip_based_geolocation(user_ip)
return render_template('index2.html', iplocation=location_info)
@app.route('/get_location', methods=['POST'])
def get_geolocation():
data = request.json
latitude = data.get('latitude')
longitude = data.get('longitude')
return jsonify(status="success", latitude=latitude, longitude=longitude)
if __name__ == "__main__":
# app.run(host='0.0.0.0', port=5000)
# start web server
app.run(host="127.0.0.1", port=8080, debug=True)