mirror of https://github.com/gophish/gophish
270 lines
7.5 KiB
Go
270 lines
7.5 KiB
Go
package controllers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
"text/template"
|
|
"time"
|
|
|
|
ctx "github.com/gorilla/context"
|
|
"github.com/gorilla/mux"
|
|
"github.com/jordan-wright/gophish/auth"
|
|
"github.com/jordan-wright/gophish/models"
|
|
"github.com/jordan-wright/gophish/worker"
|
|
)
|
|
|
|
var Worker *worker.Worker
|
|
|
|
func init() {
|
|
Worker = worker.New()
|
|
go Worker.Start()
|
|
}
|
|
|
|
// API (/api) provides access to api documentation
|
|
func API(w http.ResponseWriter, r *http.Request) {
|
|
switch {
|
|
case r.Method == "GET":
|
|
templates := template.New("template")
|
|
_, err := templates.ParseFiles("templates/api-docs.html")
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
template.Must(templates, err).ExecuteTemplate(w, "base", nil)
|
|
}
|
|
}
|
|
|
|
// API (/api/reset) resets a user's API key
|
|
func API_Reset(w http.ResponseWriter, r *http.Request) {
|
|
switch {
|
|
case r.Method == "POST":
|
|
u := ctx.Get(r, "user").(models.User)
|
|
u.ApiKey = auth.GenerateSecureKey()
|
|
err := models.PutUser(&u)
|
|
if err != nil {
|
|
http.Error(w, "Error setting API Key", http.StatusInternalServerError)
|
|
} else {
|
|
writeJSON(w, models.Response{Success: true, Message: "API Key Successfully Reset", Data: u.ApiKey})
|
|
}
|
|
}
|
|
}
|
|
|
|
// API_Campaigns returns a list of campaigns if requested via GET.
|
|
// If requested via POST, API_Campaigns creates a new campaign and returns a reference to it.
|
|
func API_Campaigns(w http.ResponseWriter, r *http.Request) {
|
|
switch {
|
|
case r.Method == "GET":
|
|
cs, err := models.GetCampaigns(ctx.Get(r, "user_id").(int64))
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
writeJSON(w, cs)
|
|
//POST: Create a new campaign and return it as JSON
|
|
case r.Method == "POST":
|
|
c := models.Campaign{}
|
|
// Put the request into a campaign
|
|
err := json.NewDecoder(r.Body).Decode(&c)
|
|
if checkError(err, w, "Invalid Request", http.StatusBadRequest) {
|
|
return
|
|
}
|
|
if m, ok := models.ValidateCampaign(&c); !ok {
|
|
http.Error(w, "Error: "+m, http.StatusBadRequest)
|
|
return
|
|
}
|
|
// Fill in the details
|
|
c.CreatedDate = time.Now()
|
|
c.CompletedDate = time.Time{}
|
|
c.Status = models.QUEUED
|
|
c.UserId = ctx.Get(r, "user_id").(int64)
|
|
err = models.PostCampaign(&c, ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Cannot insert campaign into database", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
Worker.Queue <- &c
|
|
writeJSON(w, c)
|
|
}
|
|
}
|
|
|
|
// API_Campaigns_Id returns details about the requested campaign. If the campaign is not
|
|
// valid, API_Campaigns_Id returns null.
|
|
func API_Campaigns_Id(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
id, _ := strconv.ParseInt(vars["id"], 0, 64)
|
|
c, err := models.GetCampaign(id, ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Campaign not found", http.StatusNotFound) {
|
|
return
|
|
}
|
|
switch {
|
|
case r.Method == "GET":
|
|
writeJSON(w, c)
|
|
case r.Method == "DELETE":
|
|
err = models.DeleteCampaign(id)
|
|
if checkError(err, w, "Error deleting campaign", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, models.Response{Success: true, Message: "Campaign Deleted Successfully!"})
|
|
}
|
|
}
|
|
|
|
// API_Groups returns details about the requested group. If the campaign is not
|
|
// valid, API_Groups returns null.
|
|
// Example:
|
|
/*
|
|
POST /api/groups
|
|
{ "name" : "Test Group",
|
|
"targets" : [
|
|
{
|
|
"email" : "test@example.com"
|
|
},
|
|
{ "email" : test2@example.com"
|
|
}]
|
|
}
|
|
|
|
RESULT { "name" : "Test Group",
|
|
"targets" : [
|
|
{
|
|
"email" : "test@example.com"
|
|
},
|
|
{ "email" : test2@example.com"
|
|
}]
|
|
}
|
|
*/
|
|
func API_Groups(w http.ResponseWriter, r *http.Request) {
|
|
switch {
|
|
case r.Method == "GET":
|
|
gs, err := models.GetGroups(ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Groups not found", http.StatusNotFound) {
|
|
return
|
|
}
|
|
writeJSON(w, gs)
|
|
//POST: Create a new group and return it as JSON
|
|
case r.Method == "POST":
|
|
g := models.Group{}
|
|
// Put the request into a group
|
|
err := json.NewDecoder(r.Body).Decode(&g)
|
|
if checkError(err, w, "Invalid Request", http.StatusBadRequest) {
|
|
return
|
|
}
|
|
// Check to make sure targets were specified
|
|
if len(g.Targets) == 0 {
|
|
http.Error(w, "Error: No targets specified", http.StatusBadRequest)
|
|
return
|
|
}
|
|
g.ModifiedDate = time.Now()
|
|
g.UserId = ctx.Get(r, "user_id").(int64)
|
|
err = models.PostGroup(&g)
|
|
if checkError(err, w, "Error inserting group", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, g)
|
|
}
|
|
}
|
|
|
|
// API_Groups_Id returns details about the requested campaign. If the campaign is not
|
|
// valid, API_Campaigns_Id returns null.
|
|
func API_Groups_Id(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
id, _ := strconv.ParseInt(vars["id"], 0, 64)
|
|
g, err := models.GetGroup(id, ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Group not found", http.StatusNotFound) {
|
|
return
|
|
}
|
|
switch {
|
|
case r.Method == "GET":
|
|
writeJSON(w, g)
|
|
case r.Method == "DELETE":
|
|
err = models.DeleteGroup(&g)
|
|
if checkError(err, w, "Error deleting group", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, models.Response{Success: true, Message: "Group Deleted Successfully"})
|
|
case r.Method == "PUT":
|
|
g = models.Group{}
|
|
err = json.NewDecoder(r.Body).Decode(&g)
|
|
if g.Id != id {
|
|
http.Error(w, "Error: /:id and group_id mismatch", http.StatusBadRequest)
|
|
return
|
|
}
|
|
// Check to make sure targets were specified
|
|
if len(g.Targets) == 0 {
|
|
http.Error(w, "Error: No targets specified", http.StatusBadRequest)
|
|
return
|
|
}
|
|
g.ModifiedDate = time.Now()
|
|
g.UserId = ctx.Get(r, "user_id").(int64)
|
|
err = models.PutGroup(&g)
|
|
if checkError(err, w, "Error updating group", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, g)
|
|
}
|
|
}
|
|
|
|
func API_Templates(w http.ResponseWriter, r *http.Request) {
|
|
switch {
|
|
case r.Method == "GET":
|
|
ts, err := models.GetTemplates(ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Templates not found", http.StatusNotFound) {
|
|
return
|
|
}
|
|
writeJSON(w, ts)
|
|
//POST: Create a new template and return it as JSON
|
|
case r.Method == "POST":
|
|
t := models.Template{}
|
|
// Put the request into a template
|
|
err := json.NewDecoder(r.Body).Decode(&t)
|
|
if checkError(err, w, "Invalid Request", http.StatusBadRequest) {
|
|
return
|
|
}
|
|
t.ModifiedDate = time.Now()
|
|
t.UserId = ctx.Get(r, "user_id").(int64)
|
|
err = models.PostTemplate(&t)
|
|
if checkError(err, w, "Error inserting template", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, t)
|
|
}
|
|
}
|
|
|
|
func API_Templates_Id(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
id, _ := strconv.ParseInt(vars["id"], 0, 64)
|
|
t, err := models.GetTemplate(id, ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Template not found", http.StatusNotFound) {
|
|
return
|
|
}
|
|
switch {
|
|
case r.Method == "GET":
|
|
writeJSON(w, t)
|
|
case r.Method == "DELETE":
|
|
err = models.DeleteTemplate(id, ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Error deleting template", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, models.Response{Success: true, Message: "Template Deleted Successfully"})
|
|
case r.Method == "PUT":
|
|
t = models.Template{}
|
|
err = json.NewDecoder(r.Body).Decode(&t)
|
|
if t.Id != id {
|
|
http.Error(w, "Error: /:id and template_id mismatch", http.StatusBadRequest)
|
|
return
|
|
}
|
|
t.ModifiedDate = time.Now()
|
|
err = models.PutTemplate(&t, ctx.Get(r, "user_id").(int64))
|
|
if checkError(err, w, "Error updating group", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
writeJSON(w, t)
|
|
}
|
|
}
|
|
|
|
func writeJSON(w http.ResponseWriter, c interface{}) {
|
|
cj, err := json.MarshalIndent(c, "", " ")
|
|
if checkError(err, w, "Error creating JSON response", http.StatusInternalServerError) {
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
fmt.Fprintf(w, "%s", cj)
|
|
}
|