Public/Search-SEQuestion.ps1
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
Function Search-SEQuestion { <# .SYNOPSIS Search a StackExchange site for questions .DESCRIPTION Search a StackExchange site for questions .PARAMETER Title Text which must appear in returned questions' titles .PARAMETER Site StackExchange site. Default is stackoverflow .PARAMETER Tag Search by tag Limited to 5 tags .PARAMETER ExcludeTag Exclude questions with these tags Limited to 5 tags .PARAMETER BodyText Text which must appear in returned questions' bodies .PARAMETER Closed True to return only closed questions, false to return only open ones. .PARAMETER Answers The minimum number of answers returned questions must have .PARAMETER Accepted True to return only questions with accepted answers, false to return only those without. .PARAMETER Views The minimum number of views returned questions must have .PARAMETER Text A free form text parameter, will match all question properties based on an undocumented algorithm .PARAMETER User The id of the user who must own the questions returned .PARAMETER URL A url which must be contained in a post, may include a wildcard .PARAMETER FromDate Return only questions posted after this date .PARAMETER ToDate Return only questions posted before this date .PARAMETER Order Ascending or Descending .PARAMETER Sort Sorting method: activity: last_activity_date creation: creation_date votes: score relevance: matches the relevance tab on the site itself .PARAMETER Uri The base Uri for the StackExchange API. Default: https://api.stackexchange.com .PARAMETER Version The StackExchange API version to use. .PARAMETER PageSize Items to retrieve per query. Defaults to 30 .PARAMETER MaxResults Maximum number of items to return. Defaults to 100 Specify $null or 0 to set this to the maximum value .PARAMETER Body Hash table with query options for specific object These don't appear to be case sensitive Example for recent powershell activity: -Body @{ site = 'stackoverflow' tagged = 'powershell' order = 'desc' sort = 'activity' } .FUNCTIONALITY StackExchange .EXAMPLE Search-SEQuestion -Title Citrix -Tag PowerShell # Search for questions with Citrix in the title # Posted on stackoverflow (default) # Tagged PowerShell .EXAMPLE Search-SEQuestion -User 105072 ` -Site ServerFault ` -ExcludeTag 'windows-server-2008-r2' ` -Title PowerShell # Search for questions from ServerFault User with ID 105072 # On the ServerFault site # Excluding anything tagged with server 2008 r2 # Including items with PowerShell in the title .EXAMPLE Search-SEQuestion -URL *github.com/RamblingCookieMonster/* # Search for questions including the partial URL github.com/RamblingCookieMonster/ # Posted on stackoverflow (default) # If you post code on the internet, this is a great way to see if folks are having trouble with it .EXAMPLE Search-SEQuestion -Tag PowerShell -Accepted $False -Sort Creation -MaxResults 20 | Out-GridView -PassThru | Foreach { & 'C:\Program Files\Internet Explorer\iexplore.exe' $_.link } # Search for questions tagged PowerShell # Posted on stackoverflow (default) # That do not have an accepted answer # sorted by creation date # Limited to the first 20 results # Send output to a gridview # Open the selected questions in IE .EXAMPLE Search-SEQuestion -Title 'system.dbnull' -tag powershell | Get-SEAnswer # Search for a question tagged PowerShell, with System.DBNull in the title # Get the answers for any questions that come back .LINK http://ramblingcookiemonster.github.io/Building-A-PowerShell-Module .LINK https://github.com/RamblingCookieMonster/PSStackExchange .LINK https://api.stackexchange.com/docs/advanced-search .LINK https://api.stackexchange.com/docs/questions .LINK Get-SEAnswer .LINK Get-SEQuestion .LINK Get-SEObject #> [cmdletbinding()] param( [string]$Title, [string]$Site = 'stackoverflow', [ValidateCount(0,5)] [string[]]$Tag, [ValidateCount(0,5)] [string[]]$ExcludeTag, [string]$BodyText, [bool]$Closed, [int]$Answers, [bool]$Accepted, [int]$Views, [string]$Text, [string]$User, [string]$URL, [datetime]$FromDate, [datetime]$ToDate, [ValidateSet('asc', 'desc')] [string]$Order, [ValidateSet('Activity', 'Creation', 'Votes', 'Relevance')] [string]$Sort, [string]$Uri = 'https://api.stackexchange.com', [string]$Version = "2.2", [ValidateRange(1,100)][int]$PageSize = 30, [int]$MaxResults = 100, [Hashtable]$Body = @{} ) # This code basically wraps a call to Get-SEObject function # Build up the URI [string]$Object = "search/advanced" # Build up the CGI # We override existing items in body if($Title) { $Body.title = $Title } if($Tag) { $Body.tagged = $Tag -Join ';' } if($ExcludeTag) { $Body.nottagged = $ExcludeTag -Join ';' } if($Text) { $Body.q = $Text } if($User) { $Body.user = $User } if($BodyText) {$Body.body = $BodyText} if($URL) { $Body.url = $URL } if($FromDate) { $Body.FromDate = ConvertTo-UnixDate -Date $FromDate} if($ToDate) { $Body.ToDate = ConvertTo-UnixDate -Date $ToDate } if($PSBoundParameters.ContainsKey('accepted')) { $Body.accepted = $Accepted } if($PSBoundParameters.ContainsKey('answers')) { $Body.answers = $Answers } if($PSBoundParameters.ContainsKey('closed')) { $Body.closed = $Closed } if($PSBoundParameters.ContainsKey('views ')) { $Body.views = $views } if($PSBoundParameters.ContainsKey('closed')) { $Body.closed = $Closed } if($Sort) { $Body.Sort = $Sort } if($Order){ $Body.Order = $Order } $Body.site = $Site # Build up Get-StackObject parameters $GSOParams = @{ Object = $Object Uri = $Uri Version = $Version Pagesize = $PageSize MaxResults = $MaxResults } if($Body.Keys.Count -gt 0) {$GSOParams.Body = $Body } Write-Debug ( "Running $($MyInvocation.MyCommand).`n" + "PSBoundParameters:`n$($PSBoundParameters | Format-List | Out-String)" + "Get-SEObject parameters:`n$($GSOParams | Format-List | Out-String)" ) Try { #Get the data from StackExchange Get-SEObject @GSOParams | ForEach-Object { #Add formatting and convert dates to expected format Add-ObjectDetail -InputObject $_ -TypeName 'PSStackExchange.Question' -PropertyToAdd @{ CreationDate = ConvertFrom-UnixDate -Date $_.creation_date LastActivityDate = ConvertFrom-UnixDate -Date $_.last_activity_date LastEditDate = ConvertFrom-UnixDate -Date $_.last_edit_date SESite = $Site } } } Catch { Throw $_ } } |