The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I get a usable list of Repositories in Fish-eye?

Chris Solgat
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
May 19, 2015

I have JIRA linked with Fish-eye.  One of our projects is used to create project links from JIRA to Fisheye and one of the fields that will be used is a list of available repositories.  Seeing as there are a couple hundred repositories, we would prefer not to manage this manually.  From the JIRA side, in one of the Administration screens, we can see the list of Fisheye repositories, so I want to know if there is a way to use that list to populate our field.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Felipe Kraemer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 25, 2015

Hi Chris,

The list of repositories can be retrieved by using this FishEye REST API:

http://fisheyehost:8060/rest-service-fecru/admin/repositories

In a local instance, this was the JSON result:

{
	"start":0,
	"limit":100,
	"lastPage":true,
	"size":2,
	"values":[
		{
			"type":"git",
			"name":"GitHub",
			"description":"",
			"storeDiff":true,
			"enabled":true,
			"git":{
				"location":"https://github.com/felipekraemer/test.git",
				"auth":{
					"authType":"password"
				},
				"renameDetection":"none"
			}
		},
		{
			"type":"svn",
			"name":"SVN",
			"description":"",
			"storeDiff":true,
			"enabled":true,
			"svn":{
				"url":"file:///Users/fkraemer/atlassian/repositories/SVN",
				"path":"",
				"usingBuiltinSymbolicRules":true
			}
		}
	]
}

You would need to develop a custom field plugin module in which you can call the REST API above and list only the repository names, and then add this custom field to the issue screen.

If this answer was helpful, please allow me to ask you to mark my answer as accepted in order to have it in the top of the thread, also helping other customers.

Thanks in advance!

Kind regards,
Felipe Kraemer