Browse Source

Make session public

Vova Tkach 6 years ago
parent
commit
cc235b070c
4 changed files with 13 additions and 13 deletions
  1. 3 3
      session/bool.go
  2. 3 3
      session/int.go
  3. 4 4
      session/session.go
  4. 3 3
      session/string.go

+ 3 - 3
session/bool.go

@@ -1,6 +1,6 @@
 package session
 
-func (this *session) IsSetBool(name string) bool {
+func (this *Session) IsSetBool(name string) bool {
 	if _, ok := this.v.Bool[name]; ok {
 		return true
 	} else {
@@ -8,7 +8,7 @@ func (this *session) IsSetBool(name string) bool {
 	}
 }
 
-func (this *session) GetBool(name string, def bool) bool {
+func (this *Session) GetBool(name string, def bool) bool {
 	if v, ok := this.v.Bool[name]; ok {
 		return v
 	} else {
@@ -16,7 +16,7 @@ func (this *session) GetBool(name string, def bool) bool {
 	}
 }
 
-func (this *session) SetBool(name string, value bool) {
+func (this *Session) SetBool(name string, value bool) {
 	this.v.Bool[name] = value
 	this.c = true
 }

+ 3 - 3
session/int.go

@@ -1,6 +1,6 @@
 package session
 
-func (this *session) IsSetInt(name string) bool {
+func (this *Session) IsSetInt(name string) bool {
 	if _, ok := this.v.Int[name]; ok {
 		return true
 	} else {
@@ -8,7 +8,7 @@ func (this *session) IsSetInt(name string) bool {
 	}
 }
 
-func (this *session) GetInt(name string, def int) int {
+func (this *Session) GetInt(name string, def int) int {
 	if v, ok := this.v.Int[name]; ok {
 		return v
 	} else {
@@ -16,7 +16,7 @@ func (this *session) GetInt(name string, def int) int {
 	}
 }
 
-func (this *session) SetInt(name string, value int) {
+func (this *Session) SetInt(name string, value int) {
 	this.v.Int[name] = value
 	this.c = true
 }

+ 4 - 4
session/session.go

@@ -16,7 +16,7 @@ type vars struct {
 	String map[string]string
 }
 
-type session struct {
+type Session struct {
 	w http.ResponseWriter
 	r *http.Request
 	d string
@@ -25,8 +25,8 @@ type session struct {
 	i string
 }
 
-func New(w http.ResponseWriter, r *http.Request, tmpdir string) *session {
-	sess := session{w: w, r: r, d: tmpdir, v: &vars{}, c: false, i: ""}
+func New(w http.ResponseWriter, r *http.Request, tmpdir string) *Session {
+	sess := Session{w: w, r: r, d: tmpdir, v: &vars{}, c: false, i: ""}
 
 	cookie, err := r.Cookie("session")
 	if err == nil && len(cookie.Value) == 40 {
@@ -68,7 +68,7 @@ func New(w http.ResponseWriter, r *http.Request, tmpdir string) *session {
 	return &sess
 }
 
-func (this *session) Close() bool {
+func (this *Session) Close() bool {
 	if !this.c {
 		return false
 	}

+ 3 - 3
session/string.go

@@ -1,6 +1,6 @@
 package session
 
-func (this *session) IsSetString(name string) bool {
+func (this *Session) IsSetString(name string) bool {
 	if _, ok := this.v.String[name]; ok {
 		return true
 	} else {
@@ -8,7 +8,7 @@ func (this *session) IsSetString(name string) bool {
 	}
 }
 
-func (this *session) GetString(name string, def string) string {
+func (this *Session) GetString(name string, def string) string {
 	if v, ok := this.v.String[name]; ok {
 		return v
 	} else {
@@ -16,7 +16,7 @@ func (this *session) GetString(name string, def string) string {
 	}
 }
 
-func (this *session) SetString(name string, value string) {
+func (this *Session) SetString(name string, value string) {
 	this.v.String[name] = value
 	this.c = true
 }