1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
package gui
import (
"fmt"
"log"
"github.com/twstrike/gotk3adapter/gtki"
"github.com/twstrike/coyim/i18n"
)
func authorizePresenceSubscriptionDialog(parent gtki.Window, from string) gtki.MessageDialog {
builder := newBuilder("AuthorizeSubscription")
confirmDialog := builder.getObj("dialog").(gtki.MessageDialog)
text := fmt.Sprintf(i18n.Local("%s wants to talk to you. Is that ok?"), from)
confirmDialog.SetProperty("text", text)
confirmDialog.SetTransientFor(parent)
return confirmDialog
}
type addContactDialog struct {
builder *builder
dialog gtki.Window
model gtki.ListStore
accountInput gtki.ComboBox
contactInput gtki.Entry
notificationArea gtki.Box
notification gtki.InfoBar
subscriptionAskMessage gtki.TextBuffer
nickname gtki.Entry
autoAuth gtki.CheckButton
}
func (acd *addContactDialog) getVerifiedContact() (string, bool) {
contact, _ := acd.contactInput.GetText()
isJid, errmsg := verifyXmppAddress(contact)
if !isJid {
if acd.notification != nil {
acd.notificationArea.Remove(acd.notification)
}
acd.notification = buildBadUsernameNotification(errmsg)
acd.notificationArea.Add(acd.notification)
acd.notification.ShowAll()
log.Printf(errmsg)
return "", false
}
return contact, true
}
func (acd *addContactDialog) getCurrentAccount() (string, error) {
iter, err := acd.accountInput.GetActiveIter()
if err != nil {
return "", err
}
val, err := acd.model.GetValue(iter, 1)
if err != nil {
return "", err
}
return val.GetString()
}
func (acd *addContactDialog) getCurrentMessage() string {
return acd.subscriptionAskMessage.GetText(
acd.subscriptionAskMessage.GetStartIter(),
acd.subscriptionAskMessage.GetEndIter(),
false,
)
}
func (acd *addContactDialog) getCurrentNickname() string {
txt, _ := acd.nickname.GetText()
return txt
}
func (acd *addContactDialog) getAutoAuthorize() bool {
return acd.autoAuth.GetActive()
}
func (acd *addContactDialog) initAccounts(accounts []*account) {
for _, acc := range accounts {
iter := acd.model.Append()
acd.model.SetValue(iter, 0, acc.session.GetConfig().Account)
acd.model.SetValue(iter, 1, acc.session.GetConfig().ID())
}
if len(accounts) > 0 {
acd.accountInput.SetActive(0)
}
}
func (acd *addContactDialog) init() {
acd.builder = newBuilder("AddContact")
acd.builder.getItems(
"AddContact", &acd.dialog,
"accounts-model", &acd.model,
"accounts", &acd.accountInput,
"notification-area", &acd.notificationArea,
"address", &acd.contactInput,
"subscriptionAskMessage", &acd.subscriptionAskMessage,
"nickname", &acd.nickname,
"auto_authorize_checkbutton", &acd.autoAuth,
)
}
func presenceSubscriptionDialog(accounts []*account, sendSubscription func(accountID, peer, msg, nick string, autoauth bool) error) gtki.Window {
acd := &addContactDialog{}
acd.init()
acd.initAccounts(accounts)
acd.builder.ConnectSignals(map[string]interface{}{
"on_close_signal": func() {
acd.dialog.Destroy()
},
"on_save_signal": func() {
contact, ok := acd.getVerifiedContact()
if !ok {
return
}
accountID, err := acd.getCurrentAccount()
if err != nil {
log.Printf("Error encountered when getting account: %v", err)
return
}
err = sendSubscription(accountID, contact, acd.getCurrentMessage(), acd.getCurrentNickname(), acd.getAutoAuthorize())
if err != nil {
log.Printf("Error encountered when sending subscription: %v", err)
return
}
acd.dialog.Destroy()
},
})
return acd.dialog
}
|