friendica/doc/Developers-Intro.md

156 Zeilen
8.4 KiB
Markdown

2017-12-24 00:39:42 +01:00
# Where to get started to help improve Friendica
<!-- markdownlint-disable MD010 MD013 -->
* [Home](help)
2015-04-17 17:03:20 +02:00
Do you want to help us improve Friendica?
Here we have compiled some hints on how to get started and some tasks to help you choose.
A project like Friendica is the sum of many different contributions.
2017-04-01 23:58:21 +02:00
**Very different skills are required to make good software, not all of them involve coding!**
2015-04-17 17:03:20 +02:00
We are looking for helpers in all areas, whether you write text or code, whether you spread the word to convince people or design new icons.
Whether you feel like an expert or like a newbie - join us with your ideas!
2017-12-24 00:39:42 +01:00
## Contact us
The discussion of Friendica development takes place in the following Friendica forums:
2017-10-08 11:25:35 +02:00
* The main [forum for Friendica development](https://forum.friendi.ca/profile/developers)
2017-12-24 00:39:42 +01:00
## Help other users
2015-04-17 17:03:20 +02:00
Remember the questions you had when you first tried Friendica?
2017-10-08 11:25:35 +02:00
A good place to start can be to help new people find their way around Friendica in the [general support forum](https://forum.friendi.ca/prufile/helpers).
2015-04-17 17:03:20 +02:00
Welcome them, answer their questions, point them to documentation or ping other helpers directly if you can't help but think you know who can.
2017-12-24 00:39:42 +01:00
## Translation
The documentation contains help on how to translate Friendica [at Transifex](/help/translations) where the UI is translated.
If you don't want to translate the UI, or it is already done to your satisfaction, you might want to work on the translation of the /help files?
2017-12-24 00:39:42 +01:00
## Design
2015-04-17 17:03:20 +02:00
Are you good at designing things?
If you have seen Friendica you probably have ideas to improve it, haven't you?
2018-08-29 20:52:48 +02:00
* If you would like to work with us on enhancing the user interface, please join the [forum for Friendica development](https://forum.friendi.ca/profile/developers).
* Make plans for a better Friendica interface design and share them with us.
2015-04-17 17:03:20 +02:00
* Tell us if you are able to realize your ideas or what kind of help you need.
2017-12-24 00:39:42 +01:00
We can't promise we have the right skills in the group but we'll try.
* Choose a thing to start with, e.g. work on the icon set of your favorite theme
2017-12-24 00:39:42 +01:00
## Programming
2017-04-01 23:58:21 +02:00
### Composer
Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`.
If you want to have git automatically update the dependencies with composer, you can use the `post-merge` [git-hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks) with a script similar to this one:
#/usr/bin/env bash
# MIT © Sindre Sorhus - sindresorhus.com
# forked by Gianluca Guarini
# phponly by Ivo Bathke ;)
# modified for Friendica by Tobias Diekershoff
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)"
check_run() {
echo "$changed_files" | grep --quiet "$1" && eval "$2"
}
# `composer install` if the `composer.lock` file gets changed
# to update all the php dependencies
2018-03-19 04:15:31 +01:00
check_run composer.lock "bin/composer.phar install --no-dev"
2018-02-02 16:33:55 +01:00
just place it into `.git/hooks/post-merge` and make it executable.
* [Class autoloading](help/autoloader)
2017-04-01 23:58:21 +02:00
* [Using Composer](help/Composer)
* [How To Move Classes to `src`](help/Developer-How-To-Move-Classes-to-src)
2017-04-01 23:58:21 +02:00
### Coding standards
For the sake of consistency between contribution and general code readability, Friendica follows the widespread [PSR-2 coding standards](http://www.php-fig.org/psr/psr-2/) to the exception of a few rules.
Here's a few primers if you are new to Friendica or to the PSR-2 coding standards:
2017-12-24 00:39:42 +01:00
* Indentation is tabs, period (not PSR-2).
* By default, strings are enclosed in single quotes, but feel free to use double quotes if it makes more sense (SQL queries, adding tabs and line feeds).
* Operators are wrapped by spaces, e.g. `$var === true`, `$var = 1 + 2` and `'string' . $concat . 'enation'`
* Braces are mandatory in conditions
* Boolean operators are `&&` and `||` for PHP conditions, `AND` and `OR` for SQL queries
* No closing PHP tag
* No trailing spaces
* Array declarations use the new square brackets syntax
Don't worry, you don't have to know by heart the PSR-2 coding standards to start contributing to Friendica.
There are a few tools you can use to check or fix your files before you commit.
2017-02-24 08:37:36 +01:00
For documentation we use the standard of *one sentence per line* for the `md` files in the `/doc` and `/doc/$lng` subdirectories.
#### Check with [PHP Code Sniffer](https://github.com/squizlabs/PHP_CodeSniffer)
This tool checks your files against a variety of coding standards, including PSR-2, and ouputs a report of all the standard violations.
You can simply install it through PEAR: `pear install PHP_CodeSniffer`
Once it is installed and available in your PATH, here's the command to run before committing your work:
$> phpcs --standard=ruleset.xml <file or directory>
The output is a list of all the coding standards violations that you should fix before committing your work.
Additionally, `phpcs` integrates with a few IDEs (Eclipse, Netbeans, PHPStorm...) so that you don't have to fiddle with the command line.
#### Fix with PHP Code Beautifier and Fixer (phpbcf) included in PHP Code Sniffer
If you're getting a massive list of standards violations when running `phpcs`, it can be annoying to fix all the violations by hand.
Thankfully, PHP Code Sniffer is shipped with an automatic code fixer that can take care of the tedious task for you.
Here's the command to automatically fix the files you created/modified:
$> phpcbf --standard=ruleset.xml <file or directory>
If the command-line tools `diff` and `patch` are unavailabe for you, `phpcbf` can use slightly slower PHP equivalents by using the `--no-patch` argument.
### Code documentation
2015-12-25 12:25:39 +01:00
If you are interested in having the documentation of the Friendica code outside of the code files, you can use [Doxygen](http://doxygen.org) to generate it.
2018-11-29 05:09:35 +01:00
The configuration file for Doxygen is located in the base directory of the project sources.
Run
2018-11-29 05:09:35 +01:00
$> doxygen Doxyfile
to generate the files which will be located in the `doc/html` subdirectory in the Friendica directory.
You can browse these files with any browser.
If you find missing documentation, don't hesitate to contact us and write it down to enhance the code documentation.
### Issues
2015-04-17 17:10:27 +02:00
Have a look at our [issue tracker](https://github.com/friendica/friendica) on github!
2017-12-24 00:39:42 +01:00
* Try to reproduce a bug that needs more inquiries and write down what you find out.
* If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed.
* Fix a bug if you can. Please make the pull request against the *develop* branch of the repository.
2018-02-02 07:53:27 +01:00
* There is a *[Junior Job](https://github.com/friendica/friendica/issues?q=is%3Aopen+is%3Aissue+label%3A"Junior+Jobs")* label for issues we think might be a good point to start with.
2017-12-24 00:39:42 +01:00
But you don't have to limit yourself to those issues.
2015-04-17 17:10:27 +02:00
### Web interface
2015-04-17 17:10:27 +02:00
The thing many people want most is a better interface, preferably a responsive Friendica theme.
2015-04-17 17:03:20 +02:00
This is a piece of work!
If you want to get involved here:
2015-04-17 17:10:27 +02:00
* Look at the first steps that were made (e.g. the clean theme).
2017-12-24 00:39:42 +01:00
Ask us to find out whom to talk to about their experiences.
2015-04-17 17:10:27 +02:00
* Talk to design people if you know any.
2018-03-03 15:47:36 +01:00
* Let us know about your plans [in the dev forum](https://forum.friendi.ca/profile/developers)
2017-12-24 00:39:42 +01:00
Do not worry about cross-posting.
2015-04-17 17:10:27 +02:00
### Client software
2017-04-01 23:58:21 +02:00
2016-02-24 20:46:06 +01:00
As Friendica is using a [Twitter/GNU Social compatible API](help/api) any of the clients for those platforms should work with Friendica as well.
Furthermore there are several client projects, especially for use with Friendica.
If you are interested in improving those clients, please contact the developers of the clients directly.
* Android / LinageOS: **Friendiqa** [src](https://git.friendi.ca/lubuwest/Friendiqa)/[Google Play](https://play.google.com/store/apps/details?id=org.qtproject.friendiqa) developed by [Marco R](https://freunde.ma-nic.de/profile/marco)
2016-02-24 20:46:06 +01:00
* iOS: *currently no client*
* SailfishOS: **Friendiy** [src](https://kirgroup.com/projects/fabrixxm/harbour-friendly) - developed by [Fabio](https://kirgroup.com/profile/fabrixxm/?tab=profile)
* Windows: **Friendica Mobile** for Windows versions [before 8.1](http://windowsphone.com/s?appid=e3257730-c9cf-4935-9620-5261e3505c67) and [Windows 10](https://www.microsoft.com/store/apps/9nblggh0fhmn) - developed by [Gerhard Seeber](http://mozartweg.dyndns.org/friendica/profile/gerhard/?tab=profile)