查询PFUser和友谊限制的询问

时间:2015-03-09 19:49:29

标签: ios objective-c parse-platform pfquery pfuser

我有我的应用程序,用户可以在其中撰写意见,只有他们的朋友可以在时间轴中看到它们并对其进行评论(在 UITableViewController 子类中称为“OpTimelineTableViewController”)。但我有一个关于如何正确地执行此限制查询的询问,即使我之前尝试过解决方案而没有更多结果...(我开始向您介绍我的数据模型):

“用户”表(是Parse提供的内置类)

“意见”表:

的ObjectID;

senderId;指针用户表

内容;串

updatedAt; (默认提供)

createdAt; (默认提供)

“朋友”表:

friendId1 =指针用户表

friendId2 =指针用户表

status =可以接受“确认”,“待定”或“拒绝”的字符串

updatedAt =(默认提供)

createdAt =(默认提供)

现在这是我尝试的代码的主要重要部分:

- (void)loadOpinions {

    PFQuery *opinionQuery = [PFQuery queryWithClassName:@"Opinion"];
    [opinionQuery orderByDescending:@"createdAt"];

    [opinionQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {

        if (!error) {

// Array declared as property in the ".h" that contains Opinion objects

            self.opinionArray = [[NSArray alloc] initWithArray:objects];
        }

        [self.tableView reloadData];
        [self.refreshControl endRefreshing];
  }];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return self.opinionArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    OpinionTimelineCell *opCell = [tableView dequeueReusableCellWithIdentifier:@"OpTimelineCell" forIndexPath:indexPath];

// self.tempOpObj is an instance of PFObject declared in the ".h" that contains opinion object (for the appropriate index) contained in the opinionArray

    self.tempOpObj = [self.opinionArray objectAtIndex:indexPath.row];

// Now I query "User" table to retrieve all users that have posted Opinions:

    PFQuery *UserOpinionQuery = [PFUser query];

// I do a restriction between users that are contained in the "Opinion" table:

    [UserOpinionQuery whereKey:@"objectId" equalTo:[[self.tempOpObj objectForKey:@"senderId"]objectId]];

    [UserOpinionQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {

        if (!error) {

// "userOpInfo" is an instance of PFUser declared in the ".h" that contains the last of object retrieved in "objects":

            self.userOpInfo = [objects lastObject];

            opCell.opinionUsername.text = self.userOpInfo.username;
          }
       }];

    opCell.opinionContent.text = [self.tempOpObj objectForKey:@"content"];

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    dateFormatter.dateFormat = @"mm-DD-yyyy";
    opCell.opinionDate.text = [dateFormatter stringFromDate:self.tempOpObj.createdAt];

    [opCell setSelectionStyle:UITableViewCellSelectionStyleNone];

// ? Query to restrict visible Opinion posts only if users are a current user friend:

    PFQuery *restrictFriendQuery = [PFQuery queryWithClassName:@"Friends"];
    [restrictFriendQuery whereKey:@"friendId1" equalTo:[PFUser currentUser]];
    [restrictFriendQuery whereKey:@"friendId2" equalTo:[self.userOpInfo objectId]];
    [restrictFriendQuery whereKey:@"status" equalTo:@"Confirm"];

// Is that way the best ??

    [restrictFriendQuery findObjects];

    return opCell;
}

我的问题在于:通过了解细胞数量取决于 opinionArray 中包含的意见数量,或者只是简单地知道我在其他人之前做了什么查询:如何通过仅限当前用户的朋友限制显示的意见来进行查询?

(注意:我确切地说我已经实现了方法[self.performSelector(loadOpinions).......在viewDidLoad中获取信息)

我的代码似乎不清楚我很好,这就是为什么我找不到一个简单的方法来做到这一点

有人可以帮忙解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我只是使用您的好友表来帮助管理请求和审批流程。我使用云代码,这样当友情被批准时,朋友就被添加到用户桌上的关系中。

通过这样做,您将能够从包含所有朋友的当前用户那里获得查询。这可以与意见查询一起使用,以将结果限制为朋友用户创建的那些行。