open-vault/vendor/github.com/go-ldap/ldap/v3/add.go

101 lines
2.7 KiB
Go
Raw Normal View History

2015-10-07 20:10:00 +00:00
//
// https://tools.ietf.org/html/rfc4511
//
// AddRequest ::= [APPLICATION 8] SEQUENCE {
// entry LDAPDN,
// attributes AttributeList }
//
// AttributeList ::= SEQUENCE OF attribute Attribute
package ldap
import (
"log"
ber "github.com/go-asn1-ber/asn1-ber"
2015-10-07 20:10:00 +00:00
)
2016-07-23 00:11:47 +00:00
// Attribute represents an LDAP attribute
2015-10-07 20:10:00 +00:00
type Attribute struct {
2016-07-23 00:11:47 +00:00
// Type is the name of the LDAP attribute
2016-06-08 14:33:08 +00:00
Type string
2016-07-23 00:11:47 +00:00
// Vals are the LDAP attribute values
2016-06-08 14:33:08 +00:00
Vals []string
2015-10-07 20:10:00 +00:00
}
func (a *Attribute) encode() *ber.Packet {
seq := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "Attribute")
2016-06-08 14:33:08 +00:00
seq.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, a.Type, "Type"))
2015-10-07 20:10:00 +00:00
set := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSet, nil, "AttributeValue")
2016-06-08 14:33:08 +00:00
for _, value := range a.Vals {
2015-10-07 20:10:00 +00:00
set.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, value, "Vals"))
}
seq.AppendChild(set)
return seq
}
2016-07-23 00:11:47 +00:00
// AddRequest represents an LDAP AddRequest operation
2015-10-07 20:10:00 +00:00
type AddRequest struct {
2016-07-23 00:11:47 +00:00
// DN identifies the entry being added
DN string
// Attributes list the attributes of the new entry
2016-06-08 14:33:08 +00:00
Attributes []Attribute
2018-06-15 17:13:57 +00:00
// Controls hold optional controls to send with the request
Controls []Control
2015-10-07 20:10:00 +00:00
}
func (req *AddRequest) appendTo(envelope *ber.Packet) error {
pkt := ber.Encode(ber.ClassApplication, ber.TypeConstructed, ApplicationAddRequest, nil, "Add Request")
pkt.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, req.DN, "DN"))
2015-10-07 20:10:00 +00:00
attributes := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "Attributes")
for _, attribute := range req.Attributes {
2015-10-07 20:10:00 +00:00
attributes.AppendChild(attribute.encode())
}
pkt.AppendChild(attributes)
envelope.AppendChild(pkt)
if len(req.Controls) > 0 {
envelope.AppendChild(encodeControls(req.Controls))
}
return nil
2015-10-07 20:10:00 +00:00
}
2016-07-23 00:11:47 +00:00
// Attribute adds an attribute with the given type and values
func (req *AddRequest) Attribute(attrType string, attrVals []string) {
req.Attributes = append(req.Attributes, Attribute{Type: attrType, Vals: attrVals})
2015-10-07 20:10:00 +00:00
}
2016-07-23 00:11:47 +00:00
// NewAddRequest returns an AddRequest for the given DN, with no attributes
2018-06-15 17:13:57 +00:00
func NewAddRequest(dn string, controls []Control) *AddRequest {
2015-10-07 20:10:00 +00:00
return &AddRequest{
2018-06-15 17:13:57 +00:00
DN: dn,
Controls: controls,
2015-10-07 20:10:00 +00:00
}
}
2016-07-23 00:11:47 +00:00
// Add performs the given AddRequest
2015-10-07 20:10:00 +00:00
func (l *Conn) Add(addRequest *AddRequest) error {
msgCtx, err := l.doRequest(addRequest)
2015-10-07 20:10:00 +00:00
if err != nil {
return err
}
2016-06-30 18:19:03 +00:00
defer l.finishMessage(msgCtx)
2015-10-07 20:10:00 +00:00
packet, err := l.readPacket(msgCtx)
2016-04-26 00:18:04 +00:00
if err != nil {
return err
2015-10-07 20:10:00 +00:00
}
if packet.Children[1].Tag == ApplicationAddResponse {
2019-01-31 22:07:25 +00:00
err := GetLDAPError(packet)
if err != nil {
return err
2015-10-07 20:10:00 +00:00
}
} else {
log.Printf("Unexpected Response: %d", packet.Children[1].Tag)
}
return nil
}