0

Parse の引退の発表に伴い、Parse サーバーを Heroku に移行しました。Heroku についてはまだ初心者なので、Cloud Code と同様の機能があるかどうかはわかりませんが、数か月前にParse が Heroku + Parse機能を導入し、任意のノードで Cloud Code を実行できるようになったことは知っています。 .js 環境、特に Heroku。

私のジレンマは、この機能について学ぶ前に、サーバーを解析から Heroku に移行したことです:/ 、既存のサーバーがもう存在しないため、ターミナルから解析クラウドコードを実行できません。問題は、Heroku で次の Cloud Code をエミュレートするにはどうすればよいですか?また、Swift を調整するにはどうすればよいですか?

クラウド コード:

// Use Parse.Cloud.define to define as many cloud functions as you want.
// For example:

Parse.Cloud.define("isLoginRedundant", function(request, response) {
    Parse.Cloud.useMasterKey();
    var sessionQuery = new Parse.Query(Parse.Session);
    sessionQuery.equalTo("user", request.user);
    sessionQuery.find().then(function(sessions) {
        response.success( { isRedundant: sessions.length>1 } );
    }, function(error) {
        response.error(error);
    });
});

そして、これがxcodeでの私の迅速なバックです:

    PFUser.logInWithUsernameInBackground(userName!, password: passWord!) {
        (user, error) -> Void in
        if (user != nil) {
            // don't do the segue until we know it's unique login
            // pass no params to the cloud in swift (not sure if [] is the way to say that)
            PFCloud.callFunctionInBackground("isLoginRedundant", withParameters: [:]) {
                (response: AnyObject?, error: NSError?) -> Void in
                let dictionary = response as! [String:Bool]
                var isRedundant : Bool
                isRedundant = dictionary["isRedundant"]!
                if (isRedundant) {
                    // I think you can adequately undo everything about the login by logging out
                    PFUser.logOutInBackgroundWithBlock() { (error: NSError?) -> Void in
                        // update the UI to say, login rejected because you're logged in elsewhere
                        // maybe do a segue here? 
                        let redundantSession: String = "you are already logged in on another device"
                        self.failedMessage(redundantSession)

                        self.activityIND.stopAnimating()

                        self.loginSecond.userInteractionEnabled = true
                    }
                } else {
                    // good login and non-redundant, do the segue 
                    self.performSegueWithIdentifier("loginSuccess", sender: self) 
                } 
            } 
        } else {
            // login failed for typical reasons, update the UI 
            dispatch_async(dispatch_get_main_queue()) {

                self.activityIND.stopAnimating()

                self.loginSecond.userInteractionEnabled = true

                if let message = error?.userInfo["error"] as? String
                    where message == "invalid login parameters" {
                        let localizedMessage = NSLocalizedString(message, comment: "Something isn't right, check the username and password fields and try again")
                        print(localizedMessage)
                        self.failedMessage(localizedMessage)
                }else if let secondMessage = error?.userInfo["error"] as? String
                    where secondMessage == "The Internet connection appears to be offline." {
                    self.failedMessage(secondMessage)
                }
            }
        }
    }
4

1 に答える 1

0

まず、サンプル リポジトリをチェックアウトし、parse-server ドキュメントを読みます。解析サーバーはすぐに使用できるクラウド コードをサポートしており、関数とトリガーを含むファイルを parse-server 構成で指定するだけです。parse と heroku の統合で投稿したリンクは、parse-server.

于 2016-02-26T23:55:19.000 に答える