1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-14 20:30:40 +00:00

support using json string to init session

This commit is contained in:
Ming Deng
2020-10-21 22:12:25 +08:00
parent 03ba495b7f
commit 05f4e0c146
12 changed files with 464 additions and 136 deletions

View File

@ -34,6 +34,7 @@ package couchbase
import (
"context"
"encoding/json"
"net/http"
"strings"
"sync"
@ -57,9 +58,9 @@ type SessionStore struct {
// Provider couchabse provided
type Provider struct {
maxlifetime int64
savePath string
pool string
bucket string
SavePath string `json:"save_path"`
Pool string `json:"pool"`
Bucket string `json:"bucket"`
b *couchbase.Bucket
}
@ -115,17 +116,17 @@ func (cs *SessionStore) SessionRelease(ctx context.Context, w http.ResponseWrite
}
func (cp *Provider) getBucket() *couchbase.Bucket {
c, err := couchbase.Connect(cp.savePath)
c, err := couchbase.Connect(cp.SavePath)
if err != nil {
return nil
}
pool, err := c.GetPool(cp.pool)
pool, err := c.GetPool(cp.Pool)
if err != nil {
return nil
}
bucket, err := pool.GetBucket(cp.bucket)
bucket, err := pool.GetBucket(cp.Bucket)
if err != nil {
return nil
}
@ -135,18 +136,31 @@ func (cp *Provider) getBucket() *couchbase.Bucket {
// SessionInit init couchbase session
// savepath like couchbase server REST/JSON URL
// e.g. http://host:port/, Pool, Bucket
func (cp *Provider) SessionInit(ctx context.Context, maxlifetime int64, savePath string) error {
// For v1.x e.g. http://host:port/, Pool, Bucket
// For v2.x, you should pass json string.
// e.g. { "save_path": "http://host:port/", "pool": "mypool", "bucket": "mybucket"}
func (cp *Provider) SessionInit(ctx context.Context, maxlifetime int64, cfg string) error {
cp.maxlifetime = maxlifetime
cfg = strings.TrimSpace(cfg)
// we think this is v2.0, using json to init the session
if strings.HasPrefix(cfg, "{") {
return json.Unmarshal([]byte(cfg), cp)
} else {
return cp.initOldStyle(cfg)
}
}
// initOldStyle keep compatible with v1.x
func (cp *Provider) initOldStyle(savePath string) error {
configs := strings.Split(savePath, ",")
if len(configs) > 0 {
cp.savePath = configs[0]
cp.SavePath = configs[0]
}
if len(configs) > 1 {
cp.pool = configs[1]
cp.Pool = configs[1]
}
if len(configs) > 2 {
cp.bucket = configs[2]
cp.Bucket = configs[2]
}
return nil
@ -225,7 +239,7 @@ func (cp *Provider) SessionRegenerate(ctx context.Context, oldsid, sid string) (
return cs, nil
}
// SessionDestroy Remove bucket in this couchbase
// SessionDestroy Remove Bucket in this couchbase
func (cp *Provider) SessionDestroy(ctx context.Context, sid string) error {
cp.b = cp.getBucket()
defer cp.b.Close()

View File

@ -0,0 +1,43 @@
// Copyright 2020
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package couchbase
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
)
func TestProvider_SessionInit(t *testing.T) {
// using old style
savePath := `http://host:port/,Pool,Bucket`
cp := &Provider{}
cp.SessionInit(context.Background(), 12, savePath)
assert.Equal(t, "http://host:port/", cp.SavePath)
assert.Equal(t, "Pool", cp.Pool)
assert.Equal(t, "Bucket", cp.Bucket)
assert.Equal(t, int64(12), cp.maxlifetime)
savePath = `
{ "save_path": "my save path", "pool": "mypool", "bucket": "mybucket"}
`
cp = &Provider{}
cp.SessionInit(context.Background(), 12, savePath)
assert.Equal(t, "my save path", cp.SavePath)
assert.Equal(t, "mypool", cp.Pool)
assert.Equal(t, "mybucket", cp.Bucket)
assert.Equal(t, int64(12), cp.maxlifetime)
}