summary refs log tree commit diff stats
path: root/doc/pydoc/test.tc_bookmarks.html
Commit message (Collapse)AuthorAgeFilesLines
* updated pydochut2010-03-121-1/+14
|
* incremented version number and updated pydoc html files v1.0.3hut2010-02-161-149/+48
|
* updated pydoc documentationhut2010-01-021-0/+304
t'>
df1d1ef ^


37be25f ^
df1d1ef ^






d8e4c8a ^
df1d1ef ^



c896e6b ^


df1d1ef ^
55c8ffa ^
d8e4c8a ^
df1d1ef ^





4f0847b ^
6c1b09b ^
df1d1ef ^
db1dc5d ^
d8e4c8a ^
df1d1ef ^



bce5265 ^
6c1b09b ^
df1d1ef ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
                                                      














                                                             
                                                                  

                      
 


                                       
                                                       






                                                           
                                                                       



                           


                                                                           
 
                                                                            
                                                                                    





                              
                                                                 
                                                
 
                                                                                 
                                                                        



                      
                                                         
                       
 
package svc // import "github.com/getwtxt/getwtxt/svc"

import (
	"fmt"
	"net/http"

	"github.com/getwtxt/registry"
)

// Requests to apiEndpointPOSTHandler are passed off to this
// function. apiPostUser then fetches the twtxt data, then if
// it's an individual user's file, adds it. If it's registry
// output, it scrapes the users/urls/statuses from the remote
// registry before adding each user to the local cache.
func apiPostUser(w http.ResponseWriter, r *http.Request) {
	if err := r.ParseForm(); err != nil {
		log400(w, r, "Error Parsing Values: "+err.Error())
		return
	}

	nick := r.FormValue("nickname")
	urls := r.FormValue("url")
	if nick == "" || urls == "" {
		log400(w, r, "Nickname or URL missing")
		return
	}

	uip := getIPFromCtx(r.Context())

	out, remoteRegistry, err := registry.GetTwtxt(urls)
	if err != nil {
		log400(w, r, "Error Fetching twtxt Data: "+err.Error())
		return
	}

	if remoteRegistry {
		remoteRegistries.Mu.Lock()
		remoteRegistries.List = append(remoteRegistries.List, urls)
		remoteRegistries.Mu.Unlock()

		if err := twtxtCache.CrawlRemoteRegistry(urls); err != nil {
			log400(w, r, "Error Crawling Remote Registry: "+err.Error())
			return
		}
		log200(r)
		return
	}

	statuses, err := registry.ParseUserTwtxt(out, nick, urls)
	errLog("Error Parsing User Data: ", err)

	if err := twtxtCache.AddUser(nick, urls, "", uip, statuses); err != nil {
		log400(w, r, "Error Adding User to Cache: "+err.Error())
		return
	}

	log200(r)
	_, err = w.Write([]byte(fmt.Sprintf("200 OK\n")))
	errLog("", err)
}