123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- //
- // HCEditProfile.swift
- // Nextcloud iOS
- //
- // Created by Marino Faggiana on 17/04/19.
- // Copyright (c) 2019 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import Foundation
- class HCEditProfile: XLFormViewController {
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- var tableAccount: tableAccount?
- required init(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- }
-
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
- }
-
- func initializeForm() {
-
- let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
- form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
-
- var section : XLFormSectionDescriptor
- var row : XLFormRowDescriptor
- tableAccount = NCManageDatabase.sharedInstance.getAccountActive()
-
- section = XLFormSectionDescriptor.formSection()
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "userfullname", rowType: XLFormRowDescriptorTypeText, title: NSLocalizedString("_user_full_name_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "user"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.displayName
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
- row = XLFormRowDescriptor(tag: "useraddress", rowType: XLFormRowDescriptorTypeText, title: NSLocalizedString("_user_address_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "address"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.address
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "usercity", rowType: XLFormRowDescriptorTypeText, title: NSLocalizedString("_user_city_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "city"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.city
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "userzip", rowType: XLFormRowDescriptorTypeZipCode, title: NSLocalizedString("_user_zip_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "cityzip"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.zip
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "usercountry", rowType: XLFormRowDescriptorTypeSelectorPickerView, title: NSLocalizedString("_user_country_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["detailTextLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "country"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- var locales = [String]()
- for localeCode in NSLocale.isoCountryCodes {
- let countryName = (Locale.current as NSLocale).displayName(forKey: .countryCode, value: localeCode) ?? ""
- if localeCode == tableAccount?.country {
- row.value = countryName
- }
- locales.append(countryName)
- }
- row.selectorOptions = locales.sorted()
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "userphone", rowType: XLFormRowDescriptorTypePhone, title: NSLocalizedString("_user_phone_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "phone"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.phone
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "useremail", rowType: XLFormRowDescriptorTypeEmail, title: NSLocalizedString("_user_email_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "email"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.email
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "userweb", rowType: XLFormRowDescriptorTypeEmail, title: NSLocalizedString("_user_web_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "web"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.webpage
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "usertwitter", rowType: XLFormRowDescriptorTypeTwitter, title: NSLocalizedString("_user_twitter_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "twitter"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.twitter
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "userbusinesstype", rowType: XLFormRowDescriptorTypeMultipleSelector, title: NSLocalizedString("_user_businesstype_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["detailTextLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "businesstype"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.selectorOptions = ["ARCHITECT", "BRICKLAYER", "CARPENTER", "ELECTRICIAN", "INSTALLER", "PAINTER", "PLUMBER", "ROOFER", "STOVEBUILDER","STUCCOER", "WINDOWBUILDER", "OTHER"]
- row.value = tableAccount?.businessType.components(separatedBy: ",")
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "userbusinesssize", rowType: XLFormRowDescriptorTypeSelectorPickerView, title: NSLocalizedString("_user_businesssize_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["detailTextLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "users"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.selectorOptions = ["1-4", "5-9", "10-19", "20-49", "50-99", "100-249", "250-499", "500-999", "1000+"];
- switch tableAccount?.businessSize {
- case 1: row.value = "1-4"
- case 5: row.value = "5-9"
- case 10: row.value = "10-19"
- case 20: row.value = "20-49"
- case 50: row.value = "50-99"
- case 100: row.value = "100-249"
- case 250: row.value = "250-499"
- case 500: row.value = "500-999"
- case 1000: row.value = "1000+"
- default: row.value = ""
- }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "userrole", rowType: XLFormRowDescriptorTypeSelectorPickerView, title: NSLocalizedString("_user_role_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["detailTextLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "role"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.selectorOptions = [NSLocalizedString("_user_owner_", comment: ""),NSLocalizedString("_user_employee_", comment: ""),NSLocalizedString("_user_contractor_", comment: "")];
- if tableAccount?.role == "owner" { row.value = NSLocalizedString("_user_owner_", comment: "") }
- else if tableAccount?.role == "employee" { row.value = NSLocalizedString("_user_employee_", comment: "") }
- else if tableAccount?.role == "contractor" { row.value = NSLocalizedString("_user_contractor_", comment: "") }
- else { row.value = "" }
- section.addFormRow(row)
-
- row = XLFormRowDescriptor(tag: "usercompany", rowType: XLFormRowDescriptorTypeText, title: NSLocalizedString("_user_company_", comment: ""))
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["imageView.image"] = CCGraphics.changeThemingColorImage(UIImage.init(named: "company"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
- row.value = tableAccount?.company
- if row.value == nil { row.value = "" }
- section.addFormRow(row)
-
- self.form = form
- }
-
- override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
- super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
- }
-
- // MARK: - View Life Cycle
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
- self.navigationItem.title = NSLocalizedString("_user_editprofile_", comment: "")
- self.navigationController?.navigationBar.isTranslucent = false
- self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
- self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
- self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
-
- self.navigationController?.interactivePopGestureRecognizer?.isEnabled = false
-
- self.navigationItem.setHidesBackButton(true, animated: false)
- self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
- self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(cancel))
-
- self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
-
- initializeForm()
- }
- @objc func cancel() {
- self.navigationController?.popViewController(animated: true)
- self.navigationController?.interactivePopGestureRecognizer?.isEnabled = true
- }
-
- @objc func save() {
-
- NCUtility.sharedInstance.startActivityIndicator(view: self.view, bottom: 0)
-
- tableAccount?.displayName = self.form.formRow(withTag: "userfullname")!.value as! String
- tableAccount?.address = self.form.formRow(withTag: "useraddress")!.value as! String
- tableAccount?.city = self.form.formRow(withTag: "usercity")!.value as! String
- tableAccount?.zip = self.form.formRow(withTag: "userzip")!.value as! String
-
- let countryNameRow = self.form.formRow(withTag: "usercountry")!.value as? String
- for localeCode in NSLocale.isoCountryCodes {
- let countryName = (Locale.current as NSLocale).displayName(forKey: .countryCode, value: localeCode) ?? ""
- if countryNameRow == countryName {
- tableAccount?.country = localeCode
- break
- }
- }
-
- tableAccount?.phone = self.form.formRow(withTag: "userphone")!.value as! String
- tableAccount?.email = self.form.formRow(withTag: "useremail")!.value as! String
- tableAccount?.webpage = self.form.formRow(withTag: "userweb")!.value as! String
- tableAccount?.twitter = self.form.formRow(withTag: "usertwitter")!.value as! String
- tableAccount?.company = self.form.formRow(withTag: "usercompany")!.value as! String
-
- let businesssizeRow = self.form.formRow(withTag: "userbusinesssize")!.value as! String
- switch businesssizeRow {
- case "1-4": tableAccount?.businessSize = 1
- case "5-9": tableAccount?.businessSize = 5
- case "10-19": tableAccount?.businessSize = 10
- case "20-49": tableAccount?.businessSize = 20
- case "50-99": tableAccount?.businessSize = 50
- case "100-249": tableAccount?.businessSize = 100
- case "250-499": tableAccount?.businessSize = 250
- case "500-999": tableAccount?.businessSize = 500
- case "1000+": tableAccount?.businessSize = 1000
- default: break
- }
-
- let roleRow = self.form.formRow(withTag: "userrole")!.value as! String
- switch roleRow {
- case NSLocalizedString("_user_owner_", comment: ""): tableAccount?.role = "owner"
- case NSLocalizedString("_user_employee_", comment: ""): tableAccount?.role = "employee"
- case NSLocalizedString("_user_contractor_", comment: ""): tableAccount?.role = "contractor"
- default: break
- }
-
- let businesstypeArray = self.form.formRow(withTag: "userbusinesstype")!.value
- tableAccount?.businessType = (businesstypeArray as! [String]).joined(separator: ",")
-
- OCNetworking.sharedManager()?.putHCUserProfile(withAccount: appDelegate.activeAccount, serverUrl: appDelegate.activeUrl, address: tableAccount?.address, businesssize: String(describing: tableAccount?.businessSize), businesstype: tableAccount?.businessType, city: tableAccount?.city, company: tableAccount?.company, country: tableAccount?.country, displayname: tableAccount?.displayName, email: tableAccount?.email, phone: tableAccount?.phone, role_: tableAccount?.role, twitter: tableAccount?.twitter, website: tableAccount?.webpage, zip: tableAccount?.zip, completion: { (account, message, errorCode) in
- if errorCode == 0 && account == self.appDelegate.activeAccount {
- _ = NCManageDatabase.sharedInstance.updateAccount(self.tableAccount!)
- self.navigationController?.popViewController(animated: true)
- self.navigationController?.interactivePopGestureRecognizer?.isEnabled = true
- } else if errorCode != 0 {
- self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
- }
- NCUtility.sharedInstance.stopActivityIndicator()
- })
- }
- }
|