Skip to content

somorup_Update app.py #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions AndroLabServer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
DEFAULT_PORT_NO = 8888

def usageguide():
print "InsecureBankv2 Backend-Server"
print "Options: "
print " --port p serve on port p (default 8888)"
print " --help print this message"
print ("InsecureBankv2 Backend-Server")
print ("Options: ")
print (" --port p serve on port p (default 8888)")
print (" --help print this message")

@app.errorhandler(500)
def internal_servererror(error):
print " [!]", error
print (" [!]",error)
return "Internal Server Error", 500

'''
Expand All @@ -35,16 +35,16 @@ def login():
user = request.form['username']
#checks for presence of user in the database #requires models.py
u = User.query.filter(User.username == request.form["username"]).first()
print "u=",u
print ("u=",u)
if u and u.password == request.form["password"]:
Responsemsg="Correct Credentials"
Responsemsg="Correct Credentials"
elif u and u.password != request.form["password"]:
Responsemsg="Wrong Password"
Responsemsg="Wrong Password"
elif not u:
Responsemsg="User Does not Exist"
else: Responsemsg="Some Error"
data = {"message" : Responsemsg, "user": user}
print makejson(data)
print (makejson(data))
return makejson(data)

'''
Expand All @@ -65,12 +65,12 @@ def getaccounts():
a=Account.query.filter(Account.user == user)
for i in a:
if (i.type=='from'):
from_acc=i.account_number;
from_acc=i.account_number;
for j in a:
if (i.type=='to'):
to_acc=i.account_number;
to_acc=i.account_number;
data = {"message" : Responsemsg, "from": from_acc,"to": to_acc}
print makejson(data)
print (makejson(data))
return makejson(data)

'''
Expand All @@ -82,16 +82,16 @@ def changepassword():
Responsemsg="fail"
newpassword=request.form['newpassword']
user=request.form['username']
print newpassword
print (newpassword)
u = User.query.filter(User.username == user).first() #checks for presence of user in the database
if not u:
Responsemsg="Error"
else:
Responsemsg="Change Password Successful"
u.password = newpassword
Responsemsg="Change Password Successful"
u.password = newpassword
db_session.commit()
data = {"message" : Responsemsg}
print makejson(data)
print (makejson(data))
return makejson(data)

'''
Expand All @@ -109,11 +109,11 @@ def dotransfer():
Responsemsg="Wrong Credentials so trx fail"
#print Responsemsg
else:
Responsemsg="Success"
Responsemsg="Success"
#print Responsemsg
from_acc = request.form["from_acc"]
to_acc = request.form["to_acc"]
amount = request.form["amount"]
from_acc = request.form["from_acc"]
to_acc = request.form["to_acc"]
amount = request.form["amount"]
from_account = Account.query.filter(Account.account_number == from_acc).first()
to_account = Account.query.filter(Account.account_number == to_acc).first()
#print "fromacc=",from_account
Expand All @@ -133,14 +133,14 @@ def devlogin():
user=request.form['username']
Responsemsg="Correct Credentials"
data = {"message" : Responsemsg, "user": user}
print makejson(data)
print (makejson(data))
return makejson(data)

if __name__ == '__main__':
port = DEFAULT_PORT_NO
options, args = getopt.getopt(sys.argv[1:], "", ["help", "port="])
for op, arg1 in options:
if op == "--help":
if op == "--help":
usageguide()
sys.exit(2)
elif op == "--port":
Expand All @@ -149,7 +149,7 @@ def devlogin():
urls = ("/.*", "app")
apps = web.application(urls, globals())
server = wsgi.Server(("0.0.0.0", port),app,server_name='localhost')
print "The server is hosted on port:",(port)
print ("The server is hosted on port:",port)

try:
server.start()
Expand Down