本文整理匯總了Golang中duov6/com/term.Write函數的典型用法代碼示例。如果您正苦於以下問題:Golang Write函數的具體用法?Golang Write怎麽用?Golang Write使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了Write函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Login
func (h *AuthHandler) Login(email, password string) (User, string) {
term.Write("Login user email"+email, term.Debug)
term.Write(Config.UserName, term.Debug)
bytes, err := client.Go("ignore", "com.duosoftware.auth", "users").GetOne().ByUniqueKey(email).Ok()
var user User
if err == "" {
if bytes != nil {
var uList User
err := json.Unmarshal(bytes, &uList)
if err == nil {
if uList.Password == common.GetHash(password) && strings.ToLower(uList.EmailAddress) == strings.ToLower(email) {
return uList, ""
} else {
term.Write("password incorrect", term.Error)
}
} else {
if err != nil {
term.Write("Login user Error "+err.Error(), term.Error)
}
}
}
} else {
term.Write("Login user Error "+err, term.Error)
}
return user, "Error Validating user"
}
示例2: GetSession
func GetSession(key, Domain string) (AuthCertificate, string) {
bytes, err := client.Go(key, "s.duosoftware.auth", "sessions").GetOne().ByUniqueKey(key).Ok()
term.Write("GetSession For SecurityToken "+key, term.Debug)
//term.Write("GetSession For SecurityToken "+string(bytes), term.Debug)
var c AuthCertificate
if err == "" {
if bytes != nil {
var uList AuthCertificate
err := json.Unmarshal(bytes, &uList)
if err == nil {
if Domain == "Nil" {
return uList, ""
} else {
if strings.ToLower(uList.Domain) != strings.ToLower(Domain) {
uList.Domain = strings.ToLower(Domain)
uList.SecurityToken = common.GetGUID()
AddSession(uList)
return uList, ""
} else {
return uList, ""
}
}
} else {
term.Write("GetSession Error "+err.Error(), term.Error)
}
}
} else {
term.Write("GetSession Error "+err, term.Error)
}
term.Write("GetSession No Session for SecurityToken "+key, term.Debug)
return c, "Error Session Not Found"
}
示例3: AutherizeApp
func (h *AuthHandler) AutherizeApp(Code, ApplicationID, AppSecret, UserID string) (bool, string) {
bytes, err := client.Go("ignore", "com.duosoftware.auth", "authcode").GetOne().ByUniqueKey(Code).Ok()
term.Write("AutherizeApp For ApplicationID "+ApplicationID+" Code "+Code+" Secret "+AppSecret+" Err "+err, term.Debug)
var uList AuthCode
err1 := json.Unmarshal(bytes, &uList)
term.Write(string(bytes[:]), term.Debug)
if err1 != nil {
var appH applib.Apphanler
application, err := appH.Get(ApplicationID, "ignorelib")
if err == "" {
if application.SecretKey == AppSecret && uList.UserID == UserID && Code == uList.Code {
var appAth AppAutherize
appAth.AppliccatioID = ApplicationID
appAth.AutherizeKey = ApplicationID + "-" + UserID
appAth.Name = application.Name
client.Go("ignore", "com.duosoftware.auth", "atherized").StoreObject().WithKeyField("AutherizeKey").AndStoreOne(appAth).Ok()
return true, ""
}
} else {
return false, err
}
} else {
return false, "Code invalid"
}
return false, "process error"
}
示例4: UserActivation
func (h *AuthHandler) UserActivation(token string) bool {
//respond := ""
//check user from db
bytes, err := client.Go("ignore", "com.duosoftware.com", "activation").GetOne().ByUniqueKey(token).Ok()
if err == "" {
var uList ActivationEmail
err := json.Unmarshal(bytes, &uList)
if err == nil || bytes == nil {
//new user
if err != nil {
term.Write("Token Not Found", term.Debug)
return false
} else {
//uList[0].GUUserID
var u User
var inputParams map[string]string
inputParams = make(map[string]string)
inputParams["email"] = u.EmailAddress
inputParams["name"] = u.Name
//Change activation status to true and save
term.Write("Activate User "+u.Name+" Update User "+u.UserID, term.Debug)
email.Send("ignore", "com.duosoftware.auth", "email", "user_activated", inputParams, u.EmailAddress)
return true
}
}
} else {
term.Write("Activation Fail ", term.Debug)
return false
}
return false
}
示例5: CreateTenant
func (h *TenantHandler) CreateTenant(t Tenant, user session.AuthCertificate, update bool) Tenant {
term.Write("CreateTenant saving user "+t.Name, term.Debug)
//client.c
bytes, err := client.Go("ignore", "com.duosoftware.tenant", "tenants").GetOne().ByUniqueKey(t.TenantID).Ok()
if err == "" {
var uList Tenant
err := json.Unmarshal(bytes, &uList)
if err != nil {
if t.TenantID == "" {
t.TenantID = common.GetGUID()
term.Write("Auto Gen TID "+t.TenantID+" New Tenant "+t.Name, term.Debug)
}
term.Write("Save Tenant saving Tenant "+t.Name+" New Tenant "+t.Name, term.Debug)
var inputParams map[string]string
inputParams = make(map[string]string)
inputParams["email"] = user.Email
inputParams["name"] = user.Name
inputParams["tenantID"] = t.TenantID
inputParams["tenantName"] = t.Name
h.AddUsersToTenant(t.TenantID, t.Name, user.UserID, "admin")
email.Send("ignore", "com.duosoftware.auth", "tenant", "tenant_creation", inputParams, user.Email)
client.Go("ignore", "com.duosoftware.tenant", "tenants").StoreObject().WithKeyField("TenantID").AndStoreOne(t).Ok()
} else {
if update {
term.Write("SaveUser saving Tenant "+t.TenantID+" Update user "+user.UserID, term.Debug)
client.Go("ignore", "com.duosoftware.tenant", "tenants").StoreObject().WithKeyField("TenantID").AndStoreOne(t).Ok()
}
}
} else {
term.Write("SaveUser saving Tenant fetech Error #"+err, term.Error)
}
return t
}
示例6: AddTenantForUsers
func (h *TenantHandler) AddTenantForUsers(Tenant TenantMinimum, UserID string) UserTenants {
bytes, err := client.Go("ignore", "com.duosoftware.tenant", "userstenantmappings").GetOne().ByUniqueKey(UserID).Ok()
var t UserTenants
//t.UserID
if err == "" {
err := json.Unmarshal(bytes, &t)
if err != nil {
term.Write("No Users yet assigied "+UserID, term.Debug)
t = UserTenants{UserID, []TenantMinimum{}}
t.UserID = UserID
} else {
for _, element := range t.TenantIDs {
if element.TenantID == Tenant.TenantID {
return t
}
}
}
t.TenantIDs = append(t.TenantIDs, Tenant)
client.Go("ignore", "com.duosoftware.tenant", "userstenantmappings").StoreObject().WithKeyField("UserID").AndStoreOne(t).Ok()
term.Write("Saved Tenant users"+UserID, term.Debug)
return t
} else {
return t
}
}
示例7: AddUsersToTenant
func (h *TenantHandler) AddUsersToTenant(TenantID, Name string, users, SecurityLevel string) TenantUsers {
bytes, err := client.Go("ignore", "com.duosoftware.tenant", "users").GetOne().ByUniqueKey(TenantID).Ok()
var t TenantUsers
if err == "" {
err := json.Unmarshal(bytes, &t)
if err != nil {
term.Write("No Users yet assigied "+t.TenantID, term.Debug)
//t=TenantUsers{}
t = TenantUsers{TenantID, []string{}}
t.TenantID = TenantID
} else {
for _, element := range t.Users {
if element == users {
return t
}
}
}
h.AddTenantForUsers(TenantMinimum{TenantID, Name}, users)
t.Users = append(t.Users, users)
var Activ TenantAutherized
Activ = TenantAutherized{}
id := common.GetHash(users + "-" + TenantID)
Activ.Autherized = true
Activ.ID = id
Activ.TenantID = TenantID
Activ.SecurityLevel = SecurityLevel
Activ.UserID = users
client.Go("ignore", "com.duosoftware.tenant", "authorized").StoreObject().WithKeyField("ID").AndStoreOne(Activ).Ok()
client.Go("ignore", "com.duosoftware.tenant", "users").StoreObject().WithKeyField("TenantID").AndStoreOne(t).Ok()
term.Write("Saved Tenant users"+t.TenantID, term.Debug)
return t
} else {
return t
}
}
示例8: runRestFul
func runRestFul() {
gorest.RegisterService(new(authlib.Auth))
gorest.RegisterService(new(authlib.TenantSvc))
gorest.RegisterService(new(pog.POGSvc))
gorest.RegisterService(new(applib.AppSvc))
gorest.RegisterService(new(config.ConfigSvc))
gorest.RegisterService(new(statservice.StatSvc))
gorest.RegisterService(new(apisvc.ApiSvc))
c := authlib.GetConfig()
email.EmailAddress = c.Smtpusername
email.Password = c.Smtppassword
email.SMTPServer = c.Smtpserver
if c.Https_Enabled {
err := http.ListenAndServeTLS(":3048", c.Cirtifcate, c.PrivateKey, gorest.Handle())
if err != nil {
term.Write(err.Error(), term.Error)
return
}
} else {
err := http.ListenAndServe(":3048", gorest.Handle())
if err != nil {
term.Write(err.Error(), term.Error)
return
}
}
}
示例9: GetUser
func (h *AuthHandler) GetUser(email string) (User, string) {
term.Write("Login user email"+email, term.Debug)
term.Write(Config.UserName, term.Debug)
bytes, err := client.Go("ignore", "com.duosoftware.auth", "users").GetOne().ByUniqueKey(email).Ok()
var user User
if err == "" {
if bytes != nil {
var uList User
err := json.Unmarshal(bytes, &uList)
if err == nil {
uList.Password = "-------------"
uList.ConfirmPassword = "-------------"
return uList, ""
} else {
if err != nil {
term.Write("Login user Error "+err.Error(), term.Error)
}
}
}
} else {
term.Write("Login user Error "+err, term.Error)
}
return user, "Error Validating user"
}
示例10: main
func main() {
term.GetConfig()
term.Write(s.Format("20060102"), term.Debug)
term.Write("Lable", term.Debug)
stat.Start()
go ErrorMethods()
go Informaton()
term.StartCommandLine()
}
示例11: main
func main() {
cebadapter.Attach("DuoAuth", func(s bool) {
cebadapter.GetLatestGlobalConfig("StoreConfig", func(data []interface{}) {
term.Write("Store Configuration Successfully Loaded...", term.Information)
agent := cebadapter.GetAgent()
agent.Client.OnEvent("globalConfigChanged.StoreConfig", func(from string, name string, data map[string]interface{}, resources map[string]interface{}) {
cebadapter.GetLatestGlobalConfig("StoreConfig", func(data []interface{}) {
term.Write("Store Configuration Successfully Updated...", term.Information)
})
})
})
term.Write("Successfully registered in CEB", term.Information)
})
authlib.SetupConfig()
term.GetConfig()
//go Bingo()
stat.Start()
go webServer()
go runRestFul()
term.SplashScreen("splash.art")
term.Write("================================================================", term.Splash)
term.Write("| Admintration Console running on :9000 |", term.Splash)
term.Write("| https RestFul Service running on :3048 |", term.Splash)
term.Write("| Duo v6 Auth Service 6.0 |", term.Splash)
term.Write("================================================================", term.Splash)
term.StartCommandLine()
}
示例12: AppAutherize
func (h *AuthHandler) AppAutherize(ApplicationID, UserID string) bool {
bytes, err := client.Go("ignore", "com.duosoftware.auth", "atherized").GetOne().ByUniqueKey(ApplicationID + "-" + UserID).Ok()
term.Write("AppAutherize For Application "+ApplicationID+" UserID "+UserID, term.Debug)
if err == "" {
if bytes != nil {
var uList AppAutherize
err := json.Unmarshal(bytes, &uList)
if err == nil {
return true
}
}
} else {
term.Write("AppAutherize Error "+err, term.Error)
}
return false
}
示例13: UserActivation
//Activate user account using invitation mail send with token
//GET
//Url /UserActivation/sdfsdfwer23rsdff
//if user activation success method will return Success
func (serv RegistationService) UserActivation(token string) string {
respond := ""
//check user from db
bytes, err := client.Go("ignore", "com.duosoftware.com", "activation").GetOne().BySearching(token).Ok()
if err == "" {
var uList []User
err := json.Unmarshal(bytes, &uList)
if err == nil || bytes == nil {
//new user
if len(uList) == 0 {
term.Write("User Not Found", term.Debug)
} else {
var u User
u.UserID = uList[0].UserID
u.Password = uList[0].Password
u.Active = true
u.ConfirmPassword = uList[0].Password
u.Name = uList[0].Name
u.EmailAddress = uList[0].EmailAddress
//Change activation status to true and save
term.Write("Activate User "+u.Name+" Update User "+u.UserID, term.Debug)
client.Go("ignore", "com.duosoftware.auth", "users").StoreObject().WithKeyField("EmailAddress").AndStoreOne(u).Ok()
respond = "true"
var Activ ActivationEmail
Activ.EmailAddress = u.EmailAddress
//set token empty and save
Activ.Token = ""
client.Go("ignore", "com.duosoftware.com", "Activation").StoreObject().WithKeyField("EmailAddress").AndStoreOne(Activ).Ok()
Email(u.EmailAddress, Activ.Token, "Activated")
respond = "Success"
}
}
} else {
term.Write("Activation Fail ", term.Debug)
}
return respond
}
示例14: GetAuthCode
func (h *AuthHandler) GetAuthCode(ApplicationID, UserID, URI string) string {
var a AuthCode
a.ApplicationID = ApplicationID
a.UserID = UserID
a.URI = URI
a.Code = common.RandText(10)
client.Go("ignore", "com.duosoftware.auth", "authcode").StoreObject().WithKeyField("Code").AndStoreOne(a).Ok()
term.Write("GetAuthCode for "+ApplicationID+" with SecurityToken :"+UserID, term.Debug)
return a.Code
}
示例15: getCirt
func getCirt(UserID, recordID string, s SecInfo) Cirtificat {
term.Write("Methed Invoke getCirt", term.Debug)
var c Cirtificat
RecID := getPODID(UserID, recordID)
bytes, err := client.Go(s.SecurityToken, s.POGDomain, "cirts").GetOne().ByUniqueKey(RecID).Ok()
//var t Tenant
if err == "" {
err := json.Unmarshal(bytes, &c)
if err == nil {
return c
} else {
term.Write("Methed Invoke getCirt :"+err.Error(), term.Error)
return c
}
} else {
term.Write("Methed Invoke getCirt :"+err, term.Error)
return c
}
}