1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/Telegraph/TGAccountSettingsController.m

1141 lines
46 KiB
Mathematica
Raw Normal View History

2014-07-10 16:11:09 +02:00
#import "TGAccountSettingsController.h"
#import "ActionStage.h"
#import "SGraphObjectNode.h"
#import "TGTimelineUploadPhotoRequestBuilder.h"
#import "TGDeleteProfilePhotoActor.h"
#import "TGNotificationSettingsController.h"
#import "TGChatSettingsController.h"
2015-10-01 18:19:52 +02:00
#import "TGPrivacySettingsController.h"
2014-07-10 16:11:09 +02:00
#import "TGAccountInfoCollectionItem.h"
#import "TGDisclosureActionCollectionItem.h"
#import "TGButtonCollectionItem.h"
#import "TGWallpapersCollectionItem.h"
#import "TGSwitchCollectionItem.h"
#import "TGCommentCollectionItem.h"
2015-10-01 18:19:52 +02:00
#import "TGVariantCollectionItem.h"
2014-07-10 16:11:09 +02:00
#import "TGWallpaperListController.h"
#import "TGWallpaperController.h"
#import "TGWallpaperManager.h"
#import "TGActionSheet.h"
#import "TGProgressWindow.h"
#import "TGRemoteImageView.h"
#import "TGDatabase.h"
#import "TGTelegraph.h"
#import "TGAppDelegate.h"
#import "TGHacks.h"
#import "TGInterfaceManager.h"
#import "TGAlertView.h"
2015-10-01 18:19:52 +02:00
#import "TGPhoneUtils.h"
#import "TGImageUtils.h"
#import "UIDevice+PlatformInfo.h"
2014-07-10 16:11:09 +02:00
#import "TGLegacyCameraController.h"
#import "TGImagePickerController.h"
2015-10-01 18:19:52 +02:00
#import "TGWebSearchController.h"
#import "TGOverlayFormsheetWindow.h"
#import "TGMediaFoldersController.h"
#import "TGModernMediaPickerController.h"
#import "TGCameraController.h"
#import "TGOverlayControllerWindow.h"
#import "TGModernGalleryController.h"
#import "TGProfileUserAvatarGalleryModel.h"
#import "TGProfileUserAvatarGalleryItem.h"
2014-07-10 16:11:09 +02:00
#import "TGSettingsController.h"
2015-10-01 18:19:52 +02:00
#import "TGUsernameController.h"
#import "TGAlertView.h"
#import "TGAccountSettingsActor.h"
#import "TGChangePhoneNumberHelpController.h"
#import "TGFaqController.h"
#import "TGAccessChecker.h"
#import "TGAttachmentSheetView.h"
#import "TGAttachmentSheetWindow.h"
#import "TGAttachmentSheetButtonItemView.h"
#import "TGAttachmentSheetRecentItemView.h"
#import "TGAttachmentSheetRecentCameraView.h"
#import "TGCameraPreviewView.h"
2014-07-10 16:11:09 +02:00
@interface TGAccountSettingsController () <TGImagePickerControllerDelegate, TGLegacyCameraControllerDelegate, TGWallpaperControllerDelegate>
{
int32_t _uid;
bool _editing;
TGAccountInfoCollectionItem *_profileDataItem;
TGButtonCollectionItem *_setProfilePhotoItem;
TGSwitchCollectionItem *_autosavePhotosItem;
TGWallpapersCollectionItem *_wallpapersItem;
2015-10-01 18:19:52 +02:00
TGVariantCollectionItem *_usernameItem;
TGVariantCollectionItem *_phoneNumberItem;
2014-07-10 16:11:09 +02:00
TGDisclosureActionCollectionItem *_notificationsItem;
2015-10-01 18:19:52 +02:00
TGDisclosureActionCollectionItem *_privacySettingsItem;
2014-07-10 16:11:09 +02:00
TGDisclosureActionCollectionItem *_chatSettingsItem;
TGDisclosureActionCollectionItem *_supportItem;
TGDisclosureActionCollectionItem *_faqItem;
UIBarButtonItem *_accountEditingBarButtonItem;
2015-10-01 18:19:52 +02:00
TGAttachmentSheetWindow *_attachmentSheetWindow;
2014-07-10 16:11:09 +02:00
}
@property (nonatomic, strong) TGProgressWindow *progressWindow;
@end
@implementation TGAccountSettingsController
- (id)initWithUid:(int32_t)uid
{
self = [super init];
if (self)
{
_actionHandle = [[ASHandle alloc] initWithDelegate:self releaseOnMainThread:true];
[ActionStageInstance() watchForPaths:@[
@"/tg/userdatachanges",
@"/tg/userpresencechanges",
@"/tg/service/synchronizationstate"
] watcher:self];
[ActionStageInstance() requestActor:@"/tg/service/synchronizationstate" options:nil flags:0 watcher:self];
_uid = uid;
_profileDataItem = [[TGAccountInfoCollectionItem alloc] init];
_profileDataItem.interfaceHandle = _actionHandle;
_setProfilePhotoItem = [[TGButtonCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.SetProfilePhoto") action:@selector(setProfilePhotoPressed)];
_setProfilePhotoItem.deselectAutomatically = true;
TGCollectionMenuSection *headerSection = [[TGCollectionMenuSection alloc] initWithItems:@[
_profileDataItem,
_setProfilePhotoItem
]];
[self.menuSections addSection:headerSection];
_wallpapersItem = [[TGWallpapersCollectionItem alloc] initWithAction:@selector(wallpapersPressed) title:TGLocalized(@"Settings.ChatBackground")];
_wallpapersItem.interfaceHandle = _actionHandle;
TGCollectionMenuSection *settingsSection = [[TGCollectionMenuSection alloc] initWithItems:@[
(_notificationsItem = [[TGDisclosureActionCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.NotificationsAndSounds") action:@selector(notificationsAndSoundsPressed)]),
2015-10-01 18:19:52 +02:00
(_privacySettingsItem = [[TGDisclosureActionCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.PrivacySettings") action:@selector(privacySettingsPressed)]),
2014-07-10 16:11:09 +02:00
(_chatSettingsItem = [[TGDisclosureActionCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.ChatSettings") action:@selector(chatSettingsPressed)]),
_wallpapersItem
]];
[self.menuSections addSection:settingsSection];
2015-10-01 18:19:52 +02:00
_phoneNumberItem = [[TGVariantCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.PhoneNumber") action:@selector(phoneNumberPressed)];
_usernameItem = [[TGVariantCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.Username") action:@selector(usernamePressed)];
TGCollectionMenuSection *usernameSection = [[TGCollectionMenuSection alloc] initWithItems:@[_phoneNumberItem, _usernameItem]];
[self.menuSections addSection:usernameSection];
2014-07-10 16:11:09 +02:00
_autosavePhotosItem = [[TGSwitchCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.SaveIncomingPhotos") isOn:TGAppDelegateInstance.autosavePhotos];
_autosavePhotosItem.interfaceHandle = _actionHandle;
_supportItem = [[TGDisclosureActionCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.Support") action:@selector(supportPressed)];
_supportItem.deselectAutomatically = true;
_faqItem = [[TGDisclosureActionCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.FAQ") action:@selector(faqPressed)];
_faqItem.deselectAutomatically = true;
TGCollectionMenuSection *downloadSection = [[TGCollectionMenuSection alloc] initWithItems:@[
_supportItem,
_faqItem,
_autosavePhotosItem,
[[TGCommentCollectionItem alloc] initWithText:TGLocalized(@"Settings.SaveIncomingPhotosHelp")]
]];
[self.menuSections addSection:downloadSection];
}
return self;
}
- (void)dealloc
{
[_actionHandle reset];
[ActionStageInstance() removeWatcher:self];
}
- (void)loadView
{
[super loadView];
_editing = false;
2015-10-01 18:19:52 +02:00
TGUser *user = [TGDatabaseInstance() loadUser:_uid];
[_profileDataItem setUser:user animated:false];
[_usernameItem setVariant:user.userName.length == 0 ? TGLocalized(@"Settings.UsernameEmpty") : [[NSString alloc] initWithFormat:@"@%@", user.userName]];
[_phoneNumberItem setVariant:user.phoneNumber.length == 0 ? @"" : [TGPhoneUtils formatPhone:user.phoneNumber forceInternational:true]];
2014-07-10 16:11:09 +02:00
[self setTitleText:TGLocalized(@"Settings.Title")];
_accountEditingBarButtonItem = nil;;
[self setRightBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Edit") style:UIBarButtonItemStylePlain target:self action:@selector(editButtonPressed)]];
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[ActionStageInstance() dispatchOnStageQueue:^
{
NSArray *uploadActions = [ActionStageInstance() rejoinActionsWithGenericPathNow:@"/tg/timeline/@/uploadPhoto/@" prefix:[[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")/uploadPhoto/", _uid] watcher:self];
NSArray *deleteActions = [ActionStageInstance() rejoinActionsWithGenericPathNow:@"/tg/timeline/@/deleteAvatar/@" prefix:[[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")/deleteAvatar/", _uid] watcher:self];
if (uploadActions.count != 0)
{
TGTimelineUploadPhotoRequestBuilder *actor = (TGTimelineUploadPhotoRequestBuilder *)[ActionStageInstance() executingActorWithPath:uploadActions.lastObject];
if (actor != nil)
{
TGDispatchOnMainThread(^
{
[_profileDataItem setUpdatingAvatar:actor.currentPhoto hasUpdatingAvatar:true];
[_setProfilePhotoItem setEnabled:false];
});
}
}
else if (deleteActions.count != 0)
{
TGDeleteProfilePhotoActor *actor = (TGDeleteProfilePhotoActor *)[ActionStageInstance() executingActorWithPath:deleteActions.lastObject];
if (actor != nil)
{
TGDispatchOnMainThread(^
{
[_profileDataItem setUpdatingAvatar:nil hasUpdatingAvatar:true];
[_setProfilePhotoItem setEnabled:false];
});
}
}
2015-10-01 18:19:52 +02:00
if ([TGAccountSettingsActor accountSettingsFotCurrentStateId] == nil)
[ActionStageInstance() requestActor:@"/accountSettings" options:@{} flags:0 watcher:self];
2014-07-10 16:11:09 +02:00
}];
}
- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
if (_editing)
{
[self setEditing:false animated:false];
[_profileDataItem setUser:[TGDatabaseInstance() loadUser:_uid] animated:false];
}
}
#pragma mark -
- (void)editButtonPressed
{
if (_editing)
{
if ([_profileDataItem editingFirstName].length == 0 && [_profileDataItem editingLastName].length == 0)
return;
}
[self setEditing:!_editing animated:true];
[self.collectionView updateVisibleItemsNow];
if (!_editing)
{
TGUser *user = [TGDatabaseInstance() loadUser:_uid];
if (!TGStringCompare(user.firstName, [_profileDataItem editingFirstName]) || !TGStringCompare(user.lastName, [_profileDataItem editingLastName]))
{
[_profileDataItem setUpdatingFirstName:[_profileDataItem editingFirstName] updatingLastName:[_profileDataItem editingLastName]];
static int actionId = 0;
NSString *action = [[NSString alloc] initWithFormat:@"/tg/changeUserName/(%d)", actionId++];
NSDictionary *options = [[NSDictionary alloc] initWithObjectsAndKeys:[_profileDataItem editingFirstName], @"firstName", [_profileDataItem editingLastName], @"lastName", nil];
[ActionStageInstance() requestActor:action options:options flags:0 watcher:self];
}
}
}
- (void)cancelButtonPressed
{
[self setEditing:false animated:true];
[_profileDataItem setUser:[TGDatabaseInstance() loadUser:_uid] animated:false];
}
- (void)setProfilePhotoPressed
{
2015-10-01 18:19:52 +02:00
{
NSMutableArray *actions = [[NSMutableArray alloc] init];
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
[actions addObject:[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Common.TakePhoto") action:@"camera"]];
[actions addObject:[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Common.ChoosePhoto") action:@"choosePhoto"]];
[actions addObject:[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Conversation.SearchWebImages") action:@"searchWeb"]];
[actions addObject:[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Common.Cancel") action:@"cancel" type:TGActionSheetActionTypeCancel]];
TGActionSheet *actionSheet = [[TGActionSheet alloc] initWithTitle:nil actions:actions actionBlock:^(TGAccountSettingsController *controller, NSString *action)
{
if ([action isEqualToString:@"camera"])
[controller _displayCameraWithView:nil];
else if ([action isEqualToString:@"choosePhoto"])
[controller _displayImagePicker:false];
else if ([action isEqualToString:@"searchWeb"])
[controller _displayImagePicker:true];
else if ([action isEqualToString:@"delete"])
[controller _commitDeleteAvatar];
} target:self];
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
[actionSheet showInView:self.view];
else
{
NSIndexPath *indexPath = [self indexPathForItem:_setProfilePhotoItem];
UIView *cell = [self.collectionView cellForItemAtIndexPath:indexPath];
[actionSheet showFromRect:CGRectInset([cell convertRect:cell.bounds toView:self.view], 0.0f, -4.0f) inView:self.view animated:true];
}
}
}
- (void)_displayCameraWithView:(TGAttachmentSheetRecentCameraView *)cameraView
{
if (![TGAccessChecker checkCameraAuthorizationStatusWithAlertDismissComlpetion:nil])
return;
if (TGAppDelegateInstance.rootController.isSplitView)
return;
if (iosMajorVersion() < 7 || [UIDevice currentDevice].platformType == UIDevice4iPhone || [UIDevice currentDevice].platformType == UIDevice4GiPod)
{
[self _displayLegacyCamera];
[_attachmentSheetWindow dismissAnimated:true completion:nil];
return;
}
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
TGCameraController *controller = nil;
CGSize screenSize = TGScreenSize();
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
if (cameraView.previewView != nil)
controller = [[TGCameraController alloc] initWithCamera:cameraView.previewView.camera previewView:cameraView.previewView intent:TGCameraControllerAvatarIntent];
else
controller = [[TGCameraController alloc] initWithIntent:TGCameraControllerAvatarIntent];
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
controller.shouldStoreCapturedAssets = true;
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
TGCameraControllerWindow *controllerWindow = [[TGCameraControllerWindow alloc] initWithParentController:self contentController:controller];
if (_attachmentSheetWindow != nil)
controllerWindow.windowLevel = _attachmentSheetWindow.windowLevel + 0.0001f;
controllerWindow.hidden = false;
controllerWindow.clipsToBounds = true;
controllerWindow.frame = CGRectMake(0, 0, screenSize.width, screenSize.height);
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
bool standalone = true;
CGRect startFrame = CGRectMake(0, screenSize.height, screenSize.width, screenSize.height);
if (cameraView != nil)
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
standalone = false;
startFrame = [controller.view convertRect:cameraView.previewView.frame fromView:cameraView];
}
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
[cameraView detachPreviewView];
[controller beginTransitionInFromRect:startFrame];
__weak TGAccountSettingsController *weakSelf = self;
__weak TGCameraController *weakCameraController = controller;
__weak TGAttachmentSheetRecentCameraView *weakCameraView = cameraView;
controller.beginTransitionOut = ^CGRect
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
__strong TGCameraController *strongCameraController = weakCameraController;
if (strongCameraController == nil)
return CGRectZero;
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
if (!standalone)
{
__strong TGAttachmentSheetRecentCameraView *strongCameraView = weakCameraView;
if (strongCameraView != nil)
return [strongCameraController.view convertRect:strongCameraView.frame fromView:strongCameraView.superview];
}
return CGRectZero;
};
controller.finishedTransitionOut = ^
{
__strong TGAttachmentSheetRecentCameraView *strongCameraView = weakCameraView;
if (strongCameraView == nil)
return;
[strongCameraView attachPreviewViewAnimated:true];
};
controller.finishedWithPhoto = ^(UIImage *resultImage, __unused NSString *caption)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf _updateProfileImage:resultImage];
[strongSelf->_attachmentSheetWindow dismissAnimated:false completion:nil];
};
2014-07-10 16:11:09 +02:00
}
2015-10-01 18:19:52 +02:00
- (void)_displayLegacyCamera
2014-07-10 16:11:09 +02:00
{
TGLegacyCameraController *legacyCameraController = [[TGLegacyCameraController alloc] init];
legacyCameraController.sourceType = UIImagePickerControllerSourceTypeCamera;
legacyCameraController.avatarMode = true;
legacyCameraController.completionDelegate = self;
[self presentViewController:legacyCameraController animated:true completion:nil];
}
- (void)_displayImagePicker:(bool)openWebSearch
{
2015-10-01 18:19:52 +02:00
__weak TGAccountSettingsController *weakSelf = self;
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
TGNavigationController *navigationController = nil;
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
if (openWebSearch)
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
TGWebSearchController *controller = [[TGWebSearchController alloc] initForAvatarSelection:true];
__weak TGWebSearchController *weakController = controller;
controller.avatarCreated = ^(UIImage *image)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf _updateProfileImage:image];
__strong TGWebSearchController *strongController = weakController;
if (strongController != nil && strongController.dismiss != nil)
strongController.dismiss();
};
navigationController = [TGNavigationController navigationControllerWithControllers:@[controller]];
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
void (^dismiss)(void) = ^
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf dismissViewControllerAnimated:true completion:nil];
};
[self presentViewController:navigationController animated:true completion:nil];
controller.dismiss = dismiss;
}
else
{
navigationController.presentationStyle = TGNavigationControllerPresentationStyleInFormSheet;
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
TGOverlayFormsheetWindow *formSheetWindow = [[TGOverlayFormsheetWindow alloc] initWithParentController:self contentController:navigationController];
[formSheetWindow showAnimated:true];
__weak TGNavigationController *weakNavController = navigationController;
__weak TGOverlayFormsheetWindow *weakFormSheetWindow = formSheetWindow;
void (^dismiss)(void) = ^
{
__strong TGOverlayFormsheetWindow *strongFormSheetWindow = weakFormSheetWindow;
if (strongFormSheetWindow == nil)
return;
__strong TGNavigationController *strongNavController = weakNavController;
if (strongNavController != nil)
{
if (strongNavController.presentingViewController != nil)
[strongNavController.presentingViewController dismissViewControllerAnimated:true completion:nil];
else
[strongFormSheetWindow dismissAnimated:true];
}
};
controller.dismiss = dismiss;
}
2014-07-10 16:11:09 +02:00
}
else
{
2015-10-01 18:19:52 +02:00
TGMediaFoldersController *mediaFoldersController = [[TGMediaFoldersController alloc] initWithIntent:TGModernMediaPickerControllerSetProfilePhotoIntent];
TGModernMediaPickerController *mediaPickerController = [[TGModernMediaPickerController alloc] initWithAssetsGroup:nil intent:TGModernMediaPickerControllerSetProfilePhotoIntent];
navigationController = [TGNavigationController navigationControllerWithControllers:@[ mediaFoldersController, mediaPickerController ]];
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
void (^dismiss)(void) = ^
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf dismissViewControllerAnimated:true completion:nil];
};
mediaFoldersController.dismiss = dismiss;
mediaPickerController.dismiss = dismiss;
[self presentViewController:navigationController animated:true completion:nil];
}
else
{
navigationController.presentationStyle = TGNavigationControllerPresentationStyleInFormSheet;
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
TGOverlayFormsheetWindow *formSheetWindow = [[TGOverlayFormsheetWindow alloc] initWithParentController:self contentController:navigationController];
[formSheetWindow showAnimated:true];
__weak TGNavigationController *weakNavController = navigationController;
__weak TGOverlayFormsheetWindow *weakFormSheetWindow = formSheetWindow;
void (^dismiss)(void) = ^
{
__strong TGOverlayFormsheetWindow *strongFormSheetWindow = weakFormSheetWindow;
if (strongFormSheetWindow == nil)
return;
__strong TGNavigationController *strongNavController = weakNavController;
if (strongNavController != nil)
{
if (strongNavController.presentingViewController != nil)
[strongNavController.presentingViewController dismissViewControllerAnimated:true completion:nil];
else
[strongFormSheetWindow dismissAnimated:true];
}
};
mediaFoldersController.dismiss = dismiss;
mediaPickerController.dismiss = dismiss;
}
__weak TGMediaFoldersController *weakMediaFoldersController = mediaFoldersController;
void(^avatarCreated)(UIImage *) = ^(UIImage *image)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf == nil)
return;
[strongSelf _updateProfileImage:image];
__strong TGMediaFoldersController *strongMediaFoldersController = weakMediaFoldersController;
if (strongMediaFoldersController != nil && strongMediaFoldersController.dismiss != nil)
strongMediaFoldersController.dismiss();
};
mediaFoldersController.avatarCreated = avatarCreated;
mediaPickerController.avatarCreated = avatarCreated;
2014-07-10 16:11:09 +02:00
}
}
- (void)imagePickerController:(TGImagePickerController *)__unused imagePicker didFinishPickingWithAssets:(NSArray *)assets
{
UIImage *image = nil;
if (assets.count != 0)
{
if ([assets[0] isKindOfClass:[UIImage class]])
image = assets[0];
}
[self _updateProfileImage:image];
[self dismissViewControllerAnimated:true completion:nil];
}
- (void)legacyCameraControllerCompletedWithNoResult
{
[self dismissViewControllerAnimated:true completion:nil];
}
- (void)_updateProfileImage:(UIImage *)image
{
2015-10-01 18:19:52 +02:00
if (image == nil)
return;
if (MIN(image.size.width, image.size.height) < 160.0f)
image = TGScaleImageToPixelSize(image, CGSizeMake(160, 160));
NSData *imageData = UIImageJPEGRepresentation(image, 0.6f);
if (imageData == nil)
return;
[(UIView *)[_profileDataItem visibleAvatarView] setHidden:false];
TGImageProcessor filter = [TGRemoteImageView imageProcessorForName:@"circle:64x64"];
UIImage *avatarImage = filter(image);
[_profileDataItem setUpdatingAvatar:avatarImage hasUpdatingAvatar:true];
[_setProfilePhotoItem setEnabled:false];
NSMutableDictionary *options = [[NSMutableDictionary alloc] init];
uint8_t fileId[32];
arc4random_buf(&fileId, 32);
NSMutableString *filePath = [[NSMutableString alloc] init];
for (int i = 0; i < 32; i++)
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
[filePath appendFormat:@"%02x", fileId[i]];
2014-07-10 16:11:09 +02:00
}
2015-10-01 18:19:52 +02:00
NSString *tmpImagesPath = [[TGAppDelegate documentsPath] stringByAppendingPathComponent:@"upload"];
static NSFileManager *fileManager = nil;
if (fileManager == nil)
fileManager = [[NSFileManager alloc] init];
NSError *error = nil;
[fileManager createDirectoryAtPath:tmpImagesPath withIntermediateDirectories:true attributes:nil error:&error];
NSString *absoluteFilePath = [tmpImagesPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.bin", filePath]];
[imageData writeToFile:absoluteFilePath atomically:false];
[options setObject:filePath forKey:@"originalFileUrl"];
[options setObject:avatarImage forKey:@"currentPhoto"];
[ActionStageInstance() dispatchOnStageQueue:^
{
NSString *action = [[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")/uploadPhoto/(%@)", _uid, filePath];
[ActionStageInstance() requestActor:action options:options watcher:self];
[ActionStageInstance() requestActor:action options:options watcher:TGTelegraphInstance];
}];
2014-07-10 16:11:09 +02:00
}
- (void)_commitCancelAvatarUpdate
{
[_profileDataItem setUpdatingAvatar:nil hasUpdatingAvatar:false];
[_setProfilePhotoItem setEnabled:true];
[ActionStageInstance() dispatchOnStageQueue:^
{
NSArray *deleteActions = [ActionStageInstance() rejoinActionsWithGenericPathNow:@"/tg/timeline/@/deleteAvatar/@" prefix:[[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")", _uid] watcher:self];
NSArray *uploadActions = [ActionStageInstance() rejoinActionsWithGenericPathNow:@"/tg/timeline/@/uploadPhoto/@" prefix:[[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")", _uid] watcher:self];
for (NSString *action in deleteActions)
{
[ActionStageInstance() removeAllWatchersFromPath:action];
}
for (NSString *action in uploadActions)
{
[ActionStageInstance() removeAllWatchersFromPath:action];
}
}];
}
- (void)_commitDeleteAvatar
{
[_profileDataItem setUpdatingAvatar:nil hasUpdatingAvatar:true];
[_setProfilePhotoItem setEnabled:false];
static int actionId = 0;
NSDictionary *options = [[NSDictionary alloc] initWithObjectsAndKeys:[[NSNumber alloc] initWithInt:_uid], @"uid", nil];
NSString *action = [[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")/deleteAvatar/(%d)", _uid, actionId++];
[ActionStageInstance() requestActor:action options:options watcher:self];
[ActionStageInstance() requestActor:action options:options watcher:TGTelegraphInstance];
}
- (void)setEditing:(BOOL)editing animated:(BOOL)__unused animated
{
_editing = editing;
if (_editing)
{
[self setLeftBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Cancel") style:UIBarButtonItemStylePlain target:self action:@selector(cancelButtonPressed)] animated:true];
_accountEditingBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Done") style:UIBarButtonItemStyleDone target:self action:@selector(editButtonPressed)];
[self setRightBarButtonItem:_accountEditingBarButtonItem animated:true];
}
else
{
[self setLeftBarButtonItem:nil animated:true];
[self setRightBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Edit") style:UIBarButtonItemStylePlain target:self action:@selector(editButtonPressed)] animated:true];
_accountEditingBarButtonItem = nil;
}
[self.menuSections beginRecordingChanges];
TGButtonCollectionItem *logoutItem = nil;
if (_editing)
{
logoutItem = [[TGButtonCollectionItem alloc] initWithTitle:TGLocalized(@"Settings.Logout") action:@selector(logoutPressed)];
logoutItem.alignment = NSTextAlignmentCenter;
logoutItem.titleColor = TGDestructiveAccentColor();
logoutItem.deselectAutomatically = true;
NSMutableArray *logoutSectionItems = [[NSMutableArray alloc] init];
[logoutSectionItems addObject:logoutItem];
#ifdef INTERNAL_RELEASE
[logoutSectionItems addObject:[[TGButtonCollectionItem alloc] initWithTitle:@"Debug Settings" action:@selector(mySettingsPressed)]];
#endif
TGCollectionMenuSection *logoutSection = [[TGCollectionMenuSection alloc] initWithItems:logoutSectionItems];
[self.menuSections addSection:logoutSection];
}
else
{
[self.menuSections deleteSection:self.menuSections.sections.count - 1];
}
[_profileDataItem setEditing:_editing animated:true];
_profileDataItem.additinalHeight = _editing ? 30.0f : 0.0f;
if (![self.menuSections commitRecordedChanges:self.collectionView])
[self _resetCollectionView];
if (_editing && self.collectionView.contentOffset.y + self.collectionView.contentInset.top + (self.collectionView.frame.size.height - self.collectionView.contentInset.top - self.collectionView.contentInset.bottom) - (self.collectionView.contentSize.height) > -30.0f)
{
NSIndexPath *indexPath = [self indexPathForItem:logoutItem];
if (indexPath != nil)
{
//[self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionTop animated:true];
//[self.collectionView scrollRectToVisible:CGRectMake(0.0f, self.collectionView.contentSize.height - 1.0f, 1.0f, 1.0f) animated:true];
}
}
}
- (void)notificationsAndSoundsPressed
{
[self.navigationController pushViewController:[[TGNotificationSettingsController alloc] init] animated:true];
}
2015-10-01 18:19:52 +02:00
- (void)privacySettingsPressed
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
[self.navigationController pushViewController:[[TGPrivacySettingsController alloc] init] animated:true];
2014-07-10 16:11:09 +02:00
}
- (void)chatSettingsPressed
{
[self.navigationController pushViewController:[[TGChatSettingsController alloc] init] animated:true];
}
- (void)wallpapersPressed
{
[self.navigationController pushViewController:[[TGWallpaperListController alloc] init] animated:true];
}
- (void)mySettingsPressed
{
[self.navigationController pushViewController:[[TGSettingsController alloc] init] animated:true];
}
- (void)supportPressed
{
[[[TGAlertView alloc] initWithTitle:nil message:TGLocalized(@"Settings.FAQ_Intro") cancelButtonTitle:TGLocalized(@"Settings.FAQ_Button") otherButtonTitles:@[TGLocalized(@"Common.OK")] completionBlock:^(bool okButtonPressed)
{
if (okButtonPressed)
{
2015-10-01 18:19:52 +02:00
//NSData *data = [TGDatabaseInstance() customProperty:@"supportAccountUid"];
//if (data.length != 4)
2014-07-10 16:11:09 +02:00
{
_progressWindow = [[TGProgressWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
[_progressWindow show:true];
[ActionStageInstance() requestActor:@"/tg/support/preferredPeer" options:nil flags:0 watcher:self];
}
2015-10-01 18:19:52 +02:00
/*else
2014-07-10 16:11:09 +02:00
{
int32_t uid = 0;
[data getBytes:&uid];
[[TGInterfaceManager instance] navigateToConversationWithId:uid conversation:nil performActions:nil atMessage:nil clearStack:true openKeyboard:true animated:true];
2015-10-01 18:19:52 +02:00
}*/
2014-07-10 16:11:09 +02:00
}
else
{
[self faqPressed];
}
}] show];
}
- (void)faqPressed
{
2015-10-01 18:19:52 +02:00
//[self.navigationController pushViewController:[[TGFaqController alloc] init] animated:true];
2014-07-10 16:11:09 +02:00
NSString *faqUrl = TGLocalized(@"Settings.FAQ_URL");
if (faqUrl.length == 0)
faqUrl = @"http://telegram.org/faq#general";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:faqUrl]];
}
- (void)logoutPressed
{
2015-10-01 18:19:52 +02:00
__weak TGAccountSettingsController *weakSelf = self;
/*[[[TGActionSheet alloc] initWithTitle:nil actions:@[
2014-07-10 16:11:09 +02:00
[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Settings.Logout") action:@"logout" type:TGActionSheetActionTypeDestructive],
[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Common.Cancel") action:@"cancel" type:TGActionSheetActionTypeCancel],
2015-10-01 18:19:52 +02:00
] actionBlock:^(__unused TGAccountSettingsController *target, NSString *action)
2014-07-10 16:11:09 +02:00
{
if ([action isEqualToString:@"logout"])
2015-10-01 18:19:52 +02:00
{*/
[[[TGAlertView alloc] initWithTitle:TGLocalized(@"Settings.LogoutConfirmationTitle") message:TGLocalized(@"Settings.LogoutConfirmationText") cancelButtonTitle:TGLocalized(@"Common.Cancel") okButtonTitle:TGLocalized(@"Common.OK") completionBlock:^(bool okButtonPressed)
{
if (okButtonPressed)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf != nil)
{
strongSelf.progressWindow = [[TGProgressWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[strongSelf.progressWindow show:true];
static int actionId = 0;
[ActionStageInstance() requestActor:[NSString stringWithFormat:@"/tg/auth/logout/(%d)", actionId++] options:nil watcher:strongSelf];
}
}
}] show];
/*}
} target:self] showInView:self.tabBarController.view];*/
2014-07-10 16:11:09 +02:00
}
#pragma mark -
2015-10-01 18:19:52 +02:00
- (void)wallpaperController:(TGWallpaperController *)wallpaperController didSelectWallpaperWithInfo:(TGWallpaperInfo *)wallpaperInfo
2014-07-10 16:11:09 +02:00
{
[[TGWallpaperManager instance] setCurrentWallpaperWithInfo:wallpaperInfo];
[_wallpapersItem setCurrentWallpaperInfo:wallpaperInfo];
2015-10-01 18:19:52 +02:00
[wallpaperController.presentingViewController dismissViewControllerAnimated:true completion:nil];
2014-07-10 16:11:09 +02:00
}
#pragma mark -
- (void)actionStageResourceDispatched:(NSString *)path resource:(id)resource arguments:(id)__unused arguments
{
if ([path isEqualToString:@"/tg/service/synchronizationstate"])
{
[self actorCompleted:ASStatusSuccess path:path result:resource];
}
else if ([path isEqualToString:@"/tg/userdatachanges"] || [path isEqualToString:@"/tg/userpresencechanges"])
{
NSArray *users = ((SGraphObjectNode *)resource).object;
for (TGUser *user in users)
{
if (user.uid == _uid)
{
TGDispatchOnMainThread(^
{
[_profileDataItem setUser:user animated:true];
2015-10-01 18:19:52 +02:00
[_usernameItem setVariant:user.userName.length == 0 ? TGLocalized(@"Settings.UsernameEmpty") : [[NSString alloc] initWithFormat:@"@%@", user.userName]];
[_phoneNumberItem setVariant:user.phoneNumber.length == 0 ? @"" : [TGPhoneUtils formatPhone:user.phoneNumber forceInternational:true]];
2014-07-10 16:11:09 +02:00
});
break;
}
}
}
}
- (void)actorCompleted:(int)status path:(NSString *)path result:(id)result
{
if ([path isEqualToString:@"/tg/service/synchronizationstate"])
{
if (status == ASStatusSuccess)
{
int state = [((SGraphObjectNode *)result).object intValue];
dispatch_async(dispatch_get_main_queue(), ^
{
int synchronizationState = 0;
if (state & 2)
synchronizationState = 1;
else if (state & 1)
synchronizationState = 2;
else
synchronizationState = 0;
[_profileDataItem setSynchronizationStatus:synchronizationState];
});
}
}
else if ([path hasPrefix:@"/tg/auth/logout/"])
{
dispatch_async(dispatch_get_main_queue(), ^
{
[_progressWindow dismiss:true];
_progressWindow = nil;
if (status != ASStatusSuccess)
{
2015-10-01 18:19:52 +02:00
[[[TGAlertView alloc] initWithTitle:nil message:TGLocalized(@"Settings.LogoutError") delegate:nil cancelButtonTitle:TGLocalized(@"Common.OK") otherButtonTitles:nil] show];
2014-07-10 16:11:09 +02:00
}
});
}
else if ([path hasPrefix:@"/tg/changeUserName/"])
{
dispatch_async(dispatch_get_main_queue(), ^
{
[_profileDataItem setUpdatingFirstName:nil updatingLastName:nil];
[_profileDataItem setUser:[TGDatabaseInstance() loadUser:_uid] animated:false];
});
}
else if ([path hasPrefix:[[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")/uploadPhoto", _uid]] || [path hasPrefix:[[NSString alloc] initWithFormat:@"/tg/timeline/(%" PRId32 ")/deleteAvatar/", _uid]])
{
TGUser *user = [TGDatabaseInstance() loadUser:_uid];
TGDispatchOnMainThread(^
{
[_setProfilePhotoItem setEnabled:true];
if (status == ASStatusSuccess)
{
[_profileDataItem copyUpdatingAvatarToCacheWithUri:user.photoUrlSmall];
[_profileDataItem setUpdatingAvatar:nil hasUpdatingAvatar:false];
[_profileDataItem setUser:user animated:false];
}
else
{
[_profileDataItem setUpdatingAvatar:nil hasUpdatingAvatar:false];
2015-10-01 18:19:52 +02:00
TGAlertView *alertView = [[TGAlertView alloc] initWithTitle:nil message:TGLocalized(@"Profile.ImageUploadError") delegate:nil cancelButtonTitle:TGLocalized(@"Common.OK") otherButtonTitles:nil];
2014-07-10 16:11:09 +02:00
[alertView show];
}
});
}
else if ([path isEqualToString:@"/tg/support/preferredPeer"])
{
TGUser *user = status == ASStatusSuccess ? [TGDatabaseInstance() loadUser:[result[@"uid"] intValue]] : nil;
TGDispatchOnMainThread(^
{
[_progressWindow dismiss:true];
if (user != nil)
{
[[TGInterfaceManager instance] navigateToConversationWithId:user.uid conversation:nil performActions:nil atMessage:nil clearStack:true openKeyboard:true animated:true];
}
});
}
}
- (void)actionStageActionRequested:(NSString *)action options:(id)__unused options
{
if ([action isEqualToString:@"avatarTapped"])
{
TGUser *user = [TGDatabaseInstance() loadUser:_uid];
if ([_profileDataItem hasUpdatingAvatar])
{
TGActionSheet *actionSheet = [[TGActionSheet alloc] initWithTitle:nil actions:@[
[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"GroupInfo.SetGroupPhotoStop") action:@"stop" type:TGActionSheetActionTypeDestructive],
[[TGActionSheetAction alloc] initWithTitle:TGLocalized(@"Common.Cancel") action:@"cancel" type:TGActionSheetActionTypeCancel],
] actionBlock:^(id target, NSString *action)
{
if ([action isEqualToString:@"stop"])
{
[(TGAccountSettingsController *)target _commitCancelAvatarUpdate];
}
} target:self];
[actionSheet showInView:self.view];
}
else if (user.photoUrlSmall.length == 0)
{
if (_setProfilePhotoItem.enabled)
[self setProfilePhotoPressed];
}
else
{
TGRemoteImageView *avatarView = [_profileDataItem visibleAvatarView];
if (user != nil && user.photoUrlBig != nil && avatarView.currentImage != nil)
{
2015-10-01 18:19:52 +02:00
TGModernGalleryController *modernGallery = [[TGModernGalleryController alloc] init];
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
TGProfileUserAvatarGalleryModel *model = [[TGProfileUserAvatarGalleryModel alloc] initWithCurrentAvatarLegacyThumbnailImageUri:user.photoUrlSmall currentAvatarLegacyImageUri:user.photoUrlBig currentAvatarImageSize:CGSizeMake(640.0f, 640.0f)];
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
__weak TGAccountSettingsController *weakSelf = self;
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
model.deleteCurrentAvatar = ^
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
[strongSelf _commitDeleteAvatar];
};
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
modernGallery.model = model;
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
modernGallery.itemFocused = ^(id<TGModernGalleryItem> item)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf != nil)
{
if ([item isKindOfClass:[TGUserAvatarGalleryItem class]])
{
if (((TGUserAvatarGalleryItem *)item).isCurrent)
{
((UIView *)strongSelf->_profileDataItem.visibleAvatarView).hidden = true;
}
else
((UIView *)strongSelf->_profileDataItem.visibleAvatarView).hidden = false;
}
}
};
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
modernGallery.beginTransitionIn = ^UIView *(id<TGModernGalleryItem> item, __unused TGModernGalleryItemView *itemView)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf != nil)
{
if ([item isKindOfClass:[TGUserAvatarGalleryItem class]])
{
if (((TGUserAvatarGalleryItem *)item).isCurrent)
{
return strongSelf->_profileDataItem.visibleAvatarView;
}
}
}
return nil;
};
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
modernGallery.beginTransitionOut = ^UIView *(id<TGModernGalleryItem> item)
{
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf != nil)
{
if ([item isKindOfClass:[TGUserAvatarGalleryItem class]])
{
if (((TGUserAvatarGalleryItem *)item).isCurrent)
{
return strongSelf->_profileDataItem.visibleAvatarView;
}
}
}
return nil;
};
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
modernGallery.completedTransitionOut = ^
2014-07-10 16:11:09 +02:00
{
2015-10-01 18:19:52 +02:00
__strong TGAccountSettingsController *strongSelf = weakSelf;
if (strongSelf != nil)
{
((UIView *)strongSelf->_profileDataItem.visibleAvatarView).hidden = false;
}
};
2014-07-10 16:11:09 +02:00
2015-10-01 18:19:52 +02:00
TGOverlayControllerWindow *controllerWindow = [[TGOverlayControllerWindow alloc] initWithParentController:self contentController:modernGallery];
controllerWindow.hidden = false;
2014-07-10 16:11:09 +02:00
}
}
}
else if ([action isEqualToString:@"deleteAvatar"])
{
[self _commitDeleteAvatar];
}
else if ([action isEqualToString:@"wallpaperImagePressed"])
{
if (options[@"wallpaperInfo"] != nil)
{
TGWallpaperController *wallpaperController = [[TGWallpaperController alloc] initWithWallpaperInfo:options[@"wallpaperInfo"] thumbnailImage:nil];
wallpaperController.delegate = self;
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
wallpaperController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:wallpaperController animated:true completion:nil];
}
}
else if ([action isEqualToString:@"editingNameChanged"])
{
_accountEditingBarButtonItem.enabled = [_profileDataItem editingFirstName].length != 0;
}
else if ([action isEqualToString:@"switchItemChanged"])
{
if (options[@"item"] == _autosavePhotosItem)
{
TGAppDelegateInstance.autosavePhotos = [options[@"value"] boolValue];
[TGAppDelegateInstance saveSettings];
}
}
}
2015-10-01 18:19:52 +02:00
- (void)phoneNumberPressed
{
TGChangePhoneNumberHelpController *phoneNumberController = [[TGChangePhoneNumberHelpController alloc] init];
TGNavigationController *navigationController = [TGNavigationController navigationControllerWithControllers:@[phoneNumberController]];
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
navigationController.restrictLandscape = true;
else
{
navigationController.presentationStyle = TGNavigationControllerPresentationStyleInFormSheet;
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
}
[self presentViewController:navigationController animated:true completion:nil];
}
- (void)usernamePressed
{
TGUsernameController *usernameController = [[TGUsernameController alloc] init];
TGNavigationController *navigationController = [TGNavigationController navigationControllerWithControllers:@[usernameController]];
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
navigationController.restrictLandscape = false;
else
{
navigationController.presentationStyle = TGNavigationControllerPresentationStyleInFormSheet;
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
}
[self presentViewController:navigationController animated:true completion:nil];
}
2014-07-10 16:11:09 +02:00
- (void)localizationUpdated
{
[self setTitleText:TGLocalized(@"Settings.Title")];
if (_editing)
{
[self setLeftBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Cancel") style:UIBarButtonItemStylePlain target:self action:@selector(cancelButtonPressed)] animated:true];
_accountEditingBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Done") style:UIBarButtonItemStyleDone target:self action:@selector(editButtonPressed)];
[self setRightBarButtonItem:_accountEditingBarButtonItem animated:false];
}
else
{
[self setRightBarButtonItem:[[UIBarButtonItem alloc] initWithTitle:TGLocalized(@"Common.Edit") style:UIBarButtonItemStylePlain target:self action:@selector(editButtonPressed)] animated:false];
_accountEditingBarButtonItem = nil;
}
_notificationsItem.title = TGLocalized(@"Settings.NotificationsAndSounds");
2015-10-01 18:19:52 +02:00
_privacySettingsItem.title = TGLocalized(@"Settings.PrivacySettings");
2014-07-10 16:11:09 +02:00
_chatSettingsItem.title = TGLocalized(@"Settings.ChatSettings");
_setProfilePhotoItem.title = TGLocalized(@"Settings.SetProfilePhoto");
_autosavePhotosItem.title = TGLocalized(@"Settings.SaveIncomingPhotos");
_wallpapersItem.title = TGLocalized(@"Settings.ChatBackground");
2015-10-01 18:19:52 +02:00
_usernameItem.title = TGLocalized(@"Settings.Username");
_phoneNumberItem.title = TGLocalized(@"Settings.PhoneNumber");
2014-07-10 16:11:09 +02:00
_supportItem.title = TGLocalized(@"Settings.Support");
[_profileDataItem localizationUpdated];
}
@end