package main /* Fun Times. This is to serve as a single utility that * can be an image server, that stores into a mongo backend, OR * the client side tool that pushes/pulls images to the running server. */ import ( "log" "labix.org/v2/mgo" "labix.org/v2/mgo/bson" goconf "git.corp.redhat.com/srv/git/dev/towers/engineering/go/conf.git" "net/http" "flag" "fmt" "path/filepath" "os" "strings" "time" //"errors" "mime" "crypto/md5" "hash/adler32" "io" ) var ( ConfigFile = fmt.Sprintf("%s/.imgsrv.conf", os.Getenv("HOME")) DefaultRunAsServer = false RunAsServer = DefaultRunAsServer DefaultServerIP = "0.0.0.0" ServerIP = DefaultServerIP DefaultServerPort = "7777" ServerPort = DefaultServerPort DefaultMongoHost = "localhost" MongoHost = DefaultMongoHost DefaultMongoDB = "filesrv" MongoDB = DefaultMongoDB MongoCollectionData = "data" MongoCollectionImages = "data" mongo_session *mgo.Session images_db *mgo.Database gfs *mgo.GridFS DefaultRemoteHost = "" RemoteHost = DefaultRemoteHost GetFile = "" PutFile = "" FileKeywords = "" ) type Info struct { Keywords []string // tags Ip string // who uploaded it } type File struct { Metadata Info ",omitempty" Md5 string ChunkSize int UploadDate time.Time Length int64 Filename string ",omitempty" ContentType string "contentType,omitempty" } /* Check whether this Image filename is on Mongo */ func hasImageByFilename(filename string) (exists bool, err error) { c, err := gfs.Find(bson.M{"filename": filename}).Count() if (err != nil) { return false, err } exists = (c > 0) return exists, nil } func hasImageByMd5(md5 string) (exists bool, err error) { c, err := gfs.Find(bson.M{"md5": md5 }).Count() if (err != nil) { return false, err } exists = (c > 0) return exists, nil } func hasImageByKeyword(keyword string) (exists bool, err error) { c, err := gfs.Find(bson.M{"metadata": bson.M{"keywords": keyword} }).Count() if (err != nil) { return false, err } exists = (c > 0) return exists, nil } func getImageByFilename(filename string) (this_file File, err error) { err = gfs.Find(bson.M{"filename":filename}).One(&this_file) if (err != nil) { return this_file, err } return this_file, nil } /* return a for a given filename and root is the relavtive base of the explicit link. */ func linkToFile(root string, filename string) (html string) { return fmt.Sprintf("%s", root, filename, filename) } /* return the sections of the URI Path. This will disregard the leading '/' */ func chunkURI(uri string) (chunks []string) { var str string if (uri[0] == '/') { str = uri[1:] } else { str = uri } return strings.Split(str, "/") } /* given an url.URL.RawQuery, get a dictionary in return */ func parseRawQuery(qry string) (params map[string]string) { qryChunks := strings.Split(qry, "&") params = make(map[string]string, len(qryChunks)) for _, chunk := range qryChunks { p := strings.SplitN(chunk, "=", 2) if (len(p) == 2) { params[p[0]] = p[1] } } return params } /* kindof a common log type output */ func LogRequest(r *http.Request, statusCode int) { var addr string var user_agent string user_agent = "" addr = r.RemoteAddr for k, v := range r.Header { if k == "User-Agent" { user_agent = strings.Join(v, " ") } if k == "X-Forwarded-For" { addr = strings.Join(v," ") } } fmt.Printf("%s - - [%s] \"%s %s\" \"%s\" %d %d\n", addr, time.Now(), r.Method, r.URL.Path, user_agent, statusCode, r.ContentLength ) } /* Convinience method for getting md5 sum of a string */ func getMd5FromString(blob string) (sum []byte) { h := md5.New() defer h.Reset() io.WriteString(h,blob) return h.Sum(nil) } /* Convinience method for getting md5 sum of some bytes */ func getMd5FromBytes(blob []byte) (sum []byte) { h := md5.New() defer h.Reset() h.Write(blob) return h.Sum(nil) } /* get a small, decently unique hash */ func getSmallHash() (small_hash string) { h := adler32.New() io.WriteString(h, fmt.Sprintf("%d", time.Now().Unix())) return fmt.Sprintf("%X", h.Sum(nil)) } func returnErr(w http.ResponseWriter, r *http.Request, e error) { LogRequest(r,503) fmt.Fprintf(w,"Error fetching image: %s", e) http.Error(w, "Service Unavailable", 503) return } /* GET /f/ GET /f/:name */ // Show a page of most recent images, and tags, and uploaders ... func routeFilesGET(w http.ResponseWriter, r *http.Request) { uriChunks := chunkURI(r.URL.Path) if ( len(uriChunks) > 2 ) { LogRequest(r,404) http.NotFound(w,r) return } if (len(uriChunks) == 2 && len(uriChunks[1]) > 0) { log.Printf("Searching for [%s] ...", uriChunks[1]) query := gfs.Find(bson.M{"filename": uriChunks[1] }) c, err := query.Count() // preliminary checks, if they've passed an image name if (err != nil) { returnErr(w,r,err) return } log.Printf("Results for [%s] = %d", uriChunks[1], c) if (c == 0) { LogRequest(r,404) http.NotFound(w,r) return } ext := filepath.Ext(uriChunks[1]) w.Header().Set("Content-Type", mime.TypeByExtension(ext)) w.Header().Set("Cache-Control", "max-age=315360000") w.WriteHeader(http.StatusOK) file, err := gfs.Open(uriChunks[1]) if (err != nil) { returnErr(w,r,err) return } io.Copy(w,file) // send the contents of the file in the body } else { // TODO show a list of recent uploads? ... } LogRequest(r,200) } /* POST /f/[:name][?k=v&k=v] */ // Create the file by the name in the path and/or parameter? // add keywords from the parameters // look for an image in the r.Body func routeFilesPOST(w http.ResponseWriter, r *http.Request) { uriChunks := chunkURI(r.URL.Path) if (len(uriChunks) > 2 && ((len(uriChunks) == 2 && len(uriChunks[1]) == 0) && len(r.URL.RawQuery) == 0 )) { LogRequest(r,403) http.Error(w, "Not Acceptable", 403) return } var filename string info := Info{ Ip: r.RemoteAddr, } if (len(uriChunks) == 2 && len(uriChunks[1]) != 0) { filename = uriChunks[1] } params := parseRawQuery(r.URL.RawQuery) var p_ext string for k,v := range params { switch { case (k == "filename"): filename = v case (k == "ext"): if (v[0] != '.') { p_ext = fmt.Sprintf(".%s", v) } else { p_ext = v } case (k == "k" || k == "key" || k == "keyword"): info.Keywords = append(info.Keywords[:], v) case (k == "keys" || k == "keywords"): for _, key := range strings.Split(v, ",") { info.Keywords = append(info.Keywords[:], key) } } } if (len(filename) == 0) { str := getSmallHash() if (len(p_ext) == 0) { filename = fmt.Sprintf("%s.jpg", str) } else { filename = fmt.Sprintf("%s%s", str, p_ext) } } exists, err := hasImageByFilename(filename) if (err == nil && !exists) { file, err := gfs.Create(filename) if (err != nil) { returnErr(w,r,err) return } n, err := io.Copy(file, r.Body) if (err != nil) { returnErr(w,r,err) return } if (n != r.ContentLength) { log.Printf("WARNING: [%s] content-length (%d), content written (%d)", filename, r.ContentLength, n) } file.Close() } else if (exists) { log.Printf("[%s] already exists", filename) } else { returnErr(w,r,err) return } io.WriteString(w, fmt.Sprintf("%s%s/f/%s\n", r.URL.Scheme, r.URL.Host, filename)) LogRequest(r,200) } func routeFilesPUT(w http.ResponseWriter, r *http.Request) { // update the file by the name in the path and/or parameter? // update/add keywords from the parameters // look for an image in the r.Body } func routeFilesDELETE(w http.ResponseWriter, r *http.Request) { // delete the name in the path and/or parameter? } func routeFiles(w http.ResponseWriter, r *http.Request) { switch { case r.Method == "GET": routeFilesGET(w,r) case r.Method == "PUT": routeFilesPUT(w,r) case r.Method == "POST": routeFilesPOST(w,r) case r.Method == "DELETE": routeFilesDELETE(w,r) default: LogRequest(r,404) http.NotFound(w,r) return } } func routeRoot(w http.ResponseWriter, r *http.Request) { if (r.Method != "GET") { LogRequest(r,404) http.NotFound(w,r) return } // Show a page of most recent images, and tags, and uploaders ... w.Header().Set("Content-Type", "text/html") var this_file File iter := gfs.Find(bson.M{"uploadDate": bson.M{"$gt": time.Now().Add(-time.Hour)}}).Limit(10).Iter() fmt.Fprintf(w, "