42b9f27c45
Error pages now use routes.renderTemplate bringing them in line with the other standard routes. Every route should use a renderTemplate function now instead of calling RunTmpl. Merged some pi and renderTemplate lines in routes to reduce the amount of vertical space used.
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package routes
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
c "github.com/Azareal/Gosora/common"
|
|
"github.com/Azareal/Gosora/common/phrases"
|
|
)
|
|
|
|
func IPSearch(w http.ResponseWriter, r *http.Request, user c.User, header *c.Header) c.RouteError {
|
|
header.Title = phrases.GetTitlePhrase("ip_search")
|
|
// TODO: How should we handle the permissions if we extend this into an alt detector of sorts?
|
|
if !user.Perms.ViewIPs {
|
|
return c.NoPermissions(w, r, user)
|
|
}
|
|
|
|
// TODO: Reject IP Addresses with illegal characters
|
|
var ip = c.SanitiseSingleLine(r.FormValue("ip"))
|
|
uids, err := c.IPSearch.Lookup(ip)
|
|
if err != nil {
|
|
return c.InternalError(err, w, r)
|
|
}
|
|
|
|
// TODO: What if a user is deleted via the Control Panel? We'll cross that bridge when we come to it, although we might lean towards blanking the account and removing the related data rather than purging it
|
|
userList, err := c.Users.BulkGetMap(uids)
|
|
if err != nil {
|
|
return c.InternalError(err, w, r)
|
|
}
|
|
return renderTemplate("ip_search", w, r, header, c.IPSearchPage{header, userList, ip})
|
|
}
|