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  uint8[]  data;
24         public string content_type;
25         public int64 size; 
26          
27         public static Gee.HashMap<string,FakeServerCache> cache;
28         
29         public static FakeServerCache factory(string fname)
30         {
31             if (cache == null) {
32                 cache = new Gee.HashMap<string,FakeServerCache>();
33            }
34            // print ("CACHE look for ==%s==\n", fname);
35             if (cache.has_key(fname)) {
36                 print ("CACHE got  %s\n", fname);
37                 return cache.get(fname);
38             }
39             print ("CACHE create %s\n", fname);
40             
41             var el = new  FakeServerCache(fname);
42  
43             cache.set(fname, el);
44             return el;
45         }
46         // called onload to clear the temporary cached file..
47         public static void remove(string fname) {
48             if (cache == null) {
49                 return;
50             }
51             if (!cache.has_key(fname)) {
52                 return;
53             }
54             
55  
56             FakeServerCache v;
57  
58             cache.unset(fname, out v);
59             
60
61             
62         }
63         public static  void clear()
64         {
65             if (cache == null) {
66                 return;
67             }
68             cache.clear();
69         }
70     
71         public static FakeServerCache factory_with_data(string data) {
72              if (cache == null) {
73                 cache = new Gee.HashMap<string,FakeServerCache>();
74            }
75             var el = new  FakeServerCache.with_data(data);
76             print("CACHE - store %s\n", el.fname);
77              cache.set(el.fname, el);
78             return el;
79         }
80     
81         public FakeServerCache.with_data( string data ) {
82             this.fname = "/" + GLib.Checksum.compute_for_string(GLib.ChecksumType.MD5, data, data.length) + ".js";
83             this.data = data;
84             this.content_type = "text/javascript";
85             this.size= data.length;
86          
87           
88         }
89
90         public FakeServerCache( string fname ) {
91                
92                 this.fname = fname;
93
94
95             
96                 var  file = File.new_for_path ( GLib.Environment.get_home_dir() + "/gitlive" + fname);
97                 if (!file.query_exists()) {
98                     this.data = "";
99                     this.content_type = "";
100                     this.size = 0;
101                     return;
102                 }
103                  var info = file.query_info(
104                                  "standard::*",
105                                 FileQueryInfoFlags.NONE
106                 );
107             this.content_type = info.get_content_type();
108             this.size = info.get_size();
109             uint8[] data;
110             size_t length;
111             try { 
112                 GLib.FileUtils.get_data(file.get_path(), out data, out length);
113             } catch (Error e) {
114                 this.data = "".data;
115                 this.size = 0;
116                  this.content_type = "";
117                 return;
118             }
119
120             this.data = data;
121
122                 print("FakeServerCache :%s, %s (%s/%d)\n", fname , 
123                         this.content_type, this.size.to_string(), this.data.data.length);
124             
125
126         }
127
128  
129         public void run(WebKit.URISchemeRequest request, Cancellable? cancellable) 
130         {
131             var stream =  new GLib.MemoryInputStream.from_data (this.data.data,  GLib.free);
132             print("SEND %s\nwe", this.size.to_string()); 
133             
134                 request.finish(stream,
135                          this.size,
136                          this.content_type);
137                  
138             
139                 
140             return;
141              
142         }
143         
144     
145 }
146
147 public class FakeServer : Object
148 {
149         WebKit.WebView view;
150         
151         public FakeServer(WebKit.WebView wkview)
152         {
153                 this.view = wkview;
154                 
155                 
156                 // 
157                 
158                   
159         // Hook up signals.
160   
161         //this.view.resource_load_started.connect(on_resource_request_starting);
162         //this.view.navigation_policy_decision_requested.connect(on_navigation_policy_decision_requested);
163         //this.view.new_window_policy_decision_requested.connect(on_navigation_policy_decision_requested);
164           
165          //
166         var cx = WebKit.WebContext.get_default();
167         //var cx = this.view.get_context();
168         cx.register_uri_scheme("xhttp",  serve);
169         cx.set_cache_model (WebKit.CacheModel.DOCUMENT_VIEWER);
170
171         // these do not help for cross domain requests..
172             
173         //cx.get_security_manager().register_uri_scheme_as_cors_enabled("xhttp");
174         //cx.get_security_manager().register_uri_scheme_as_cors_enabled("http");
175     //cx.register_uri_scheme_as_cors_enabled("xhttp");
176        // = crash  cx.set_process_model (WebKit.ProcessModel.MULTIPLE_SECONDARY_PROCESSES );
177     }
178     
179     
180     public void serve(WebKit.URISchemeRequest request)
181     { 
182                 // request is URISchemeRequest
183                          
184                 print("REQ: %s\n",request.get_path());
185                 var cdata = FakeServerCache.factory(request.get_path());
186         
187                 if (cdata.size < 1 ) {
188                         print("Skip file missing = %s/gitlive%s\n", GLib.Environment.get_home_dir() , request.get_path());
189                         request.finish_error(new FakeServerError.FILE_DOES_NOT_EXIST ("My error msg"));
190                         return;
191                 }
192         
193                 print("Send :%s, %s (%s/%d)", request.get_path(), 
194                       cdata.content_type, cdata.size.to_string(), cdata.data.length);
195                 cdata.run(request,    null);
196                  
197         }
198
199    
200 }