aboutsummaryrefslogtreecommitdiff
path: root/test/request.go
blob: b693211b3c12e44c865c85602cc174601aa07c15 (plain) (blame)
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
package main

import (
	ldap "github.com/go-ldap/ldap/v3"
)

func (inst *instance) Add_Request(dn string, attributes map[string][]string) error {
	//Create the AddRequest
	req := ldap.NewAddRequest(dn, nil)
	for key, value := range attributes {
		req.Attribute(key, value)
	}

	//Send the request
	err := inst.logging.Add(req)
	//@FIXME: Remove when you try to correct the bug MessageID
	inst.Reconnect()
	return err

}

//Use enum to select Replace,Delete,Modify
func (inst *instance) Modify_Request(dn string, add_attributes, delete_attributes, replace_attributes map[string][]string) error {
	modifyReq := ldap.NewModifyRequest(dn, nil)

	for key, value := range add_attributes {
		modifyReq.Add(key, value)
	}

	for key, value := range delete_attributes {
		modifyReq.Delete(key, value)
	}

	for key, value := range replace_attributes {
		modifyReq.Replace(key, value)
	}

	err := inst.logging.Modify(modifyReq)
	//@FIXME: Remove when you try to correct the bug MessageID
	inst.Reconnect()
	return err
}

func (inst *instance) Delete_Request(dn string) error {
	del := ldap.NewDelRequest(dn, nil)

	err := inst.logging.Del(del)
	//@FIXME: Remove when you try to correct the bug MessageID
	inst.Reconnect()
	return err
}

func (inst *instance) Search_Request(dn, filter string, name_attributes []string) (*ldap.SearchResult, error) {
	searchReq := ldap.NewSearchRequest(
		dn,
		ldap.ScopeWholeSubtree, ldap.NeverDerefAliases, 0, 0, false,
		filter,
		name_attributes,
		nil,
	)

	res, err := inst.logging.Search(searchReq)
	logging.Debugf("Search Request made with: dn: %s, filter: %s, attributes: %s. \n", dn, filter, name_attributes)
	//@FIXME: Remove when you try to correct the bug MessageID
	inst.Reconnect()
	return res, err
}