Skip to content

Commit a54eeef

Browse files
committed
Add browse steps.
Fix database connection issues. Signed-off-by: David Calavera <[email protected]>
1 parent ee2e832 commit a54eeef

File tree

19 files changed

+366
-26
lines changed

19 files changed

+366
-26
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
openlandings
2+
.env

controllers/home.go

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
package controllers
22

3-
import (
4-
"github.com/astaxie/beego"
5-
"github.com/markbates/goth"
6-
)
3+
import "github.com/astaxie/beego"
74

85
type HomeController struct {
96
beego.Controller
@@ -12,12 +9,8 @@ type HomeController struct {
129
func (c *HomeController) Get() {
1310
u := c.GetSession("current_user")
1411
if u != nil {
15-
c.userDashboard(u.(*goth.User))
12+
c.Redirect("/steps/browse", 302)
1613
} else {
1714
c.TplName = "home/index.html"
1815
}
1916
}
20-
21-
func (c *HomeController) userDashboard(user *goth.User) {
22-
c.TplName = "home/dashboard.tmpl"
23-
}

controllers/login.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var provider goth.Provider
1717

1818
func init() {
1919
url := os.Getenv("SITE_URL") + "/auth/callback"
20-
provider = github.New(os.Getenv("GITHUB_KEY"), os.Getenv("GITHUB_SECRET"), url, "user:read", "user:email")
20+
provider = github.New(os.Getenv("GITHUB_KEY"), os.Getenv("GITHUB_SECRET"), url, "user:read", "user:email", "read:org")
2121
}
2222

2323
type LoginController struct {

controllers/steps.go

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
package controllers
2+
3+
import (
4+
"github.com/astaxie/beego"
5+
"github.com/calavera/openlandings/github"
6+
githubapi "github.com/google/go-github/github"
7+
"github.com/markbates/goth"
8+
)
9+
10+
type StepsController struct {
11+
beego.Controller
12+
}
13+
14+
func (c *StepsController) BrowseRepositories() {
15+
cu := c.GetSession("current_user").(*goth.User)
16+
u := c.Ctx.Input.GetData("github_user").(*githubapi.User)
17+
orgs, err := github.ListOrganizations(cu.AccessToken)
18+
if err != nil {
19+
beego.Error(err)
20+
c.Redirect("/404.html", 302)
21+
return
22+
}
23+
24+
c.Data["steps"] = steps{
25+
Browse: newStep("current"),
26+
Select: newStep("disabled"),
27+
Configure: newStep("disabled"),
28+
Publish: newStep("disabled"),
29+
}
30+
31+
c.Data["currentUser"] = cu
32+
c.Data["githubUser"] = u
33+
c.Data["organizations"] = orgs
34+
35+
c.TplName = "steps/browse.tpl"
36+
}
37+
38+
type step struct {
39+
Status string
40+
}
41+
42+
func newStep(status string) step {
43+
return step{status}
44+
}
45+
46+
type steps struct {
47+
Browse step
48+
Select step
49+
Configure step
50+
Publish step
51+
}

filters/filters.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,25 @@ package filters
33
import (
44
"github.com/astaxie/beego"
55
"github.com/astaxie/beego/context"
6+
"github.com/calavera/openlandings/github"
7+
"github.com/markbates/goth"
68
)
79

810
func filterUser(ctx *context.Context) {
911
u := ctx.Input.Session("current_user")
1012
if u == nil {
1113
ctx.Redirect(302, "/login")
1214
}
15+
16+
if gu := ctx.Input.GetData("github_user"); gu == nil {
17+
g, err := github.GetCurrentUser(u.(*goth.User).AccessToken)
18+
if err != nil {
19+
ctx.Redirect(302, "/404.html")
20+
}
21+
ctx.Input.SetData("github_user", g)
22+
}
1323
}
1424

1525
func Init() {
16-
beego.InsertFilter("/sites/*", beego.BeforeRouter, filterUser)
26+
beego.InsertFilter("/steps/*", beego.BeforeRouter, filterUser)
1727
}

github/github.go

+22
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,25 @@ func GetPrimaryEmail(accessToken string) string {
2525
}
2626
return email
2727
}
28+
29+
func GetCurrentUser(accessToken string) (*githubapi.User, error) {
30+
client := newClient(accessToken)
31+
user, _, err := client.Users.Get("")
32+
return user, err
33+
}
34+
35+
func ListOrganizations(accessToken string) ([]*githubapi.Organization, error) {
36+
client := newClient(accessToken)
37+
orgs, _, err := client.Organizations.List("", nil)
38+
39+
var fullOrgs []*githubapi.Organization
40+
for _, org := range orgs {
41+
o, _, err := client.Organizations.Get(*org.Login)
42+
if err != nil {
43+
return nil, err
44+
}
45+
fullOrgs = append(fullOrgs, o)
46+
}
47+
48+
return fullOrgs, err
49+
}

models/models.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@ import (
77
_ "github.com/lib/pq"
88
)
99

10-
func Init() {
10+
func Init() error {
11+
orm.RegisterDataBase("default", "postgres", os.Getenv("DB_URL"), 30)
12+
1113
orm.RegisterModel(new(Owner))
1214
orm.RegisterModel(new(Site))
1315
orm.RegisterModel(new(User))
14-
orm.RegisterDataBase("default", "postgres", os.Getenv("POSTGRES_URL"), 30)
16+
17+
if os.Getenv("DB_AUTO") != "" {
18+
return orm.RunSyncdb("default", true, true)
19+
}
20+
return nil
1521
}

models/site.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package models
22

3+
import "time"
4+
35
type Site struct {
46
ID int64
57
Name string
@@ -8,6 +10,8 @@ type Site struct {
810
Version string
911
Domain string
1012
Analytics string
11-
User *User `orm:"rel(fk)"`
12-
Owner *Owner `orm:"rel(fk)"`
13+
User *User `orm:"rel(fk)"`
14+
Owner *Owner `orm:"rel(fk)"`
15+
Created time.Time `orm:"auto_now_add;type(datetime)"`
16+
Updated time.Time `orm:"auto_now;type(datetime)"`
1317
}

models/user.go

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import (
77

88
"github.com/astaxie/beego/orm"
99
"github.com/markbates/goth"
10+
11+
// "github.com/markbates/goth"
1012
)
1113

1214
type User struct {
@@ -16,6 +18,7 @@ type User struct {
1618
AvatarURL string
1719
UUID string
1820
Email string
21+
Created time.Time `orm:"auto_now_add;type(datetime)"`
1922
}
2023

2124
func RegisterUser(user *goth.User) error {

routers/router.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
package routers
22

33
import (
4+
"log"
5+
46
"github.com/astaxie/beego"
57
"github.com/calavera/openlandings/controllers"
68
"github.com/calavera/openlandings/filters"
79
"github.com/calavera/openlandings/models"
810
)
911

1012
func init() {
13+
if err := models.Init(); err != nil {
14+
log.Fatal(err)
15+
}
1116
filters.Init()
12-
models.Init()
1317

1418
beego.Router("/", &controllers.HomeController{})
19+
beego.Router("/steps/browse", &controllers.StepsController{}, "get:BrowseRepositories")
1520

1621
beego.Router("/login", &controllers.LoginController{}, "get:NewLogin")
1722
beego.Router("/auth/callback", &controllers.LoginController{}, "get:Callback")

static/css/components/card.min.css

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)