1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
package config
import (
"github.com/ponzu-cms/ponzu/management/editor"
"github.com/ponzu-cms/ponzu/system/item"
)
// Config represents the confirgurable options of the system
type Config struct {
item.Item
Name string `json:"name"`
Domain string `json:"domain"`
HTTPPort string `json:"http_port"`
HTTPSPort string `json:"https_port"`
AdminEmail string `json:"admin_email"`
ClientSecret string `json:"client_secret"`
Etag string `json:"etag"`
DisableCORS []bool `json:"cors_disabled"`
CacheInvalidate []string `json:"cache"`
}
// String partially implements item.Identifiable and overrides Item's String()
func (c *Config) String() string { return c.Name }
// MarshalEditor writes a buffer of html to edit a Post and partially implements editor.Editable
func (c *Config) MarshalEditor() ([]byte, error) {
view, err := editor.Form(c,
editor.Field{
View: editor.Input("Name", c, map[string]string{
"label": "Site Name",
"placeholder": "Add a name to this site (internal use only)",
}),
},
editor.Field{
View: editor.Input("Domain", c, map[string]string{
"label": "Domain Name (required for SSL certificate)",
"placeholder": "e.g. www.example.com or example.com",
}),
},
editor.Field{
View: editor.Input("HTTPPort", c, map[string]string{
"type": "hidden",
}),
},
editor.Field{
View: editor.Input("HTTPSPort", c, map[string]string{
"type": "hidden",
}),
},
editor.Field{
View: editor.Input("AdminEmail", c, map[string]string{
"label": "Adminstrator Email (notified of internal system information)",
}),
},
editor.Field{
View: editor.Input("ClientSecret", c, map[string]string{
"label": "Client Secret (used to validate requests, DO NOT SHARE)",
"disabled": "true",
}),
},
editor.Field{
View: editor.Input("ClientSecret", c, map[string]string{
"type": "hidden",
}),
},
editor.Field{
View: editor.Input("Etag", c, map[string]string{
"label": "Etag Header (used to cache resources)",
"disabled": "true",
}),
},
editor.Field{
View: editor.Input("Etag", c, map[string]string{
"type": "hidden",
}),
},
editor.Field{
View: editor.Checkbox("DisableCORS", c, map[string]string{
"label": "Disable CORS (so only " + c.Domain + " can fetch your data)",
}, map[string]string{
"true": "Disable",
}),
},
editor.Field{
View: editor.Checkbox("CacheInvalidate", c, map[string]string{
"label": "Invalidate cache on save",
}, map[string]string{
"invalidate": "Invalidate Cache",
}),
},
)
if err != nil {
return nil, err
}
open := []byte(`
<div class="card">
<div class="card-content">
<div class="card-title">System Configuration</div>
</div>
<form action="/admin/configure" method="post">
`)
close := []byte(`</form></div>`)
script := []byte(`
<script>
$(function() {
// hide default fields & labels unecessary for the config
var fields = $('.default-fields');
fields.css('position', 'relative');
fields.find('input:not([type=submit])').remove();
fields.find('label').remove();
fields.find('button').css({
position: 'absolute',
top: '-10px',
right: '0px'
});
var contentOnly = $('.content-only.__ponzu');
contentOnly.hide();
contentOnly.find('input, textarea, select').attr('name', '');
// adjust layout of td so save button is in same location as usual
fields.find('td').css('float', 'right');
// stop some fixed config settings from being modified
fields.find('input[name=client_secret]').attr('name', '');
});
</script>
`)
view = append(open, view...)
view = append(view, close...)
view = append(view, script...)
return view, nil
}
|