Browse Source

Human readable variables

Volodymyr Tkach 2 years ago
parent
commit
3140bc0027
4 changed files with 8 additions and 8 deletions
  1. 1 1
      session/bool.go
  2. 1 1
      session/int.go
  3. 5 5
      session/session.go
  4. 1 1
      session/string.go

+ 1 - 1
session/bool.go

@@ -20,6 +20,6 @@ func (s *Session) SetBool(name string, value bool) {
 	isset := s.IsSetBool(name)
 	s.varlist.Bool[name] = value
 	if isset || value {
-		s.c = true
+		s.changed = true
 	}
 }

+ 1 - 1
session/int.go

@@ -20,6 +20,6 @@ func (s *Session) SetInt(name string, value int) {
 	isset := s.IsSetInt(name)
 	s.varlist.Int[name] = value
 	if isset || value != 0 {
-		s.c = true
+		s.changed = true
 	}
 }

+ 5 - 5
session/session.go

@@ -22,12 +22,12 @@ type Session struct {
 	r       *http.Request
 	tmpdir  string
 	varlist *vars
-	c       bool
+	changed bool
 	i       string
 }
 
 func New(w http.ResponseWriter, r *http.Request, tmpdir string) *Session {
-	sess := Session{w: w, r: r, tmpdir: tmpdir, varlist: &vars{}, c: false, i: ""}
+	sess := Session{w: w, r: r, tmpdir: tmpdir, varlist: &vars{}, changed: false, i: ""}
 
 	cookie, err := r.Cookie("session")
 	if err == nil && len(cookie.Value) == 40 {
@@ -85,7 +85,7 @@ func New(w http.ResponseWriter, r *http.Request, tmpdir string) *Session {
 }
 
 func (s *Session) Close() bool {
-	if !s.c {
+	if !s.changed {
 		return false
 	}
 
@@ -96,7 +96,7 @@ func (s *Session) Close() bool {
 			defer f.Close()
 			_, err = f.Write(r)
 			if err == nil {
-				s.c = false
+				s.changed = false
 				return true
 			}
 		}
@@ -111,7 +111,7 @@ func (s *Session) Destroy() error {
 	}
 	err := os.Remove(strings.Join([]string{s.tmpdir, s.i}, string(os.PathSeparator)))
 	if err == nil {
-		s.c = false
+		s.changed = false
 	}
 	return err
 }

+ 1 - 1
session/string.go

@@ -20,6 +20,6 @@ func (s *Session) SetString(name string, value string) {
 	isset := s.IsSetString(name)
 	s.varlist.String[name] = value
 	if isset || value != "" {
-		s.c = true
+		s.changed = true
 	}
 }