mirror of
https://github.com/oonyeje/Get-Hip.git
synced 2025-12-25 03:37:40 +00:00
152 lines
6.7 KiB
Swift
152 lines
6.7 KiB
Swift
//
|
|
// LoginController.swift
|
|
// GetHip
|
|
//
|
|
// Created by Okechi on 2/12/16.
|
|
// Copyright (c) 2016 Kroleo. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class LoginController: UIViewController, PFLogInViewControllerDelegate, UITextFieldDelegate {
|
|
@IBOutlet var userEmailField: UITextField!
|
|
@IBOutlet var password: UITextField!
|
|
@IBOutlet var signIn: UIButton!
|
|
@IBOutlet var signUpButton: UIButton!
|
|
@IBOutlet var forgotPassBtn: UIButton!
|
|
|
|
|
|
|
|
@IBAction func loginBtnPressed(sender: UIButton){
|
|
//check if user logging in with email
|
|
if(contains(self.userEmailField.text!, "@") ){
|
|
let predicate: NSPredicate = NSPredicate(format: "(email = %@)", argumentArray: [self.userEmailField.text!])
|
|
var userQuery: PFQuery = PFQuery(className: "_User", predicate: predicate)
|
|
|
|
//log in user through email look up in db
|
|
dispatch_async(dispatch_get_main_queue(), {
|
|
userQuery.getFirstObjectInBackgroundWithBlock({
|
|
(object, error) -> Void in
|
|
|
|
if(object != nil && error == nil){
|
|
PFUser.logInWithUsernameInBackground(object!.objectForKey("email") as! String, password: self.password.text!, block: {
|
|
(user, error) -> Void in
|
|
|
|
if(user != nil || error == nil){
|
|
//self.performSegueWithIdentifier("LoginToHomeSegue", sender: self)
|
|
let storyboard = UIStoryboard(name: "Main", bundle: nil)
|
|
let tabBarController = storyboard.instantiateViewControllerWithIdentifier("TabControlVC") as! HomeTabController
|
|
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
|
|
appDelegate.window?.rootViewController = tabBarController
|
|
|
|
self.presentViewController(tabBarController, animated: true, completion: nil)
|
|
}else{
|
|
var alert = UIAlertController(title: "Invalid Login", message: "Invalid email or password", preferredStyle: .Alert)
|
|
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in alert.dismissViewControllerAnimated(true, completion: nil)}))
|
|
|
|
self.presentViewController(alert, animated: true, completion: nil)
|
|
}
|
|
})
|
|
}else{
|
|
var alert = UIAlertController(title: "Invalid Login", message: "Invalid email or password", preferredStyle: .Alert)
|
|
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in alert.dismissViewControllerAnimated(true, completion: nil)}))
|
|
|
|
self.presentViewController(alert, animated: true, completion: nil)
|
|
}
|
|
})
|
|
})
|
|
}else{
|
|
var alert = UIAlertController(title: "Invalid Login", message: "Invalid email or password", preferredStyle: .Alert)
|
|
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in alert.dismissViewControllerAnimated(true, completion: nil)}))
|
|
self.presentViewController(alert, animated: true, completion: nil)
|
|
/*
|
|
PFUser.logInWithUsernameInBackground(userEmailField.text!, password: password.text!, block: {
|
|
(user, error) -> Void in
|
|
|
|
if(error == nil){
|
|
if(user != nil){
|
|
self.performSegueWithIdentifier("LoginToHomeSegue", sender: self)
|
|
}else{
|
|
|
|
var alert = UIAlertController(title: "Invalid Login", message: "Your username/email or password is incorrect!", preferredStyle: .Alert)
|
|
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in alert.dismissViewControllerAnimated(true, completion: nil)}))
|
|
|
|
self.presentViewController(alert, animated: true, completion: nil)
|
|
}
|
|
}else{
|
|
let alert = UIAlertController(title: "Invalid Login", message: "Your username/email or password is incorrect!", preferredStyle: .Alert)
|
|
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler:{(action: UIAlertAction!) in alert.dismissViewControllerAnimated(true, completion: nil)}))
|
|
|
|
self.presentViewController(alert, animated: true, completion: nil)
|
|
}
|
|
|
|
})*/
|
|
}
|
|
|
|
}
|
|
|
|
@IBAction func signUpBtnPressed(sender: UIButton){
|
|
self.performSegueWithIdentifier("signUpSegue", sender: self)
|
|
}
|
|
|
|
@IBAction func forgotPassBtn(sender: UIButton){
|
|
self.performSegueWithIdentifier("ForgotPassSegue", sender: self)
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
//check if user already signed in
|
|
/*if(PFUser.currentUser() != nil){
|
|
|
|
presentLoggedInAlert()
|
|
|
|
}*/
|
|
let tapGesture = UITapGestureRecognizer(target: self, action: Selector("hideKeyboard"))
|
|
tapGesture.cancelsTouchesInView = true
|
|
self.view.addGestureRecognizer(tapGesture)
|
|
|
|
|
|
self.userEmailField.delegate = self
|
|
self.password.delegate = self
|
|
self.signIn.layer.borderWidth = 1
|
|
self.signIn.layer.cornerRadius = 5
|
|
self.signIn.layer.borderColor = UIColor.whiteColor().CGColor
|
|
//self.navigationController?.navigationBarHidden = true
|
|
|
|
|
|
|
|
}
|
|
|
|
func hideKeyboard() {
|
|
self.view.endEditing(true)
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
func presentLoggedInAlert() {
|
|
self.performSegueWithIdentifier("LoginToHomeSegue", sender: self)
|
|
|
|
}
|
|
// MARK: - Navigation
|
|
/*
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
|
|
|
|
if segue.identifier == "LoginToHomeSegue" {
|
|
|
|
}
|
|
}
|
|
|
|
*/
|
|
func textFieldShouldReturn(textField: UITextField) -> Bool {
|
|
self.view.endEditing(true)
|
|
return false
|
|
}
|
|
|
|
}
|