Parse + PubNub:私聊

时间:2014-12-02 18:21:33

标签: ios parse-platform chat private pubnub

我想与Parse和Pubnub进行私聊。 当用户从另一个朋友收到图像时,他可以点击"通过消息"回复,这将打开一个新视图,这是两个朋友之间的私人聊天。 我使用" BubbleView"在框架中提供iOS消息传递方面。 如何在Pubnub中建立私人频道? 我添加了

PFUser *user = [PFUser currentUser];

channel = [PNChannel channelWithName:user.objectId];

但这仅影响使用该应用的用户的频道,而不影响2人的频道......? 使用我的代码,我可以收到自己的消息,控制台说: PubNub(xxxxxxxxxx)在频道上订阅:(     " PNChannel(xxxxxxxxx)objectID(使用该应用程序的解析用户)" 收到消息:我发送的消息

这是我的代码:

ChatViewController.h:

#import "MessagesViewController.h"
#import "PNImports.h"

@interface ChatViewController : MessagesViewController

@property (strong, nonatomic) NSMutableArray *messages;

@end

ChatViewController.m:

#import "ChatViewController.h"
#import <Parse/Parse.h>

@interface ChatViewController ()

@end
PNChannel *channel;
id message;
NSDate *receiveDate;
NSString *text;
@implementation ChatViewController

#pragma mark - View lifecycle
- (void)viewDidLoad
{

    [super viewDidLoad];
    self.title = @"Messages";
    self.messages = [[NSMutableArray alloc] initWithObjects:
                     @"Testing some messages here.", @"lol",
                     nil];
    UIButton *exitButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [exitButton addTarget:self action:@selector(backToInboxView) forControlEvents:UIControlEventTouchUpInside];
    [exitButton setTitle:@"Inbox" forState:UIControlStateNormal];
    exitButton.frame = CGRectMake(0.0, 0.0, 60, 60);
    [self.view addSubview:exitButton];

    // #1 Define client configuration
    PNConfiguration *myConfig = [PNConfiguration configurationForOrigin:@"pubsub.pubnub.com"
                                                             publishKey:@"demo"
                                                           subscribeKey:@"demo"
                                                              secretKey:nil];
    // #2 make the configuration active
    [PubNub setConfiguration:myConfig];
    // #3 Connect to the PubNub
    [PubNub connect];

   }


#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.messages.count;
}

#pragma mark - Messages view controller
- (BubbleMessageStyle)messageStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return (indexPath.row % 2) ? BubbleMessageStyleIncoming : BubbleMessageStyleOutgoing;
}

- (NSString *)textForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [self.messages objectAtIndex:indexPath.row];
}

- (void)sendPressed:(UIButton *)sender withText:text
{
    [self.messages addObject:text];
    if((self.messages.count - 1) % 2)
        [MessageSoundEffect playMessageSentSound];
    else
        [MessageSoundEffect playMessageReceivedSound];
    PFUser *user       = [PFUser currentUser];
    channel = [PNChannel channelWithName:user.objectId];
    // Receive Messages Sent to Me!
    [PubNub subscribeOnChannel:channel];
    // Send a Message to Sally
    [PubNub sendMessage:text toChannel:channel];
    [self finishSend];
}

- (void)backToInboxView{
    [self.navigationController popToRootViewControllerAnimated:YES];
}


@end

并在Appdelegate.m中:

- (void)pubnubClient:(PubNub *)client didSubscribeOnChannels:(NSArray *)channels {
    NSLog(@"DELEGATE: Subscribed to channel:%@", channels);
}
- (void)pubnubClient:(PubNub *)client didReceiveMessage:(PNMessage *)message {
    NSLog(@"Message received: %@", message.message);
}

1 个答案:

答案 0 :(得分:1)

虽然在JavaScript中,这是一个非常详细的教程,介绍如何使用PubNub实现聊天功能(使用私人+公共频道):

http://www.pubnub.com/blog/javascript-private-chat-api-with-access-control/

PubNub ObjectiveC客户端存在相同的功能。

PubNub频道本身就是频道 - 频道上没有任何属性表明频道属于私有或公共频道。要模拟&#34; private&#34;,您可以为私人频道创建难以猜测的名称(并且不要提供这些名称),但随着时间的推移,这不是最安全的解决方案。

要真正将PubNub通道设为私有,请使用PAM功能(如教程中所述)。这将允许您授予和撤销特定频道的授权令牌,因此即使有人猜测私人频道名称,他们也无法在不知道授权令牌的情况下访问它。

要进一步锁定它,您可以使用内置加密,并且通过安全(SSL)PubNub连接运行,您可以获得非常安全且可扩展的解决方案。