Files

123 lines
3.2 KiB
Go
Raw Permalink Normal View History

2016-11-07 14:53:13 +01:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2016-11-07 14:53:13 +01:00
2019-05-11 18:21:34 +08:00
package structs
2016-11-07 14:53:13 +01:00
2017-11-12 23:02:25 -08:00
// SearchResults results of a successful search
2017-05-02 15:35:59 +02:00
type SearchResults struct {
// OK indicates if the search was successful
OK bool `json:"ok"`
// Data contains the repository search results
2017-05-02 15:35:59 +02:00
Data []*Repository `json:"data"`
}
2017-11-12 23:02:25 -08:00
// SearchError error of a failed search
2017-05-02 15:35:59 +02:00
type SearchError struct {
// OK indicates the search status (always false for errors)
OK bool `json:"ok"`
// Error contains the error message
2017-05-02 15:35:59 +02:00
Error string `json:"error"`
}
// MarkupOption markup options
type MarkupOption struct {
// Text markup to render
//
// in: body
Text string
2024-11-14 13:02:11 +08:00
// Mode to render (markdown, comment, wiki, file)
//
// in: body
Mode string
// URL path for rendering issue, media and file links
// Expected format: /subpath/{user}/{repo}/src/{branch, commit, tag}/{identifier/path}/{file/dir}
//
// in: body
Context string
2024-11-14 13:02:11 +08:00
// Is it a wiki page? (use mode=wiki instead)
//
2024-11-14 13:02:11 +08:00
// Deprecated: true
// in: body
Wiki bool
// File path for detecting extension in file mode
//
// in: body
FilePath string
}
// MarkupRender is a rendered markup document
// swagger:response MarkupRender
type MarkupRender string
2016-11-29 09:09:17 +01:00
// MarkdownOption markdown options
2016-11-07 14:53:13 +01:00
type MarkdownOption struct {
2017-05-02 15:35:59 +02:00
// Text markdown to render
//
// in: body
Text string
2024-11-14 13:02:11 +08:00
// Mode to render (markdown, comment, wiki, file)
2017-05-02 15:35:59 +02:00
//
// in: body
Mode string
// URL path for rendering issue, media and file links
// Expected format: /subpath/{user}/{repo}/src/{branch, commit, tag}/{identifier/path}/{file/dir}
2017-05-02 15:35:59 +02:00
//
// in: body
2016-11-07 14:53:13 +01:00
Context string
2024-11-14 13:02:11 +08:00
// Is it a wiki page? (use mode=wiki instead)
2017-05-02 15:35:59 +02:00
//
2024-11-14 13:02:11 +08:00
// Deprecated: true
2017-05-02 15:35:59 +02:00
// in: body
Wiki bool
2016-11-07 14:53:13 +01:00
}
2017-05-02 15:35:59 +02:00
// MarkdownRender is a rendered markdown document
// swagger:response MarkdownRender
type MarkdownRender string
// ServerVersion wraps the version of the server
type ServerVersion struct {
// Version is the server version string
2017-11-12 23:02:25 -08:00
Version string `json:"version"`
}
2023-04-27 05:51:20 +02:00
// GitignoreTemplateInfo name and text of a gitignore template
type GitignoreTemplateInfo struct {
// Name is the name of the gitignore template
Name string `json:"name"`
// Source contains the content of the gitignore template
2023-04-27 05:51:20 +02:00
Source string `json:"source"`
}
2023-04-26 08:08:28 +02:00
// LicensesListEntry is used for the API
type LicensesTemplateListEntry struct {
// Key is the unique identifier for the license template
Key string `json:"key"`
// Name is the display name of the license
2023-04-26 08:08:28 +02:00
Name string `json:"name"`
// URL is the reference URL for the license
URL string `json:"url"`
2023-04-26 08:08:28 +02:00
}
// LicensesInfo contains information about a License
type LicenseTemplateInfo struct {
// Key is the unique identifier for the license template
Key string `json:"key"`
// Name is the display name of the license
Name string `json:"name"`
// URL is the reference URL for the license
URL string `json:"url"`
// Implementation contains license implementation details
2023-04-26 08:08:28 +02:00
Implementation string `json:"implementation"`
// Body contains the full text of the license
Body string `json:"body"`
2023-04-26 08:08:28 +02:00
}
// APIError is an api error with a message
type APIError struct {
// Message contains the error description
Message string `json:"message"`
// URL contains the documentation URL for this error
URL string `json:"url"`
}