Created
December 5, 2018 16:33
-
-
Save nest-don/643a99c5e97896a8e3d6a1a61c39c818 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<SearchResult> SearchAsync(SearchQuery query) | |
{ | |
string baseUrl = "https://api.bitbucket.org/2.0/teams/%7B6f461d1e-a3dd-433b-a0e3-7a69daf6ea47%7D/search/code?search_query="+ | |
HttpUtility.UrlEncode(query.Text); | |
SearchResult result = new SearchResult(); | |
using (HttpClient client = new HttpClient()) | |
{ | |
client.DefaultRequestHeaders.Add("User-Agent", "nest-don"); | |
//Setting up the response... | |
using (HttpResponseMessage res = await client.GetAsync(baseUrl)) | |
{ | |
using (HttpContent content = res.Content) | |
{ | |
string data = await content.ReadAsStringAsync(); | |
if (data != null) | |
{ | |
result.SearchQueryId = query.Id; | |
result.Service = "bitbucket"; | |
result.HandledBy = _runtime.ComponentId; | |
result.Data = data; | |
return CacheResult(result); | |
} | |
} | |
} | |
} | |
return null; | |
} | |
private SearchResult CacheResult(SearchResult searchResult) | |
{ | |
byte[] result = _cache.Call("CacheResult", Encoding.UTF8.GetBytes( | |
JsonConvert.SerializeObject(searchResult))); | |
return JsonConvert.DeserializeObject<SearchResult>( | |
Encoding.UTF8.GetString(result)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment