2013-09-29 02:09:03 -04:00
|
|
|
// Copyright © 2013 Steve Francia <spf@spf13.com>.
|
|
|
|
//
|
|
|
|
// Licensed under the Simple Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://opensource.org/licenses/Simple-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-05-15 15:07:46 -04:00
|
|
|
"net"
|
2013-09-29 02:09:03 -04:00
|
|
|
"net/http"
|
2014-08-22 07:59:59 -04:00
|
|
|
"net/url"
|
2014-01-26 04:48:00 -05:00
|
|
|
"os"
|
2013-09-29 02:09:03 -04:00
|
|
|
"strconv"
|
2013-11-22 00:28:05 -05:00
|
|
|
"strings"
|
2014-03-31 13:23:34 -04:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2014-04-05 01:26:43 -04:00
|
|
|
"github.com/spf13/hugo/helpers"
|
2014-03-31 13:23:34 -04:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2014-04-05 01:26:43 -04:00
|
|
|
"github.com/spf13/viper"
|
2013-09-29 02:09:03 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
var serverPort int
|
|
|
|
var serverWatch bool
|
2013-12-28 14:37:44 -05:00
|
|
|
var serverAppend bool
|
2014-05-16 17:49:27 -04:00
|
|
|
var disableLiveReload bool
|
2013-09-29 02:09:03 -04:00
|
|
|
|
2014-05-16 17:49:27 -04:00
|
|
|
//var serverCmdV *cobra.Command
|
2013-09-29 02:09:03 -04:00
|
|
|
|
|
|
|
var serverCmd = &cobra.Command{
|
|
|
|
Use: "server",
|
2014-07-27 02:43:21 -04:00
|
|
|
Short: "Hugo runs its own webserver to render the files",
|
|
|
|
Long: `Hugo is able to run its own high performance web server.
|
2013-09-29 02:09:03 -04:00
|
|
|
Hugo will render all the files defined in the source directory and
|
|
|
|
Serve them up.`,
|
2014-05-16 17:49:27 -04:00
|
|
|
//Run: server,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
serverCmd.Flags().IntVarP(&serverPort, "port", "p", 1313, "port to run the server on")
|
|
|
|
serverCmd.Flags().BoolVarP(&serverWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed")
|
|
|
|
serverCmd.Flags().BoolVarP(&serverAppend, "appendPort", "", true, "append port to baseurl")
|
|
|
|
serverCmd.Flags().BoolVar(&disableLiveReload, "disableLiveReload", false, "watch without enabling live browser reload on rebuild")
|
|
|
|
serverCmd.Run = server
|
2013-09-29 02:09:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func server(cmd *cobra.Command, args []string) {
|
|
|
|
InitializeConfig()
|
|
|
|
|
2014-05-16 17:49:27 -04:00
|
|
|
if cmd.Flags().Lookup("disableLiveReload").Changed {
|
|
|
|
viper.Set("DisableLiveReload", disableLiveReload)
|
|
|
|
}
|
|
|
|
|
|
|
|
if serverWatch {
|
|
|
|
viper.Set("Watch", true)
|
|
|
|
}
|
|
|
|
|
2014-05-15 15:07:46 -04:00
|
|
|
l, err := net.Listen("tcp", ":"+strconv.Itoa(serverPort))
|
|
|
|
if err == nil {
|
|
|
|
l.Close()
|
|
|
|
} else {
|
|
|
|
jww.ERROR.Println("port", serverPort, "already in use, attempting to use an available port")
|
|
|
|
sp, err := helpers.FindAvailablePort()
|
|
|
|
if err != nil {
|
|
|
|
jww.ERROR.Println("Unable to find alternative port to use")
|
|
|
|
jww.ERROR.Fatalln(err)
|
|
|
|
}
|
|
|
|
serverPort = sp.Port
|
|
|
|
}
|
|
|
|
|
2014-05-28 19:01:24 -04:00
|
|
|
viper.Set("port", serverPort)
|
|
|
|
|
2014-08-22 07:59:59 -04:00
|
|
|
BaseUrl, err := fixUrl(BaseUrl)
|
|
|
|
if err != nil {
|
|
|
|
jww.ERROR.Fatal(err)
|
2014-01-29 17:50:31 -05:00
|
|
|
}
|
2014-08-22 07:59:59 -04:00
|
|
|
viper.Set("BaseUrl", BaseUrl)
|
2013-11-22 00:28:05 -05:00
|
|
|
|
2013-10-25 18:03:14 -04:00
|
|
|
build(serverWatch)
|
2013-10-09 18:24:40 -04:00
|
|
|
|
2013-09-29 02:09:03 -04:00
|
|
|
// Watch runs its own server as part of the routine
|
|
|
|
if serverWatch {
|
2014-04-05 01:26:43 -04:00
|
|
|
jww.FEEDBACK.Println("Watching for changes in", helpers.AbsPathify(viper.GetString("ContentDir")))
|
2013-09-30 22:38:32 -04:00
|
|
|
err := NewWatcher(serverPort)
|
2013-09-29 02:09:03 -04:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
serve(serverPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
func serve(port int) {
|
2014-04-05 01:26:43 -04:00
|
|
|
jww.FEEDBACK.Println("Serving pages from " + helpers.AbsPathify(viper.GetString("PublishDir")))
|
2014-05-08 21:23:26 -04:00
|
|
|
jww.FEEDBACK.Printf("Web Server is available at %s\n", viper.GetString("BaseUrl"))
|
2013-09-29 02:09:03 -04:00
|
|
|
fmt.Println("Press ctrl+c to stop")
|
2014-01-26 04:48:00 -05:00
|
|
|
|
2014-08-22 07:59:59 -04:00
|
|
|
fileserver := http.FileServer(http.Dir(helpers.AbsPathify(viper.GetString("PublishDir"))))
|
|
|
|
|
|
|
|
u, err := url.Parse(viper.GetString("BaseUrl"))
|
|
|
|
if err != nil {
|
|
|
|
jww.ERROR.Fatalf("Invalid BaseUrl: %s", err)
|
|
|
|
}
|
|
|
|
if u.Path == "" || u.Path == "/" {
|
|
|
|
http.Handle("/", fileserver)
|
|
|
|
} else {
|
|
|
|
http.Handle(u.Path+"/", http.StripPrefix(u.Path+"/", fileserver))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = http.ListenAndServe(":"+strconv.Itoa(port), nil)
|
2014-01-26 04:48:00 -05:00
|
|
|
if err != nil {
|
2014-03-31 13:23:34 -04:00
|
|
|
jww.ERROR.Printf("Error: %s\n", err.Error())
|
2014-01-26 04:48:00 -05:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
2013-09-29 02:09:03 -04:00
|
|
|
}
|
2014-08-22 07:59:59 -04:00
|
|
|
|
|
|
|
func fixUrl(s string) (string, error) {
|
|
|
|
useLocalhost := false
|
|
|
|
if s == "" {
|
|
|
|
s = viper.GetString("BaseUrl")
|
|
|
|
useLocalhost = true
|
|
|
|
}
|
|
|
|
if !strings.HasPrefix(s, "http://") {
|
|
|
|
s = "http://" + s
|
|
|
|
}
|
|
|
|
u, err := url.Parse(s)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if serverAppend {
|
|
|
|
if useLocalhost {
|
|
|
|
u.Host = fmt.Sprintf("localhost:%d", serverPort)
|
|
|
|
return u.String(), nil
|
|
|
|
}
|
|
|
|
host := u.Host
|
|
|
|
if strings.Contains(host, ":") {
|
|
|
|
host, _, err = net.SplitHostPort(u.Host)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("Failed to split BaseUrl hostpost: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
u.Host = fmt.Sprintf("%s:%d", host, serverPort)
|
|
|
|
return u.String(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if useLocalhost {
|
|
|
|
u.Host = "localhost"
|
|
|
|
}
|
|
|
|
return u.String(), nil
|
|
|
|
}
|