File size: 18,090 Bytes
8c763fb | 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Management.Automation.Runspaces;
using System.Text;
using Dbg = System.Management.Automation.Diagnostics;
namespace System.Management.Automation
{
/// <summary>
/// Class BaseCommandHelpInfo provides common functionality for
/// extracting information from FullHelp property.
/// </summary>
internal abstract class BaseCommandHelpInfo : HelpInfo
{
internal BaseCommandHelpInfo(HelpCategory helpCategory)
: base()
{
HelpCategory = helpCategory;
}
#region Basic Help Properties
internal PSObject Details
{
get
{
if (this.FullHelp == null)
return null;
if (this.FullHelp.Properties["Details"] == null ||
this.FullHelp.Properties["Details"].Value == null)
{
return null;
}
return PSObject.AsPSObject(this.FullHelp.Properties["Details"].Value);
}
}
/// <summary>
/// Name of command.
/// </summary>
/// <value>Name of command</value>
internal override string Name
{
get
{
PSObject commandDetails = this.Details;
if (commandDetails == null)
{
return string.Empty;
}
if (commandDetails.Properties["Name"] == null ||
commandDetails.Properties["Name"].Value == null)
{
return string.Empty;
}
string name = commandDetails.Properties["Name"].Value.ToString();
if (name == null)
return string.Empty;
return name.Trim();
}
}
/// <summary>
/// Synopsis for this command help.
/// </summary>
/// <value>Synopsis for this command help</value>
internal override string Synopsis
{
get
{
PSObject commandDetails = this.Details;
if (commandDetails == null)
{
return string.Empty;
}
if (commandDetails.Properties["Description"] == null ||
commandDetails.Properties["Description"].Value == null)
{
return string.Empty;
}
object[] synopsisItems = (object[])LanguagePrimitives.ConvertTo(
commandDetails.Properties["Description"].Value,
typeof(object[]),
CultureInfo.InvariantCulture);
if (synopsisItems == null || synopsisItems.Length == 0)
{
return string.Empty;
}
PSObject firstSynopsisItem = synopsisItems[0] == null ? null : PSObject.AsPSObject(synopsisItems[0]);
if (firstSynopsisItem == null ||
firstSynopsisItem.Properties["Text"] == null ||
firstSynopsisItem.Properties["Text"].Value == null)
{
return string.Empty;
}
string synopsis = firstSynopsisItem.Properties["Text"].Value.ToString();
if (synopsis == null)
{
return string.Empty;
}
return synopsis.Trim();
}
}
/// <summary>
/// Help category for this command help, which is constantly HelpCategory.Command.
/// </summary>
/// <value>Help category for this command help</value>
internal override HelpCategory HelpCategory { get; }
/// <summary>
/// Returns the Uri used by get-help cmdlet to show help
/// online. Returns only the first uri found under
/// RelatedLinks.
/// </summary>
/// <returns>
/// Null if no Uri is specified by the helpinfo or a
/// valid Uri.
/// </returns>
/// <exception cref="InvalidOperationException">
/// Specified Uri is not valid.
/// </exception>
internal override Uri GetUriForOnlineHelp()
{
Uri result = null;
UriFormatException uriFormatException = null;
try
{
result = GetUriFromCommandPSObject(this.FullHelp);
if (result != null)
{
return result;
}
}
catch (UriFormatException urie)
{
uriFormatException = urie;
}
// else get uri from CommandInfo HelpUri attribute
result = this.LookupUriFromCommandInfo();
if (result != null)
{
return result;
}
else if (uriFormatException != null)
{
throw uriFormatException;
}
return base.GetUriForOnlineHelp();
}
internal Uri LookupUriFromCommandInfo()
{
CommandTypes cmdTypesToLookFor = CommandTypes.Cmdlet;
switch (this.HelpCategory)
{
case Automation.HelpCategory.Cmdlet:
cmdTypesToLookFor = CommandTypes.Cmdlet;
break;
case Automation.HelpCategory.Function:
cmdTypesToLookFor = CommandTypes.Function;
break;
case Automation.HelpCategory.ScriptCommand:
cmdTypesToLookFor = CommandTypes.Script;
break;
case Automation.HelpCategory.ExternalScript:
cmdTypesToLookFor = CommandTypes.ExternalScript;
break;
case Automation.HelpCategory.Filter:
cmdTypesToLookFor = CommandTypes.Filter;
break;
case Automation.HelpCategory.Configuration:
cmdTypesToLookFor = CommandTypes.Configuration;
break;
default:
return null;
}
string commandName = this.Name;
string moduleName = string.Empty;
if (this.FullHelp.Properties["ModuleName"] != null)
{
PSNoteProperty moduleNameNP = this.FullHelp.Properties["ModuleName"] as PSNoteProperty;
if (moduleNameNP != null)
{
LanguagePrimitives.TryConvertTo<string>(moduleNameNP.Value, CultureInfo.InvariantCulture,
out moduleName);
}
}
string commandToSearch = commandName;
if (!string.IsNullOrEmpty(moduleName))
{
commandToSearch = string.Create(CultureInfo.InvariantCulture, $"{moduleName}\\{commandName}");
}
ExecutionContext context = LocalPipeline.GetExecutionContextFromTLS();
if (context == null)
{
return null;
}
try
{
CommandInfo cmdInfo = null;
if (cmdTypesToLookFor == CommandTypes.Cmdlet)
{
cmdInfo = context.SessionState.InvokeCommand.GetCmdlet(commandToSearch);
}
else
{
cmdInfo = context.SessionState.InvokeCommand.GetCommands(commandToSearch, cmdTypesToLookFor, false).FirstOrDefault();
}
if ((cmdInfo == null) || (cmdInfo.CommandMetadata == null))
{
return null;
}
string uriString = cmdInfo.CommandMetadata.HelpUri;
if (!string.IsNullOrEmpty(uriString))
{
if (!System.Uri.IsWellFormedUriString(uriString, UriKind.RelativeOrAbsolute))
{
// WinBlue: 545315 Online help links are broken with localized help
// Example: https://go.microsoft.com/fwlink/?LinkID=113324 (moglicherwei se auf Englisch)
// Split the string based on <s> (space). We decided to go with this approach as
// UX localization authors use spaces. Correctly extracting only the wellformed URI
// is out-of-scope for this fix.
string[] tempUriSplitArray = uriString.Split(' ');
uriString = tempUriSplitArray[0];
}
try
{
return new System.Uri(uriString);
// return only the first Uri (ignore other uris)
}
catch (UriFormatException)
{
throw PSTraceSource.NewInvalidOperationException(HelpErrors.InvalidURI,
cmdInfo.CommandMetadata.HelpUri);
}
}
}
catch (CommandNotFoundException)
{
}
return null;
}
internal static Uri GetUriFromCommandPSObject(PSObject commandFullHelp)
{
// this object knows Maml format...
// So retrieve Uri information as per the format..
if ((commandFullHelp == null) ||
(commandFullHelp.Properties["relatedLinks"] == null) ||
(commandFullHelp.Properties["relatedLinks"].Value == null))
{
// return the default..
return null;
}
PSObject relatedLinks = PSObject.AsPSObject(commandFullHelp.Properties["relatedLinks"].Value);
if (relatedLinks.Properties["navigationLink"] == null)
{
return null;
}
object[] navigationLinks = (object[])LanguagePrimitives.ConvertTo(
relatedLinks.Properties["navigationLink"].Value,
typeof(object[]),
CultureInfo.InvariantCulture);
foreach (object navigationLinkAsObject in navigationLinks)
{
if (navigationLinkAsObject == null)
{
continue;
}
PSObject navigationLink = PSObject.AsPSObject(navigationLinkAsObject);
PSNoteProperty uriNP = navigationLink.Properties["uri"] as PSNoteProperty;
if (uriNP != null)
{
string uriString = string.Empty;
LanguagePrimitives.TryConvertTo<string>(uriNP.Value, CultureInfo.InvariantCulture, out uriString);
if (!string.IsNullOrEmpty(uriString))
{
if (!System.Uri.IsWellFormedUriString(uriString, UriKind.RelativeOrAbsolute))
{
// WinBlue: 545315 Online help links are broken with localized help
// Example: https://go.microsoft.com/fwlink/?LinkID=113324 (moglicherwei se auf Englisch)
// Split the string based on <s> (space). We decided to go with this approach as
// UX localization authors use spaces. Correctly extracting only the wellformed URI
// is out-of-scope for this fix.
string[] tempUriSplitArray = uriString.Split(' ');
uriString = tempUriSplitArray[0];
}
try
{
return new System.Uri(uriString);
// return only the first Uri (ignore other uris)
}
catch (UriFormatException)
{
throw PSTraceSource.NewInvalidOperationException(HelpErrors.InvalidURI, uriString);
}
}
}
}
return null;
}
/// <summary>
/// Returns true if help content in help info matches the
/// pattern contained in <paramref name="pattern"/>.
/// The underlying code will usually run pattern.IsMatch() on
/// content it wants to search.
/// Cmdlet help info looks for pattern in Synopsis and
/// DetailedDescription.
/// </summary>
/// <param name="pattern"></param>
/// <returns></returns>
internal override bool MatchPatternInContent(WildcardPattern pattern)
{
Dbg.Assert(pattern != null, "pattern cannot be null");
string synopsis = Synopsis;
string detailedDescription = DetailedDescription;
synopsis ??= string.Empty;
detailedDescription ??= string.Empty;
return pattern.IsMatch(synopsis) || pattern.IsMatch(detailedDescription);
}
/// <summary>
/// Returns help information for a parameter(s) identified by pattern.
/// </summary>
/// <param name="pattern">Pattern to search for parameters.</param>
/// <returns>A collection of parameters that match pattern.</returns>
internal override PSObject[] GetParameter(string pattern)
{
// this object knows Maml format...
// So retrieve parameter information as per the format..
if ((this.FullHelp == null) ||
(this.FullHelp.Properties["parameters"] == null) ||
(this.FullHelp.Properties["parameters"].Value == null))
{
// return the default..
return base.GetParameter(pattern);
}
PSObject prmts = PSObject.AsPSObject(this.FullHelp.Properties["parameters"].Value);
if (prmts.Properties["parameter"] == null)
{
return base.GetParameter(pattern);
}
// The Maml format simplifies array fields containing only one object
// by transforming them into the objects themselves. To ensure the consistency
// of the help command result we change it back into an array.
var param = prmts.Properties["parameter"].Value;
PSObject[] paramAsPSObjArray = new PSObject[1];
if (param is PSObject paramPSObj)
{
paramAsPSObjArray[0] = paramPSObj;
}
PSObject[] prmtArray = (PSObject[])LanguagePrimitives.ConvertTo(
paramAsPSObjArray[0] != null ? paramAsPSObjArray : param,
typeof(PSObject[]),
CultureInfo.InvariantCulture);
if (string.IsNullOrEmpty(pattern))
{
return prmtArray;
}
List<PSObject> returnList = new List<PSObject>();
WildcardPattern matcher = WildcardPattern.Get(pattern, WildcardOptions.IgnoreCase);
foreach (PSObject prmtr in prmtArray)
{
if ((prmtr.Properties["name"] == null) || (prmtr.Properties["name"].Value == null))
{
continue;
}
string prmName = prmtr.Properties["name"].Value.ToString();
if (matcher.IsMatch(prmName))
{
returnList.Add(prmtr);
}
}
return returnList.ToArray();
}
#endregion
#region Cmdlet Help specific Properties
/// <summary>
/// Detailed Description string of this cmdlet help info.
/// </summary>
internal string DetailedDescription
{
get
{
if (this.FullHelp == null)
return string.Empty;
if (this.FullHelp.Properties["Description"] == null ||
this.FullHelp.Properties["Description"].Value == null)
{
return string.Empty;
}
object[] descriptionItems = (object[])LanguagePrimitives.ConvertTo(
this.FullHelp.Properties["Description"].Value,
typeof(object[]),
CultureInfo.InvariantCulture);
if (descriptionItems == null || descriptionItems.Length == 0)
{
return string.Empty;
}
// I think every cmdlet description should at least have 400 characters...
// so starting with this assumption..I did an average of all the cmdlet
// help content available at the time of writing this code and came up
// with this number.
StringBuilder result = new StringBuilder(400);
foreach (object descriptionItem in descriptionItems)
{
if (descriptionItem == null)
{
continue;
}
PSObject descriptionObject = PSObject.AsPSObject(descriptionItem);
if ((descriptionObject == null) ||
(descriptionObject.Properties["Text"] == null) ||
(descriptionObject.Properties["Text"].Value == null))
{
continue;
}
string text = descriptionObject.Properties["Text"].Value.ToString();
result.Append(text);
result.Append(Environment.NewLine);
}
return result.ToString().Trim();
}
}
#endregion
}
}
|