查询PFInstallation并从云代码添加到渠道密钥

时间:2015-02-18 03:23:31

标签: ios parse-platform pfquery cloud-code

我正在尝试将订阅添加到特定PFUser的所有PFInstallations(对于在iPhone iPad上使用相同登录的一个人的情况等)。我有他们所有使用该应用程序的Facebook好友的表格视图。在选择行中的朋友时,我希望它获取我的objectId并查询所有PFInstallations以获取所有PFInstallations的数组,其中关键usersObjectId与PFUser objectId匹配。然后,我可以为每个PFInstallations的通道添加一个值。我有:

FriendArray *job = self.jobsArray[indexPath.row];
    PFQuery *query = [PFUser query];
//job.facebookid is the Facebook id for that particular user
//each PFUser has a fbId and for those who logged in with Facebook, their Facebook ID is stored here
    [query whereKey:@"fbId" equalTo:job.facebookid];
    PFUser *user = (PFUser *)[query getFirstObject];
//This gives me the PFUser whose fbId value matches the Facebook id for the row that was selected
    NSString *subscription = [@"User_" stringByAppendingString:user.objectId];
    PFUser *me = [PFUser currentUser];

    PFQuery *pushQuery = [PFInstallation query];
//Trying to get all PFInstallations that match the current user's usersObjectId, so I can add the value to each channel
    [pushQuery whereKey:@"usersObjectId" equalTo:[me objectId]];
    PFInstallation *allInstallations = (PFInstallation *)[pushQuery findObjects];
    [allInstallations addUniqueObject:subscription forKey:@"channels"];

但它告诉我,不能直接查询PFInstallation。我怎么能在云代码中做同样的事情呢?

2 个答案:

答案 0 :(得分:1)

好的,经过几个小时的工作,我终于明白了,并且想到会发布解决方案。如果你想编辑某种类型的所有PFInstallation条目(我这样做,总是将我的PFUser objectId作为PFInstallation的新值),这里就去了。

对于云代码使用:

Parse.Cloud.define("subscribingAll", function(request, response) {
      Parse.Cloud.useMasterKey();

    var usersObjectId = request.params.usersObjectId;
      var newSubscription = request.params.newSubscription;


  var pushQuery = new Parse.Query(Parse.Installation);
  pushQuery.equalTo("usersObjectId", usersObjectId);

     pushQuery.find({
    success: function(results) {

      response.success(results);
    },
    error: function() {
      response.error("failed");
    }
  });
});

然后,在您的应用上,您需要一个PFCloud调用来处理所有这些。

[PFCloud callFunctionInBackground:@"subscribingAll"
                       withParameters:@{@"usersObjectId": [me objectId], @"newSubscription": subscription}
                                block:^(NSArray *theCount, NSError *error) {
                                    if (!error) {
                                        int i;
                                        for (i = 0; i < [theCount count]; i++) {
                                            PFInstallation *change = [theCount objectAtIndex:i];
                                            [change addUniqueObject:subscription forKey:@"channels"];
                                            [change saveInBackground];
                                        }

                                    }
                                }];

云代码返回一个数组,其中每个对象都是与查询匹配的PFInstallation数据。您需要通过循环运行它,并将每个objectAtIndex设置为PFInstallation。从那里,只需做一个简单的addUniqueObject,瞧,你就完成了。

在我的情况下,登录时,它会将objectId复制到我为PFInstallation创建的名为usersObjectId的键。所以,我登录我的iPhone,然后再登录我的iPad,我有2个不同的PFInstallations,但两者都有相同的usersObjectId。运行所有这些代码允许我隔离我所有的所有安装并编辑它们,特别是与我用于订阅Facebook好友的代码一起使用,这样我就可以在发布内容时收到通知。

答案 1 :(得分:0)

看起来您只能修改当前设备上的PFInstallation,而不是全部来自一个用户或云端。

这是解析时显示的代码:

PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation addUniqueObject:@"Giants" forKey:@"channels"];
[currentInstallation saveInBackground];

也许一种解决方法可能是添加一个新的默认频道,您订阅每个用户,如果他们应订阅新频道,则会向他们发送通知?我不确定这是否是最佳解决方案,因为我不知道您在执行此订阅的上下文中。