@ -2,7 +2,7 @@
/ / Copyright ( c ) 2017 Open Whisper Systems . All rights reserved .
/ /
#import "OWSConversationSettings Table ViewController. h "
#import "OWSConversationSettings ViewController. h "
#import "BlockListUIUtils . h "
#import "ContactsViewHelper . h "
#import "Environment . h "
@ -24,6 +24,7 @@
#import < SignalServiceKit / OWSDisappearingMessagesConfiguration . h >
#import < SignalServiceKit / OWSMessageSender . h >
#import < SignalServiceKit / OWSNotifyRemoteOfUpdatedDisappearingConfigurationJob . h >
#import < SignalServiceKit / OWSProfilesManager . h >
#import < SignalServiceKit / TSGroupThread . h >
#import < SignalServiceKit / TSOutgoingMessage . h >
#import < SignalServiceKit / TSStorageManager . h >
@ -33,7 +34,7 @@
NS_ASSUME_NONNULL_BEGIN
@ interface OWSConversationSettings Table ViewController ( ) < ContactEditingDelegate , ContactsViewHelperDelegate >
@ interface OWSConversationSettings ViewController ( ) < ContactEditingDelegate , ContactsViewHelperDelegate >
@ property ( nonatomic ) TSThread * thread ;
@ -52,7 +53,7 @@ NS_ASSUME_NONNULL_BEGIN
#pragma mark -
@ implementation OWSConversationSettings Table ViewController
@ implementation OWSConversationSettings ViewController
- ( instancetype ) init
{
@ -78,14 +79,15 @@ NS_ASSUME_NONNULL_BEGIN
return self ;
}
- ( instancetype ) initWithNibName : ( nullable NSString * ) nibNameOrNil bundle : ( nullable NSBundle * ) nibBundleOrNil {
- ( instancetype ) initWithNibName : ( nullable NSString * ) nibNameOrNil bundle : ( nullable NSBundle * ) nibBundleOrNil
{
self = [ super initWithNibName : nibNameOrNil bundle : nibBundleOrNil ] ;
if ( !self ) {
return self ;
}
[ self commonInit ] ;
return self ;
}
@ -244,7 +246,7 @@ NS_ASSUME_NONNULL_BEGIN
OWSTableContents * contents = [ OWSTableContents new ] ;
contents . title = NSLocalizedString ( @ "CONVERSATION_SETTINGS ", @ "title for conversation settings screen ") ;
__weak OWSConversationSettings Table ViewController * weakSelf = self ;
__weak OWSConversationSettings ViewController * weakSelf = self ;
/ / Main section .
@ -271,7 +273,7 @@ NS_ASSUME_NONNULL_BEGIN
iconName : @ "table_ic_add_to_existing_contact "] ;
}
actionBlock : ^{
OWSConversationSettings Table ViewController * strongSelf = weakSelf ;
OWSConversationSettings ViewController * strongSelf = weakSelf ;
OWSCAssert ( strongSelf ) ;
TSContactThread * contactThread = ( TSContactThread * ) strongSelf . thread ;
NSString * recipientId = contactThread . contactIdentifier ;
@ -292,10 +294,50 @@ NS_ASSUME_NONNULL_BEGIN
} ] ] ;
}
BOOL isOnProfileWhitelist = NO ;
if ( self . isGroupThread ) {
TSGroupThread * groupThread = ( TSGroupThread * ) self . thread ;
NSData * groupId = groupThread . groupModel . groupId ;
isOnProfileWhitelist = [ OWSProfilesManager . sharedManager isGroupIdInProfileWhitelist : groupId ] ;
} else {
NSString * recipientId = self . thread . contactIdentifier ;
isOnProfileWhitelist = [ OWSProfilesManager . sharedManager isUserInProfileWhitelist : recipientId ] ;
}
if ( isOnProfileWhitelist ) {
[ mainSection addItem : [ OWSTableItem itemWithCustomCellBlock : ^{
return [ weakSelf
labelCellWithName : ( self . isGroupThread
? NSLocalizedString (
@ "CONVERSATION_SETTINGS_VIEW_PROFILE_IS_SHARED_WITH_GROUP ",
@ "Indicates that user ' s profile has been shared with a group . ")
: NSLocalizedString ( @ "CONVERSATION_SETTINGS_VIEW_PROFILE_IS_SHARED_WITH_USER ",
@ "Indicates that user ' s profile has been shared with a user . ") ) iconName
: @ "table_ic_share_profile "] ;
}
actionBlock : ^{
[ weakSelf showShareProfileAlert ] ;
} ] ] ;
} else {
[ mainSection addItem : [ OWSTableItem itemWithCustomCellBlock : ^{
return
[ weakSelf disclosureCellWithName : ( self . isGroupThread
? NSLocalizedString (
@ "CONVERSATION_SETTINGS_VIEW_SHARE_PROFILE_WITH_GROUP ",
@ "Action that shares user profile with a group . ")
: NSLocalizedString (
@ "CONVERSATION_SETTINGS_VIEW_SHARE_PROFILE_WITH_USER ",
@ "Action that shares user profile with a user . ") ) iconName
: @ "table_ic_share_profile "] ;
}
actionBlock : ^{
[ weakSelf showShareProfileAlert ] ;
} ] ] ;
}
[ mainSection
addItem : [ OWSTableItem itemWithCustomCellBlock : ^{
UITableViewCell * cell = [ UITableViewCell new ] ;
OWSConversationSettingsTableViewController * strongSelf = weakSelf ;
OWSConversationSettings ViewController * strongSelf = weakSelf ;
OWSCAssert ( strongSelf ) ;
cell . preservesSuperviewLayoutMargins = YES ;
cell . contentView . preservesSuperviewLayoutMargins = YES ;
@ -354,7 +396,7 @@ NS_ASSUME_NONNULL_BEGIN
addItem : [ OWSTableItem
itemWithCustomCellBlock : ^{
UITableViewCell * cell = [ UITableViewCell new ] ;
OWSConversationSettings Table ViewController * strongSelf = weakSelf ;
OWSConversationSettings ViewController * strongSelf = weakSelf ;
OWSCAssert ( strongSelf ) ;
cell . preservesSuperviewLayoutMargins = YES ;
cell . contentView . preservesSuperviewLayoutMargins = YES ;
@ -442,7 +484,7 @@ NS_ASSUME_NONNULL_BEGIN
OWSTableSection * muteSection = [ OWSTableSection new ] ;
[ muteSection addItem : [ OWSTableItem itemWithCustomCellBlock : ^{
UITableViewCell * cell = [ [ UITableViewCell alloc ] initWithStyle : UITableViewCellStyleValue1 reuseIdentifier : nil ] ;
OWSConversationSettings Table ViewController * strongSelf = weakSelf ;
OWSConversationSettings ViewController * strongSelf = weakSelf ;
OWSCAssert ( strongSelf ) ;
cell . preservesSuperviewLayoutMargins = YES ;
cell . contentView . preservesSuperviewLayoutMargins = YES ;
@ -514,7 +556,7 @@ NS_ASSUME_NONNULL_BEGIN
[ weakSelf disclosureCellWithName : NSLocalizedString ( @ "CONVERSATION_SETTINGS_BLOCK_THIS_USER ",
@ "table cell label in conversation settings ")
iconName : @ "table_ic_block "] ;
OWSConversationSettings Table ViewController * strongSelf = weakSelf ;
OWSConversationSettings ViewController * strongSelf = weakSelf ;
OWSCAssert ( strongSelf ) ;
cell . selectionStyle = UITableViewCellSelectionStyleNone ;
@ -538,7 +580,7 @@ NS_ASSUME_NONNULL_BEGIN
return 12. f ;
}
- ( UITableViewCell * ) dis closureC ellWithName: ( NSString * ) name iconName : ( NSString * ) iconName
- ( UITableViewCell * ) cellWithName: ( NSString * ) name iconName : ( NSString * ) iconName
{
OWSAssert ( name . length > 0 ) ;
OWSAssert ( iconName . length > 0 ) ;
@ -546,7 +588,6 @@ NS_ASSUME_NONNULL_BEGIN
UITableViewCell * cell = [ UITableViewCell new ] ;
cell . preservesSuperviewLayoutMargins = YES ;
cell . contentView . preservesSuperviewLayoutMargins = YES ;
cell . accessoryType = UITableViewCellAccessoryDisclosureIndicator ;
UIImageView * iconView = [ self viewForIconWithName : iconName ] ;
[ cell . contentView addSubview : iconView ] ;
@ -566,6 +607,20 @@ NS_ASSUME_NONNULL_BEGIN
return cell ;
}
- ( UITableViewCell * ) disclosureCellWithName : ( NSString * ) name iconName : ( NSString * ) iconName
{
UITableViewCell * cell = [ self cellWithName : name iconName : iconName ] ;
cell . accessoryType = UITableViewCellAccessoryDisclosureIndicator ;
return cell ;
}
- ( UITableViewCell * ) labelCellWithName : ( NSString * ) name iconName : ( NSString * ) iconName
{
UITableViewCell * cell = [ self cellWithName : name iconName : iconName ] ;
cell . accessoryType = UITableViewCellAccessoryNone ;
return cell ;
}
- ( UIView * ) mainSectionHeader
{
UIView * mainSectionHeader = [ UIView new ] ;
@ -728,6 +783,45 @@ NS_ASSUME_NONNULL_BEGIN
#pragma mark - Actions
- ( void ) showShareProfileAlert
{
UIAlertController * alertController =
[ UIAlertController alertControllerWithTitle : nil message : nil preferredStyle : UIAlertControllerStyleActionSheet ] ;
UIAlertAction * leaveAction = [ UIAlertAction
actionWithTitle : NSLocalizedString ( @ "CONVERSATION_SETTINGS_VIEW_SHARE_PROFILE ",
@ "Button to confirm that user wants to share their profile with a user or group . ")
style : UIAlertActionStyleDestructive
handler : ^( UIAlertAction * _Nonnull action ) {
[ self shareProfile ] ;
} ] ;
[ alertController addAction : leaveAction ] ;
UIAlertAction * cancelAction = [ UIAlertAction
actionWithTitle : NSLocalizedString ( @ "TXT_CANCEL_TITLE ", nil )
style : UIAlertActionStyleCancel
handler : ^( UIAlertAction * _Nonnull action ) {
[ self . tableView deselectRowAtIndexPath : [ self . tableView indexPathForSelectedRow ] animated : YES ] ;
} ] ;
[ alertController addAction : cancelAction ] ;
[ self presentViewController : alertController animated : YES completion : nil ] ;
}
- ( void ) shareProfile
{
if ( self . isGroupThread ) {
TSGroupThread * groupThread = ( TSGroupThread * ) self . thread ;
NSData * groupId = groupThread . groupModel . groupId ;
[ OWSProfilesManager . sharedManager addGroupIdToProfileWhitelist : groupId ] ;
} else {
NSString * recipientId = self . thread . contactIdentifier ;
[ OWSProfilesManager . sharedManager addUserToProfileWhitelist : recipientId ] ;
}
[ self updateTableContents ] ;
}
- ( void ) showVerificationView
{
NSString * recipientId = self . thread . contactIdentifier ;
@ -949,7 +1043,7 @@ NS_ASSUME_NONNULL_BEGIN
message : message
preferredStyle : UIAlertControllerStyleActionSheet ] ;
__weak OWSConversationSettings Table ViewController * weakSelf = self ;
__weak OWSConversationSettings ViewController * weakSelf = self ;
if ( self . thread . isMuted ) {
UIAlertAction * action = [ UIAlertAction actionWithTitle : NSLocalizedString ( @ "CONVERSATION_SETTINGS_UNMUTE_ACTION ",
@ "Label for button to unmute a thread . ")