src/Builder4/FakeServer.vala
[app.Builder.js] / src / Builder4 / FakeServer.vala
1 /**
2  * Originally this was supposed to intercept http calls and redirect them
3  * but that is not supported in webkit2 (without using the extension api)
4  * 
5  * so for now we have modified our server to serve use a base url of xhttp:
6  * 
7  * so all relative urls are based on that 
8  * 
9  * Idea is to serve the files from the file system, so no need to setup apache etc...
10  * This should work for the static content like css / javascript etc.. but 
11  * will cause issues with 'dynamic' xhr files (eg. the php stuff)
12  *
13  * the idea is nicked from geary.
14  * 
15  */
16 public errordomain FakeServerError {
17         FILE_DOES_NOT_EXIST
18 }
19
20 public class FakeServerCache : Object
21 {
22         public string fname;
23         public string data;
24         public string content_type;
25         public int64 size; 
26         public bool delete_after; 
27
28         public static Gee.HashMap<string,FakeServerCache> cache;
29         
30         public static FakeServerCache factory(string fname)
31         {
32             if (cache == null) {
33                 cache = new Gee.HashMap<string,FakeServerCache>();
34            }
35             if (cache.has_key(fname)) {
36                 return cache.get(fname);
37             }
38             var el = new  FakeServerCache(fname);
39  
40             cache.set(fname, el);
41             return el;
42         }
43
44         public static FakeServerCache factory_with_data(string data) {
45              if (cache == null) {
46                 cache = new Gee.HashMap<string,FakeServerCache>();
47            }
48             var el = new  FakeServerCache.with_data(data);
49              cache.set(el.fname, el);
50             return el;
51         }
52     
53         public FakeServerCache.with_data( string data ) {
54             this.fname = "/" + GLib.Checksum.compute_for_string(GLib.ChecksumType.MD5, data, data.length) + ".js";
55             this.data = data;
56             this.content_type = "text/javascript";
57             this.size= data.length;
58             this.delete_after = true;
59           
60         }
61
62         public FakeServerCache( string fname ) {
63                this.delete_after = false;
64                 this.fname = fname;
65
66
67             
68                 var  file = File.new_for_path ( GLib.Environment.get_home_dir() + "/gitlive" + fname);
69                 if (!file.query_exists()) {
70                     this.data = "";
71                     this.content_type = "";
72                     this.size = 0;
73                     return;
74                 }
75                  var info = file.query_info(
76                                  "standard::*",
77                                 FileQueryInfoFlags.NONE
78                 );
79             this.content_type = info.get_content_type();
80             this.size = info.get_size();
81             string data;
82             size_t length;
83             try { 
84                 GLib.FileUtils.get_contents(file.get_path(), out data, out length);
85             } catch (Error e) {
86                 this.data = "";
87                 this.size = 0;
88                  this.content_type = "";
89                 return;
90             }
91
92             this.data = data;
93
94             print("FakeServerCache :%s, %s (%s/%d)\n", fname , 
95                   this.content_type, this.size.to_string(), this.data.length);
96             
97
98         }
99
100  
101         public void run(WebKit.URISchemeRequest request, Cancellable? cancellable) 
102         {
103             var stream =  new GLib.MemoryInputStream.from_data (this.data.data,  GLib.free);
104                 request.finish(stream,
105                          this.size,
106                          this.content_type);
107                  
108             if (this.delete_after) { 
109                 FakeServerCache v;
110                 cache.unset(this.fname, out v);
111             }
112
113                 
114             return;
115              
116         }
117 }
118
119 public class FakeServer : Object
120 {
121         WebKit.WebView view;
122         
123         public FakeServer(WebKit.WebView wkview)
124         {
125                 this.view = wkview;
126                 
127                 
128                 // 
129                 
130                   
131         // Hook up signals.
132   
133         //this.view.resource_load_started.connect(on_resource_request_starting);
134         //this.view.navigation_policy_decision_requested.connect(on_navigation_policy_decision_requested);
135         //this.view.new_window_policy_decision_requested.connect(on_navigation_policy_decision_requested);
136           
137          //
138         var cx = WebKit.WebContext.get_default();
139         //var cx = this.view.get_context();
140         cx.register_uri_scheme("xhttp",  serve);
141         cx.set_cache_model (WebKit.CacheModel.DOCUMENT_VIEWER);
142        // = crash  cx.set_process_model (WebKit.ProcessModel.MULTIPLE_SECONDARY_PROCESSES );
143     }
144     
145     
146     public void serve(WebKit.URISchemeRequest request)
147     { 
148                 // request is URISchemeRequest
149                          
150                 print("REQ: %s\n",request.get_path());
151                 var cdata = FakeServerCache.factory(request.get_path());
152         
153                 if (cdata.size < 1 ) {
154                         print("Skip file missing = %s/gitlive%s\n", GLib.Environment.get_home_dir() , request.get_path());
155                         request.finish_error(new FakeServerError.FILE_DOES_NOT_EXIST ("My error msg"));
156                         return;
157                 }
158         
159                 print("Send :%s, %s (%s/%d)", request.get_path(), 
160                       cdata.content_type, cdata.size.to_string(), cdata.data.length);
161                 cdata.run(request,    null);
162                  
163         }
164
165    
166 }