remove seed
This commit is contained in:
		
							parent
							
								
									299534ccf1
								
							
						
					
					
						commit
						7aab3cff8c
					
				| @ -2,8 +2,6 @@ package utils | ||||
| 
 | ||||
| import ( | ||||
| 	"context" | ||||
| 	"encoding/json" | ||||
| 	"os" | ||||
| 
 | ||||
| 	"git.defalsify.org/vise.git/db" | ||||
| 	fsdb "git.defalsify.org/vise.git/db/fs" | ||||
| @ -14,17 +12,9 @@ var ( | ||||
| 	logg = logging.NewVanilla().WithDomain("adminstore") | ||||
| ) | ||||
| 
 | ||||
| type Admin struct { | ||||
| 	PhoneNumber string `json:"phonenumber"` | ||||
| } | ||||
| 
 | ||||
| type Config struct { | ||||
| 	Admins []Admin `json:"admins"` | ||||
| } | ||||
| 
 | ||||
| type AdminStore struct { | ||||
| 	ctx     context.Context | ||||
| 	fsStore db.Db | ||||
| 	FsStore db.Db | ||||
| } | ||||
| 
 | ||||
| func NewAdminStore(ctx context.Context, fileName string) (*AdminStore, error) { | ||||
| @ -32,7 +22,7 @@ func NewAdminStore(ctx context.Context, fileName string) (*AdminStore, error) { | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return &AdminStore{ctx: ctx, fsStore: fsStore}, nil | ||||
| 	return &AdminStore{ctx: ctx, FsStore: fsStore}, nil | ||||
| } | ||||
| 
 | ||||
| func getFsStore(ctx context.Context, connectStr string) (db.Db, error) { | ||||
| @ -45,33 +35,9 @@ func getFsStore(ctx context.Context, connectStr string) (db.Db, error) { | ||||
| 	return fsStore, nil | ||||
| } | ||||
| 
 | ||||
| // Seed initializes a list of phonenumbers with admin privileges
 | ||||
| func (as *AdminStore) Seed() error { | ||||
| 	var config Config | ||||
| 
 | ||||
| 	store := as.fsStore | ||||
| 	defer store.Close() | ||||
| 
 | ||||
| 	data, err := os.ReadFile("admin_numbers.json") | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	if err := json.Unmarshal(data, &config); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	for _, admin := range config.Admins { | ||||
| 		err := store.Put(as.ctx, []byte(admin.PhoneNumber), []byte("1")) | ||||
| 		if err != nil { | ||||
| 			logg.Printf(logging.LVL_DEBUG, "Failed to insert admin number", admin.PhoneNumber) | ||||
| 			return err | ||||
| 		} | ||||
| 	} | ||||
| 	return nil | ||||
| } | ||||
| 
 | ||||
| // Checks if the given sessionId is listed as an admin.
 | ||||
| func (as *AdminStore) IsAdmin(sessionId string) (bool, error) { | ||||
| 	_, err := as.fsStore.Get(as.ctx, []byte(sessionId)) | ||||
| 	_, err := as.FsStore.Get(as.ctx, []byte(sessionId)) | ||||
| 	if err != nil { | ||||
| 		if db.IsNotFound(err) { | ||||
| 			logg.Printf(logging.LVL_INFO, "Returning false because session id was not found") | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user