| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 | 
							- // Copyright (C) 2014 The Syncthing Authors.
 
- //
 
- // This Source Code Form is subject to the terms of the Mozilla Public
 
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
 
- // You can obtain one at https://mozilla.org/MPL/2.0/.
 
- package api
 
- import (
 
- 	"fmt"
 
- 	"net/http"
 
- 	"os"
 
- 	"path/filepath"
 
- 	"strings"
 
- 	"time"
 
- 	"github.com/syncthing/syncthing/lib/api/auto"
 
- 	"github.com/syncthing/syncthing/lib/assets"
 
- 	"github.com/syncthing/syncthing/lib/config"
 
- 	"github.com/syncthing/syncthing/lib/sync"
 
- )
 
- const themePrefix = "theme-assets/"
 
- type staticsServer struct {
 
- 	assetDir        string
 
- 	assets          map[string]assets.Asset
 
- 	availableThemes []string
 
- 	mut             sync.RWMutex
 
- 	theme           string
 
- 	lastThemeChange time.Time
 
- }
 
- func newStaticsServer(theme, assetDir string) *staticsServer {
 
- 	s := &staticsServer{
 
- 		assetDir:        assetDir,
 
- 		assets:          auto.Assets(),
 
- 		mut:             sync.NewRWMutex(),
 
- 		theme:           theme,
 
- 		lastThemeChange: time.Now().UTC(),
 
- 	}
 
- 	seen := make(map[string]struct{})
 
- 	// Load themes from compiled in assets.
 
- 	for file := range auto.Assets() {
 
- 		theme := strings.Split(file, "/")[0]
 
- 		if _, ok := seen[theme]; !ok {
 
- 			seen[theme] = struct{}{}
 
- 			s.availableThemes = append(s.availableThemes, theme)
 
- 		}
 
- 	}
 
- 	if assetDir != "" {
 
- 		// Load any extra themes from the asset override dir.
 
- 		for _, dir := range dirNames(assetDir) {
 
- 			if _, ok := seen[dir]; !ok {
 
- 				seen[dir] = struct{}{}
 
- 				s.availableThemes = append(s.availableThemes, dir)
 
- 			}
 
- 		}
 
- 	}
 
- 	return s
 
- }
 
- func (s *staticsServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
 
- 	switch r.URL.Path {
 
- 	case "/themes.json":
 
- 		s.serveThemes(w, r)
 
- 	default:
 
- 		s.serveAsset(w, r)
 
- 	}
 
- }
 
- func (s *staticsServer) serveAsset(w http.ResponseWriter, r *http.Request) {
 
- 	w.Header().Set("Cache-Control", "no-cache, must-revalidate")
 
- 	file := r.URL.Path
 
- 	if file[0] == '/' {
 
- 		file = file[1:]
 
- 	}
 
- 	if len(file) == 0 {
 
- 		file = "index.html"
 
- 	}
 
- 	s.mut.RLock()
 
- 	theme := s.theme
 
- 	modificationTime := s.lastThemeChange
 
- 	s.mut.RUnlock()
 
- 	// If path starts with special prefix, get theme and file from path
 
- 	if strings.HasPrefix(file, themePrefix) {
 
- 		path := file[len(themePrefix):]
 
- 		i := strings.IndexRune(path, '/')
 
- 		if i == -1 {
 
- 			http.NotFound(w, r)
 
- 			return
 
- 		}
 
- 		theme = path[:i]
 
- 		file = path[i+1:]
 
- 	}
 
- 	// Check for an override for the current theme.
 
- 	if s.assetDir != "" {
 
- 		p := filepath.Join(s.assetDir, theme, filepath.FromSlash(file))
 
- 		if _, err := os.Stat(p); err == nil {
 
- 			mtype := assets.MimeTypeForFile(file)
 
- 			if len(mtype) != 0 {
 
- 				w.Header().Set("Content-Type", mtype)
 
- 			}
 
- 			http.ServeFile(w, r, p)
 
- 			return
 
- 		}
 
- 	}
 
- 	// Check for a compiled in asset for the current theme.
 
- 	as, ok := s.assets[theme+"/"+file]
 
- 	if !ok {
 
- 		// Check for an overridden default asset.
 
- 		if s.assetDir != "" {
 
- 			p := filepath.Join(s.assetDir, config.DefaultTheme, filepath.FromSlash(file))
 
- 			if _, err := os.Stat(p); err == nil {
 
- 				mtype := assets.MimeTypeForFile(file)
 
- 				if len(mtype) != 0 {
 
- 					w.Header().Set("Content-Type", mtype)
 
- 				}
 
- 				http.ServeFile(w, r, p)
 
- 				return
 
- 			}
 
- 		}
 
- 		// Check for a compiled in default asset.
 
- 		as, ok = s.assets[config.DefaultTheme+"/"+file]
 
- 		if !ok {
 
- 			http.NotFound(w, r)
 
- 			return
 
- 		}
 
- 	}
 
- 	as.Modified = modificationTime
 
- 	assets.Serve(w, r, as)
 
- }
 
- func (s *staticsServer) serveThemes(w http.ResponseWriter, r *http.Request) {
 
- 	sendJSON(w, map[string][]string{
 
- 		"themes": s.availableThemes,
 
- 	})
 
- }
 
- func (s *staticsServer) setTheme(theme string) {
 
- 	s.mut.Lock()
 
- 	s.theme = theme
 
- 	s.lastThemeChange = time.Now().UTC()
 
- 	s.mut.Unlock()
 
- }
 
- func (s *staticsServer) String() string {
 
- 	return fmt.Sprintf("staticsServer@%p", s)
 
- }
 
 
  |