GithubHelp home page GithubHelp logo

Comments (2)

kochobay avatar kochobay commented on August 26, 2024

Dear karimjouini, did you manage to find a solution for this? We have faced the same issue recently.

from swaggerwcf.

kochobay avatar kochobay commented on August 26, 2024

We found a workaround for it.
We used SwaggerWcfTagAttribute to give same tag for same service.
While [SwaggerWcfTag("Mercury")] is used for all operations in ServiceA.svc, [SwaggerWcfTag("Venus")] is used for the ones in ServiceB.svc, etc.

Then we created routes for each tag in Global.asax.
Finally, based on requested url, we have set hidden ones.
I mean that if request is like http://server.com/Mercury-docs, then we set Venus & Earth as hidden.

Here is the code we used in Global.asax.

public class Global : System.Web.HttpApplication
{
private static string[] SwaggerTags = new string[] { "Mercury", "Venus", "Earth" };

protected void Application_Start(object sender, EventArgs e)
{
	SwaggerWcfEndpoint.FilterVisibleTags = FilterVisibleTags;
	SwaggerWcfEndpoint.FilterHiddenTags = FilterHiddenTags;
	SwaggerWcfEndpoint.DisableSwaggerUI = false;

	RouteTable.Routes.Add(new ServiceRoute("api-docs", new WebServiceHostFactory(), typeof(SwaggerWcfEndpoint)));
	foreach(string tag in SwaggerTags)
		RouteTable.Routes.Add(new ServiceRoute($"{tag}-docs", new WebServiceHostFactory(), typeof(SwaggerWcfEndpoint)));
}

private static List<string> FilterVisibleTags(string path, List<string> visibleTags)
{
	if (null != HttpContext.Current)
	{
		string urlPart = HttpContext.Current.Request.Url.AbsolutePath.ToLower();
		foreach (string tag in SwaggerTags)
		{
			if (urlPart.Contains($"{tag.ToLower()}-docs"))
				visibleTags.Add(tag);
		}
	}

	return visibleTags;
}

private static List<string> FilterHiddenTags(string path, List<string> hiddenTags)
{
	if (null != HttpContext.Current)
	{
		string urlPart = HttpContext.Current.Request.Url.AbsolutePath.ToLower();
		foreach (string tag in SwaggerTags)
		{
			if (urlPart.Contains($"{tag.ToLower()}-docs"))
				hiddenTags.AddRange(SwaggerTags.Where(t => !t.Equals(tag)));
		}
	}

	return hiddenTags;
}

}

from swaggerwcf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.