1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package wrapper
- import (
- "encoding/json"
- "os"
- )
- type Config struct {
- Blog struct {
- Pagination struct {
- Index int
- Category int
- }
- }
- Shop struct {
- Pagination struct {
- Index int
- Category int
- }
- }
- API struct {
- XML struct {
- Enabled int
- Name string
- Company string
- Url string
- }
- }
- }
- func configNew() *Config {
- c := &Config{}
- c.configDefault()
- return c
- }
- func (this *Config) configDefault() {
- this.Blog.Pagination.Index = 5
- this.Blog.Pagination.Category = 5
- this.Shop.Pagination.Index = 9
- this.Shop.Pagination.Category = 9
- this.API.XML.Enabled = 0
- this.API.XML.Name = ""
- this.API.XML.Company = ""
- this.API.XML.Url = ""
- }
- func (this *Config) configRead(file string) error {
- f, err := os.Open(file)
- if err != nil {
- return err
- }
- defer f.Close()
- dec := json.NewDecoder(f)
- return dec.Decode(this)
- }
- func (this *Config) configWrite(file string) error {
- r, err := json.Marshal(this)
- if err != nil {
- return err
- }
- f, err := os.Create(file)
- if err != nil {
- return err
- }
- defer f.Close()
- _, err = f.WriteString(string(r))
- return err
- }
|