mirror of
https://github.com/gogs/gogs.git
synced 2026-03-02 10:11:04 +01:00
Co-authored-by: Joe Chen <jc@unknwon.io> # Conflicts: # CHANGELOG.md # internal/auth/pam/pam.go
36 lines
711 B
Go
36 lines
711 B
Go
// +build pam
|
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package pam
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/msteinert/pam"
|
|
)
|
|
|
|
func PAMAuth(serviceName, userName, passwd string) error {
|
|
t, err := pam.StartFunc(serviceName, userName, func(s pam.Style, msg string) (string, error) {
|
|
switch s {
|
|
case pam.PromptEchoOff:
|
|
return passwd, nil
|
|
case pam.PromptEchoOn, pam.ErrorMsg, pam.TextInfo:
|
|
return "", nil
|
|
}
|
|
return "", errors.New("Unrecognized PAM message style")
|
|
})
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = t.Authenticate(0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return t.AcctMgmt(0)
|
|
}
|