mirror of https://github.com/jlelse/GoBlog
Simple blogging system written in Go
https://goblog.app
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
package main |
|
|
|
import "strings" |
|
|
|
func (a *goBlog) getRelativePath(blog, path string) string { |
|
// Get blog |
|
bc := a.cfg.Blogs[blog] |
|
if bc == nil { |
|
return "" |
|
} |
|
// Get relative path |
|
return bc.getRelativePath(path) |
|
} |
|
|
|
func (blog *configBlog) getRelativePath(path string) string { |
|
// Check if path is absolute |
|
if !strings.HasPrefix(path, "/") { |
|
path = "/" + path |
|
} |
|
// Check if blog uses subpath |
|
if blog.Path != "" && blog.Path != "/" { |
|
// Check if path is root |
|
if path == "/" { |
|
path = blog.Path |
|
} else { |
|
path = blog.Path + path |
|
} |
|
} |
|
return path |
|
} |
|
|
|
func (a *goBlog) getFullAddress(path string) string { |
|
// Call method with just the relevant config |
|
return a.cfg.Server.getFullAddress(path) |
|
} |
|
|
|
func (cfg *configServer) getFullAddress(path string) string { |
|
// Check if it is already an absolute URL |
|
if isAbsoluteURL(path) { |
|
return path |
|
} |
|
// Remove trailing slash |
|
pa := strings.TrimSuffix(cfg.PublicAddress, "/") |
|
// Check if path is root => blank path |
|
if path == "/" { |
|
path = "" |
|
} |
|
return pa + path |
|
} |
|
|
|
// Rendering funcs |
|
|
|
func (blog *configBlog) RelativePath(path string) string { |
|
return blog.getRelativePath(path) |
|
}
|
|
|