//
//  NCLoginWeb+Menu.swift
//  Nextcloud
//
//  Created by Marino Faggiana on 03/03/2021.
//  Copyright © 2021 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 UIKit
import FloatingPanel

extension NCLoginWeb {

    func toggleMenu() {
        
        var actions = [NCMenuAction]()
        
        let accounts = NCManageDatabase.shared.getAllAccount()
        var avatar = NCUtility.shared.loadImage(named: "person.crop.circle")
        
        for account in accounts {
            
            let title = account.user + " " + (URL(string: account.urlBase)?.host ?? "")

            avatar = NCUtility.shared.loadUserImage(
                for: account.user,
                   displayName: account.displayName,
                   userBaseUrl: account)

            actions.append(
                NCMenuAction(
                    title: title,
                    icon: avatar,
                    onTitle: title,
                    onIcon: avatar,
                    selected: account.active == true,
                    on: account.active == true,
                    action: { menuAction in
                        if self.appDelegate.account != account.account {
                            NCManageDatabase.shared.setAccountActive(account.account)
                            self.dismiss(animated: true) {
                                self.appDelegate.settingAccount(account.account, urlBase: account.urlBase, user: account.user, userId: account.userId, password: CCUtility.getPassword(account.account))
                                NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
                            }
                        }
                    }
                )
            )
        }

        actions.append(
            NCMenuAction(
                title: NSLocalizedString("_delete_active_account_", comment: ""),
                icon: NCUtility.shared.loadImage(named: "trash", color: NCBrandColor.shared.gray),
                onTitle: NSLocalizedString("_delete_active_account_", comment: ""),
                onIcon: avatar,
                selected: false,
                on: false,
                action: { menuAction in
                    self.appDelegate.deleteAccount(self.appDelegate.account, wipe: false)
                    self.dismiss(animated: true) {
                        let accounts = NCManageDatabase.shared.getAllAccount()
                        if accounts.count > 0 {
                            self.appDelegate.changeAccount(accounts.first!.account)
                        } else {
                            self.appDelegate.openLogin(viewController: nil, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
                        }
                    }
                }
            )
        )

        presentMenu(with: actions)
    }
}