-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSubject_data.go
67 lines (58 loc) · 1.61 KB
/
Subject_data.go
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 db
import (
"errors"
"github.com/ishtiaqhimel/go-api-server/model"
)
// SubjectRepo In memory database for subjects
type SubjectRepo struct {
Subjects []model.Subject
}
func NewSubject() *SubjectRepo {
return &SubjectRepo{
Subjects: []model.Subject{
{Id: "103", Title: "Data Structure", Code: "CSE-103"},
{Id: "104", Title: "Algorithm", Code: "CSE-104"},
{Id: "105", Title: "Computer Network", Code: "CSE-105"},
{Id: "106", Title: "Image Processing", Code: "CSE-106"},
},
}
}
type SubjectService interface {
GetAll() []model.Subject
Add(subject model.Subject) error
DeleteById(id string) error
UpdateById(id string, subject model.Subject) error
}
func (r *SubjectRepo) Add(subject model.Subject) error {
for _, sub := range r.Subjects {
if subject.Id == sub.Id {
return errors.New("subject with id " + subject.Id + " already exists")
}
}
r.Subjects = append(r.Subjects, subject)
return nil
}
func (r *SubjectRepo) GetAll() []model.Subject {
return r.Subjects
}
func (r *SubjectRepo) DeleteById(id string) error {
for i, subject := range r.Subjects {
if id == subject.Id {
// Do we need the ordered value? - No
r.Subjects[i] = r.Subjects[len(r.Subjects)-1]
r.Subjects[len(r.Subjects)-1] = model.Subject{}
r.Subjects = r.Subjects[:len(r.Subjects)-1]
return nil
}
}
return errors.New("subject with id " + id + " does not exist")
}
func (r *SubjectRepo) UpdateById(id string, sub model.Subject) error {
for i, subject := range r.Subjects {
if id == subject.Id {
r.Subjects[i] = sub
return nil
}
}
return errors.New("subject with id " + id + " does not exist")
}