{"id":23854856,"url":"https://github.com/sonrai-llc/extrs","last_synced_at":"2025-09-08T02:31:01.849Z","repository":{"id":169581717,"uuid":"645611225","full_name":"sonrai-LLC/extRS","owner":"sonrai-LLC","description":"extRS is a .NET class library for extending the capabilities of SQL Server Reporting Services, among other things.","archived":false,"fork":false,"pushed_at":"2025-08-10T23:27:33.000Z","size":37625,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-11T01:11:35.311Z","etag":null,"topics":["asp-net-core","c-sharp","dotnet","rdl","sql-server","ssrs","ssrs-dashboards","ssrs-portal","ssrs-reports"],"latest_commit_sha":null,"homepage":"https://extrs.net","language":"TSQL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sonrai-LLC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-05-26T03:34:48.000Z","updated_at":"2025-08-10T23:27:36.000Z","dependencies_parsed_at":"2024-03-29T21:41:50.677Z","dependency_job_id":"b511d1c1-6cc8-4fff-a9a6-dc31bc1881c8","html_url":"https://github.com/sonrai-LLC/extRS","commit_stats":null,"previous_names":["sonrai-llc/extrs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sonrai-LLC/extRS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonrai-LLC%2FextRS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonrai-LLC%2FextRS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonrai-LLC%2FextRS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonrai-LLC%2FextRS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sonrai-LLC","download_url":"https://codeload.github.com/sonrai-LLC/extRS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonrai-LLC%2FextRS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274122924,"owners_count":25226018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asp-net-core","c-sharp","dotnet","rdl","sql-server","ssrs","ssrs-dashboards","ssrs-portal","ssrs-reports"],"created_at":"2025-01-03T00:17:47.300Z","updated_at":"2025-09-08T02:31:01.838Z","avatar_url":"https://github.com/sonrai-LLC.png","language":"TSQL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# extRS\nextRS is a .NET 9 class library for extending the capabilities of Reporting Services, among other things. With extRS, (pronounced \"extras\"), common public API endpoints and SDK clients are consolidated into a utility .dll containing features that can compliment your .NET development. extRS also contains a simplified interface to the SSRS v2 API for programmatically managing SSRS catalog item types (CatalogItem, Report, DataSource, DataSet, etc.).\n\nSSRS isn't dead- it's just a niche tool that hasn't fully realized its potential- yet. 🤷‍♂️\n\nHere is an implementation of extRS in the form of an SSRS client (extRS.Portal.csproj) that exposes some of the default SSRS Portal feature set: https://extrs.net\n\n# Examples\n\n```\npublic SSRSTests()\n{\n    var builder = new ConfigurationBuilder()\n    .AddUserSecrets\u003cReferenceDataTests\u003e();\n    _configuration = builder.Build();\n}\n\n[TestInitialize]\npublic async Task InitializeTests()\n{\n    _httpClient = new HttpClient();\n    SSRSConnection connection = new SSRSConnection(Resources.ReportServerName, Resources.User, AuthenticationType.ExtRSAuth);\n    _ssrs = new SSRSService(connection, _configuration, null!);\n    connection.SqlAuthCookie = await SSRSService.GetSqlAuthCookie(_httpClient, Resources.User, _configuration[\"extrspassphrase\"]!, connection.ReportServerName);\n}\n\n[TestMethod]\npublic async Task CreateGetDeleteCatalogItemSucceeds()\n{\n    string json = @\"{\n    \"\"@odata.type\"\": \"\"#Model.Folder\"\",\n    \"\"Name\"\": \"\"TopSecretFolder11\"\",\n    \"\"Description\"\": null,\n    \"\"Path\"\": \"\"/Data Sources\"\",\n    \"\"Type\"\": \"\"Folder\"\",\n    \"\"Hidden\"\": false,\n    \"\"Size\"\": 0,\n    \"\"ModifiedBy\"\": \"\"extRSAuth\"\",\n    \"\"ModifiedDate\"\": \"\"2023-11-08T19:58:11.277-06:00\"\",\n    \"\"CreatedBy\"\": \"\"extRSAuth\"\",\n    \"\"CreatedDate\"\": \"\"2022-07-30T15:03:24.563-05:00\"\",\n    \"\"ParentFolderId\"\": \"\"0cb3efb3-41cb-4480-a9c9-da642a19526e\"\",\n    \"\"IsFavorite\"\": false,\n    \"\"ContentType\"\": null,\n    \"\"Content\"\": \"\"\"\",\n    \"\"Roles\"\": []\n    }\";\n\n    var createResponse = await _ssrs.CreateCatalogItem(json);\n    Assert.IsTrue(createResponse.Id != null);\n\n    var getResponse = await _ssrs.GetCatalogItem(createResponse.Id.ToString()!);\n    Assert.IsTrue(getResponse.Id != null);\n\n    var deleteResponse = await _ssrs.DeleteCatalogItem(getResponse!.Id!.ToString()!);\n    Assert.IsTrue(deleteResponse);\n}\n\n```\n\n# Related SSRS Tools\n- [extRSAuth](https://github.com/sonrai-LLC/extRSAuth) for enabling further extension of the SSRS Microsoft Custom Security Sample.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonrai-llc%2Fextrs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonrai-llc%2Fextrs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonrai-llc%2Fextrs/lists"}