You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

336 lines
13 KiB

//
// XHMessage.m
// MessageDisplayExample
//
// Created by HUAJIE-1 on 14-4-24.
// Copyright (c) 2014年 嗨,我是曾宪华(@xhzengAIB),曾加入YY Inc.担任高级移动开发工程师,拍立秀App联合创始人,热衷于简洁、而富有理性的事物 QQ:543413507 主页:http://zengxianhua.com All rights reserved.
//
#import "XHMessage.h"
@implementation XHMessage
- (instancetype)initWithText:(NSString *)text
sender:(NSString *)sender
timestamp:(NSDate *)timestamp {
self = [super init];
if (self) {
self.text = text;
self.sender = sender;
self.timestamp = timestamp;
self.messageMediaType = XHBubbleMessageMediaTypeText;
}
return self;
}
/**
* 初始化图片类型的消息
*
* @param photo 目标图片
* @param thumbnailUrl 目标图片在服务器的缩略图地址
* @param originPhotoUrl 目标图片在服务器的原图地址
* @param sender 发送者
* @param date 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithPhoto:(UIImage *)photo
thumbnailUrl:(NSString *)thumbnailUrl
originPhotoUrl:(NSString *)originPhotoUrl
sender:(NSString *)sender
timestamp:(NSDate *)timestamp {
self = [super init];
if (self) {
self.photo = photo;
self.thumbnailUrl = thumbnailUrl;
self.originPhotoUrl = originPhotoUrl;
self.sender = sender;
self.timestamp = timestamp;
self.messageMediaType = XHBubbleMessageMediaTypePhoto;
}
return self;
}
/**
* 初始化视频类型的消息
*
* @param videoConverPhoto 目标视频的封面图
* @param videoPath 目标视频的本地路径,如果是下载过,或者是从本地发送的时候,会存在
* @param videoUrl 目标视频在服务器上的地址
* @param sender 发送者
* @param date 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithVideoConverPhoto:(UIImage *)videoConverPhoto
videoPath:(NSString *)videoPath
videoUrl:(NSString *)videoUrl
sender:(NSString *)sender
timestamp:(NSDate *)timestamp {
self = [super init];
if (self) {
self.videoConverPhoto = videoConverPhoto;
self.videoPath = videoPath;
self.videoUrl = videoUrl;
self.sender = sender;
self.timestamp = timestamp;
self.messageMediaType = XHBubbleMessageMediaTypeVideo;
}
return self;
}
/**
* 初始化语音类型的消息
*
* @param voicePath 目标语音的本地路径
* @param voiceUrl 目标语音在服务器的地址
* @param voiceDuration 目标语音的时长
* @param sender 发送者
* @param date 发送时间
*
* @return 返回Message model 对象
*/
- (instancetype)initWithVoicePath:(NSString *)voicePath
voiceUrl:(NSString *)voiceUrl
voiceDuration:(NSString *)voiceDuration
sender:(NSString *)sender
timestamp:(NSDate *)timestamp {
return [self initWithVoicePath:voicePath voiceUrl:voiceUrl voiceDuration:voiceDuration sender:sender timestamp:timestamp isRead:YES];
}
/**
* 初始化语音类型的消息。增加已读未读标记
*
* @param voicePath 目标语音的本地路径
* @param voiceUrl 目标语音在服务器的地址
* @param voiceDuration 目标语音的时长
* @param sender 发送者
* @param date 发送时间
* @param isRead 已读未读标记
*
* @return 返回Message model 对象
*/
- (instancetype)initWithVoicePath:(NSString *)voicePath
voiceUrl:(NSString *)voiceUrl
voiceDuration:(NSString *)voiceDuration
sender:(NSString *)sender
timestamp:(NSDate *)timestamp
isRead:(BOOL)isRead {
self = [super init];
if (self) {
self.voicePath = voicePath;
self.voiceUrl = voiceUrl;
self.voiceDuration = voiceDuration;
self.sender = sender;
self.timestamp = timestamp;
self.isRead = isRead;
self.messageMediaType = XHBubbleMessageMediaTypeVoice;
}
return self;
}
- (instancetype)initWithEmotionPath:(NSString *)emotionPath
sender:(NSString *)sender
timestamp:(NSDate *)timestamp {
self = [super init];
if (self) {
self.emotionPath = emotionPath;
self.sender = sender;
self.timestamp = timestamp;
self.messageMediaType = XHBubbleMessageMediaTypeEmotion;
}
return self;
}
- (instancetype)initWithLocalPositionPhoto:(UIImage *)localPositionPhoto
geolocations:(NSString *)geolocations
location:(CLLocation *)location
sender:(NSString *)sender
timestamp:(NSDate *)timestamp {
self = [super init];
if (self) {
self.localPositionPhoto = localPositionPhoto;
self.geolocations = geolocations;
self.location = location;
self.sender = sender;
self.timestamp = timestamp;
self.messageMediaType = XHBubbleMessageMediaTypeLocalPosition;
}
return self;
}
- (void)dealloc {
_text = nil;
_photo = nil;
_thumbnailUrl = nil;
_originPhotoUrl = nil;
_videoConverPhoto = nil;
_videoPath = nil;
_videoUrl = nil;
_voicePath = nil;
_voiceUrl = nil;
_voiceDuration = nil;
_emotionPath = nil;
_localPositionPhoto = nil;
_geolocations = nil;
_location = nil;
_avatar = nil;
_avatarUrl = nil;
_sender = nil;
_timestamp = nil;
_Id = nil;
}
#pragma mark - NSCoding
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super init];
if (self) {
_text = [aDecoder decodeObjectForKey:@"text"];
_photo = [aDecoder decodeObjectForKey:@"photo"];
_thumbnailUrl = [aDecoder decodeObjectForKey:@"thumbnailUrl"];
_originPhotoUrl = [aDecoder decodeObjectForKey:@"originPhotoUrl"];
_videoConverPhoto = [aDecoder decodeObjectForKey:@"videoConverPhoto"];
_videoPath = [aDecoder decodeObjectForKey:@"videoPath"];
_videoUrl = [aDecoder decodeObjectForKey:@"videoUrl"];
_voicePath = [aDecoder decodeObjectForKey:@"voicePath"];
_voiceUrl = [aDecoder decodeObjectForKey:@"voiceUrl"];
_voiceDuration = [aDecoder decodeObjectForKey:@"voiceDuration"];
_emotionPath = [aDecoder decodeObjectForKey:@"emotionPath"];
_localPositionPhoto = [aDecoder decodeObjectForKey:@"localPositionPhoto"];
_geolocations = [aDecoder decodeObjectForKey:@"geolocations"];
_location = [aDecoder decodeObjectForKey:@"location"];
_avatar = [aDecoder decodeObjectForKey:@"avatar"];
_avatarUrl = [aDecoder decodeObjectForKey:@"avatarUrl"];
_sendType = [aDecoder decodeObjectForKey:@"sendType"];
_Id = [aDecoder decodeObjectForKey:@"Id"];
_sender = [aDecoder decodeObjectForKey:@"sender"];
_timestamp = [aDecoder decodeObjectForKey:@"timestamp"];
_messageMediaType = [[aDecoder decodeObjectForKey:@"messageMediaType"] integerValue];
_bubbleMessageType = [[aDecoder decodeObjectForKey:@"bubbleMessageType"] integerValue];
_isRead = [[aDecoder decodeObjectForKey:@"isRead"] boolValue];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)aCoder {
[aCoder encodeObject:self.text forKey:@"text"];
[aCoder encodeObject:self.photo forKey:@"photo"];
[aCoder encodeObject:self.thumbnailUrl forKey:@"thumbnailUrl"];
[aCoder encodeObject:self.originPhotoUrl forKey:@"originPhotoUrl"];
[aCoder encodeObject:self.videoConverPhoto forKey:@"videoConverPhoto"];
[aCoder encodeObject:self.videoPath forKey:@"videoPath"];
[aCoder encodeObject:self.videoUrl forKey:@"videoUrl"];
[aCoder encodeObject:self.voicePath forKey:@"voicePath"];
[aCoder encodeObject:self.voiceUrl forKey:@"voiceUrl"];
[aCoder encodeObject:self.voiceDuration forKey:@"voiceDuration"];
[aCoder encodeObject:self.emotionPath forKey:@"emotionPath"];
[aCoder encodeObject:self.localPositionPhoto forKey:@"localPositionPhoto"];
[aCoder encodeObject:self.geolocations forKey:@"geolocations"];
[aCoder encodeObject:self.location forKey:@"location"];
[aCoder encodeObject:self.avatar forKey:@"avatar"];
[aCoder encodeObject:self.avatarUrl forKey:@"avatarUrl"];
[aCoder encodeObject:@(self.sendType) forKey:@"sendType"];
[aCoder encodeObject:self.Id forKey:@"Id"];
[aCoder encodeObject:self.sender forKey:@"sender"];
[aCoder encodeObject:self.timestamp forKey:@"timestamp"];
[aCoder encodeObject:[NSNumber numberWithInteger:self.messageMediaType] forKey:@"messageMediaType"];
[aCoder encodeObject:[NSNumber numberWithInteger:self.bubbleMessageType] forKey:@"bubbleMessageType"];
[aCoder encodeObject:[NSNumber numberWithBool:self.isRead] forKey:@"isRead"];
}
#pragma mark - NSCopying
- (id)copyWithZone:(NSZone *)zone {
switch (self.messageMediaType) {
case XHBubbleMessageMediaTypeText:
return [[[self class] allocWithZone:zone] initWithText:[self.text copy]
sender:[self.sender copy]
timestamp:[self.timestamp copy]];
case XHBubbleMessageMediaTypePhoto:
return [[[self class] allocWithZone:zone] initWithPhoto:[self.photo copy]
thumbnailUrl:[self.thumbnailUrl copy]
originPhotoUrl:[self.originPhotoUrl copy]
sender:[self.sender copy]
timestamp:[self.timestamp copy]];
case XHBubbleMessageMediaTypeVideo:
return [[[self class] allocWithZone:zone] initWithVideoConverPhoto:[self.videoConverPhoto copy]
videoPath:[self.videoPath copy]
videoUrl:[self.videoUrl copy]
sender:[self.sender copy]
timestamp:[self.timestamp copy]];
case XHBubbleMessageMediaTypeVoice:
return [[[self class] allocWithZone:zone] initWithVoicePath:[self.voicePath copy]
voiceUrl:[self.voiceUrl copy]
voiceDuration:[self.voiceDuration copy]
sender:[self.sender copy]
timestamp:[self.timestamp copy]];
case XHBubbleMessageMediaTypeEmotion:
return [[[self class] allocWithZone:zone] initWithEmotionPath:[self.emotionPath copy]
sender:[self.sender copy]
timestamp:[self.timestamp copy]];
case XHBubbleMessageMediaTypeLocalPosition:
return [[[self class] allocWithZone:zone] initWithLocalPositionPhoto:[self.localPositionPhoto copy]
geolocations:self.geolocations
location:[self.location copy]
sender:[self.sender copy]
timestamp:[self.timestamp copy]];
default:
return nil;
}
}
- (void)setSenderID:(NSString *)senderID{
_senderID = senderID;
if ([senderID isEqualToString:APIManager.sharedManager.loginModel.openid]) {
self.bubbleMessageType = XHBubbleMessageTypeSending;
}else{
self.bubbleMessageType = XHBubbleMessageTypeReceiving;
}
}
@end