2016-06-26 18:49:35 +02:00
|
|
|
# Code style and conventions
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Be consistent!
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Look at the surrounding code, or a similar part of the project, and try
|
|
|
|
to do the same thing. If you think the other code has actively bad
|
|
|
|
style, fix it (in a separate commit).
|
|
|
|
|
2017-10-02 22:05:27 +02:00
|
|
|
When in doubt, ask in [chat.zulip.org](https://chat.zulip.org).
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Lint tools
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
You can run them all at once with
|
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
./tools/lint
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
You can set this up as a local Git commit hook with
|
|
|
|
|
|
|
|
``tools/setup-git-repo``
|
|
|
|
|
|
|
|
The Vagrant setup process runs this for you.
|
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
`lint` runs many lint checks in parallel, including
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-12-03 01:46:10 +01:00
|
|
|
- JavaScript ([ESLint](http://eslint.org/))
|
2016-05-15 18:28:38 +02:00
|
|
|
- Python ([Pyflakes](http://pypi.python.org/pypi/pyflakes))
|
|
|
|
- templates
|
|
|
|
- Puppet configuration
|
|
|
|
- custom checks (e.g. trailing whitespace and spaces-not-tabs)
|
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Secrets
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Please don't put any passwords, secret access keys, etc. inline in the
|
2019-11-13 01:11:56 +01:00
|
|
|
code. Instead, use the `get_secret` function in `zproject/config.py`
|
2016-05-15 18:28:38 +02:00
|
|
|
to read secrets from `/etc/zulip/secrets.conf`.
|
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Dangerous constructs
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
### Misuse of database queries
|
|
|
|
|
|
|
|
Look out for Django code like this:
|
|
|
|
|
|
|
|
[Foo.objects.get(id=bar.x.id)
|
2016-06-17 13:56:55 +02:00
|
|
|
for bar in Bar.objects.filter(...)
|
|
|
|
if bar.baz < 7]
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
This will make one database query for each `Bar`, which is slow in
|
|
|
|
production (but not in local testing!). Instead of a list comprehension,
|
|
|
|
write a single query using Django's [QuerySet
|
|
|
|
API](https://docs.djangoproject.com/en/dev/ref/models/querysets/).
|
|
|
|
|
|
|
|
If you can't rewrite it as a single query, that's a sign that something
|
|
|
|
is wrong with the database schema. So don't defer this optimization when
|
|
|
|
performing schema changes, or else you may later find that it's
|
|
|
|
impossible.
|
|
|
|
|
|
|
|
### UserProfile.objects.get() / Client.objects.get / etc.
|
|
|
|
|
|
|
|
In our Django code, never do direct `UserProfile.objects.get(email=foo)`
|
|
|
|
database queries. Instead always use `get_user_profile_by_{email,id}`.
|
|
|
|
There are 3 reasons for this:
|
|
|
|
|
|
|
|
1. It's guaranteed to correctly do a case-inexact lookup
|
|
|
|
2. It fetches the user object from remote cache, which is faster
|
|
|
|
3. It always fetches a UserProfile object which has been queried using
|
2017-04-02 22:50:38 +02:00
|
|
|
.select\_related(), and thus will perform well when one later
|
2016-05-15 18:28:38 +02:00
|
|
|
accesses related models like the Realm.
|
|
|
|
|
|
|
|
Similarly we have `get_client` and `get_stream` functions to fetch those
|
|
|
|
commonly accessed objects via remote cache.
|
|
|
|
|
|
|
|
### Using Django model objects as keys in sets/dicts
|
|
|
|
|
|
|
|
Don't use Django model objects as keys in sets/dictionaries -- you will
|
|
|
|
get unexpected behavior when dealing with objects obtained from
|
|
|
|
different database queries:
|
|
|
|
|
|
|
|
For example,
|
|
|
|
`UserProfile.objects.only("id").get(id=17) in set([UserProfile.objects.get(id=17)])`
|
|
|
|
is False
|
|
|
|
|
|
|
|
You should work with the IDs instead.
|
|
|
|
|
|
|
|
### user\_profile.save()
|
|
|
|
|
|
|
|
You should always pass the update\_fields keyword argument to .save()
|
|
|
|
when modifying an existing Django model object. By default, .save() will
|
|
|
|
overwrite every value in the column, which results in lots of race
|
|
|
|
conditions where unrelated changes made by one thread can be
|
|
|
|
accidentally overwritten by another thread that fetched its UserProfile
|
|
|
|
object before the first thread wrote out its change.
|
|
|
|
|
|
|
|
### Using raw saves to update important model objects
|
|
|
|
|
2017-10-04 21:43:12 +02:00
|
|
|
In most cases, we already have a function in zerver/lib/actions.py with
|
2016-05-15 18:28:38 +02:00
|
|
|
a name like do\_activate\_user that will correctly handle lookups,
|
|
|
|
caching, and notifying running browsers via the event system about your
|
|
|
|
change. So please check whether such a function exists before writing
|
|
|
|
new code to modify a model object, since your new code has a good chance
|
|
|
|
of getting at least one of these things wrong.
|
|
|
|
|
2017-02-28 00:37:33 +01:00
|
|
|
### Naive datetime objects
|
|
|
|
|
|
|
|
Python allows datetime objects to not have an associated timezone, which can
|
|
|
|
cause time-related bugs that are hard to catch with a test suite, or bugs
|
|
|
|
that only show up during daylight savings time.
|
|
|
|
|
|
|
|
Good ways to make timezone-aware datetimes are below. We import `timezone`
|
2017-04-15 04:14:52 +02:00
|
|
|
function as `from django.utils.timezone import now as timezone_now` and
|
|
|
|
`from django.utils.timezone import utc as timezone_utc`. When Django is not
|
|
|
|
available, `timezone_utc` should be replaced with `pytz.utc` below.
|
|
|
|
* `timezone_now()` when Django is available, such as in `zerver/`.
|
2017-02-28 00:37:33 +01:00
|
|
|
* `datetime.now(tz=pytz.utc)` when Django is not available, such as for bots
|
|
|
|
and scripts.
|
2017-04-15 04:14:52 +02:00
|
|
|
* `datetime.fromtimestamp(timestamp, tz=timezone_utc)` if creating a
|
2017-02-28 00:37:33 +01:00
|
|
|
datetime from a timestamp. This is also available as
|
|
|
|
`zerver.lib.timestamp.timestamp_to_datetime`.
|
2017-04-15 04:14:52 +02:00
|
|
|
* `datetime.strptime(date_string, format).replace(tzinfo=timezone_utc)` if
|
2017-02-28 00:37:33 +01:00
|
|
|
creating a datetime from a formatted string that is in UTC.
|
|
|
|
|
|
|
|
Idioms that result in timezone-naive datetimes, and should be avoided, are
|
|
|
|
`datetime.now()` and `datetime.fromtimestamp(timestamp)` without a `tz`
|
|
|
|
parameter, `datetime.utcnow()` and `datetime.utcfromtimestamp()`, and
|
|
|
|
`datetime.strptime(date_string, format)` without replacing the `tzinfo` at
|
|
|
|
the end.
|
|
|
|
|
|
|
|
Additional notes:
|
|
|
|
* Especially in scripts and puppet configuration where Django is not
|
|
|
|
available, using `time.time()` to get timestamps can be cleaner than
|
|
|
|
dealing with datetimes.
|
|
|
|
* All datetimes on the backend should be in UTC, unless there is a good
|
|
|
|
reason to do otherwise.
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
### `x.attr('zid')` vs. `rows.id(x)`
|
|
|
|
|
|
|
|
Our message row DOM elements have a custom attribute `zid` which
|
|
|
|
contains the numerical message ID. **Don't access this directly as**
|
|
|
|
`x.attr('zid')` ! The result will be a string and comparisons (e.g. with
|
|
|
|
`<=`) will give the wrong result, occasionally, just enough to make a
|
|
|
|
bug that's impossible to track down.
|
|
|
|
|
|
|
|
You should instead use the `id` function from the `rows` module, as in
|
|
|
|
`rows.id(x)`. This returns a number. Even in cases where you do want a
|
|
|
|
string, use the `id` function, as it will simplify future code changes.
|
|
|
|
In most contexts in JavaScript where a string is needed, you can pass a
|
|
|
|
number without any explicit conversion.
|
|
|
|
|
2019-03-28 20:55:05 +01:00
|
|
|
### JavaScript `var`
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-06 22:24:06 +02:00
|
|
|
Always declare JavaScript variables using `var`. JavaScript has
|
|
|
|
function scope only, not block scope. This means that a `var`
|
|
|
|
declaration inside a `for` or `if` acts the same as a `var`
|
2016-05-15 18:28:38 +02:00
|
|
|
declaration at the beginning of the surrounding `function`. To avoid
|
|
|
|
confusion, declare all variables at the top of a function.
|
|
|
|
|
2019-03-28 20:55:05 +01:00
|
|
|
#### TypeScript `const` and `let`
|
|
|
|
|
|
|
|
When writing TypeScript, we prefer to use `const` or `let` where
|
|
|
|
possible.
|
|
|
|
|
|
|
|
### JavaScript and TypeScript `for (i in myArray)`
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Don't use it:
|
|
|
|
[[1]](http://stackoverflow.com/questions/500504/javascript-for-in-with-arrays),
|
2016-10-24 20:06:43 +02:00
|
|
|
[[2]](https://google.github.io/styleguide/javascriptguide.xml#for-in_loop),
|
|
|
|
[[3]](http://www.jslint.com/help.html#forin)
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-03-01 05:41:40 +01:00
|
|
|
### Translation tags
|
|
|
|
|
|
|
|
Remember to
|
2019-09-30 19:37:56 +02:00
|
|
|
[tag all user-facing strings for translation](../translating/translating.md), whether
|
2019-03-28 20:55:05 +01:00
|
|
|
they are in HTML templates or JavaScript/TypeScript editing the HTML (e.g. error
|
2017-03-01 05:41:40 +01:00
|
|
|
messages).
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
### State and logs files
|
|
|
|
|
2019-11-13 02:56:12 +01:00
|
|
|
When writing out state of log files, always declare the path with
|
|
|
|
`zulip_path` in `zproject/settings.py`, which will do the right thing
|
2017-10-06 22:26:13 +02:00
|
|
|
in both development and production.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## JS array/object manipulation
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
For generic functions that operate on arrays or JavaScript objects, you
|
|
|
|
should generally use [Underscore](http://underscorejs.org/). We used to
|
|
|
|
use jQuery's utility functions, but the Underscore equivalents are more
|
|
|
|
consistent, better-behaved and offer more choices.
|
|
|
|
|
|
|
|
A quick conversion table:
|
|
|
|
|
2016-06-17 13:56:55 +02:00
|
|
|
$.each → _.each (parameters to the callback reversed)
|
|
|
|
$.inArray → _.indexOf (parameters reversed)
|
|
|
|
$.grep → _.filter
|
|
|
|
$.map → _.map
|
|
|
|
$.extend → _.extend
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
There's a subtle difference in the case of `_.extend`; it will replace
|
|
|
|
attributes with undefined, whereas jQuery won't:
|
|
|
|
|
2016-06-17 13:56:55 +02:00
|
|
|
$.extend({foo: 2}, {foo: undefined}); // yields {foo: 2}, BUT...
|
|
|
|
_.extend({foo: 2}, {foo: undefined}); // yields {foo: undefined}!
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Also, `_.each` does not let you break out of the iteration early by
|
|
|
|
returning false, the way jQuery's version does. If you're doing this,
|
|
|
|
you probably want `_.find`, `_.every`, or `_.any`, rather than 'each'.
|
|
|
|
|
|
|
|
Some Underscore functions have multiple names. You should always use the
|
|
|
|
canonical name (given in large print in the Underscore documentation),
|
|
|
|
with the exception of `_.any`, which we prefer over the less clear
|
|
|
|
'some'.
|
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## More arbitrary style things
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-06 22:27:59 +02:00
|
|
|
### Line length
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-05 14:41:01 +02:00
|
|
|
We have an absolute hard limit on line length only for some files, but
|
|
|
|
we should still avoid extremely long lines. A general guideline is:
|
|
|
|
refactor stuff to get it under 85 characters, unless that makes the
|
|
|
|
code a lot uglier, in which case it's fine to go up to 120 or so.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2019-03-28 20:55:05 +01:00
|
|
|
### JavaScript and TypeScript
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
When calling a function with an anonymous function as an argument, use
|
|
|
|
this style:
|
|
|
|
|
2018-02-14 01:47:09 +01:00
|
|
|
my_function('foo', function (data) {
|
2016-06-17 13:56:55 +02:00
|
|
|
var x = ...;
|
|
|
|
// ...
|
2016-05-15 18:28:38 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
The inner function body is indented one level from the outer function
|
|
|
|
call. The closing brace for the inner function and the closing
|
|
|
|
parenthesis for the outer call are together on the same line. This style
|
|
|
|
isn't necessarily appropriate for calls with multiple anonymous
|
|
|
|
functions or other arguments following them.
|
|
|
|
|
2017-10-05 16:03:58 +02:00
|
|
|
Combine adjacent on-ready functions, if they are logically related.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
The best way to build complicated DOM elements is a Mustache template
|
2019-07-12 00:52:56 +02:00
|
|
|
like `static/templates/message_reactions.hbs`. For simpler things
|
2016-05-15 18:28:38 +02:00
|
|
|
you can use jQuery DOM building APIs like so:
|
|
|
|
|
2017-10-04 21:43:12 +02:00
|
|
|
var new_tr = $('<tr />').attr('id', object.id);
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-04 21:43:12 +02:00
|
|
|
Passing a HTML string to jQuery is fine for simple hardcoded things
|
|
|
|
that don't need internationalization:
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-04 21:43:12 +02:00
|
|
|
foo.append('<p id="selected">/</p>');
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
but avoid programmatically building complicated strings.
|
|
|
|
|
|
|
|
We used to favor attaching behaviors in templates like so:
|
|
|
|
|
2017-10-04 21:43:12 +02:00
|
|
|
<p onclick="select_zerver({{id}})">
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
but there are some reasons to prefer attaching events using jQuery code:
|
|
|
|
|
|
|
|
- Potential huge performance gains by using delegated events where
|
|
|
|
possible
|
|
|
|
- When calling a function from an `onclick` attribute, `this` is not
|
|
|
|
bound to the element like you might think
|
|
|
|
- jQuery does event normalization
|
|
|
|
|
|
|
|
Either way, avoid complicated JavaScript code inside HTML attributes;
|
|
|
|
call a helper function instead.
|
|
|
|
|
|
|
|
### HTML / CSS
|
|
|
|
|
2017-10-06 10:12:47 +02:00
|
|
|
Avoid using the `style=` attribute unless the styling is actually
|
|
|
|
dynamic. Instead, define logical classes and put your styles in
|
|
|
|
external CSS files such as `zulip.css`.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Don't use the tag name in a selector unless you have to. In other words,
|
|
|
|
use `.foo` instead of `span.foo`. We shouldn't have to care if the tag
|
|
|
|
type changes in the future.
|
|
|
|
|
|
|
|
### Python
|
|
|
|
|
2017-10-05 18:04:10 +02:00
|
|
|
- Don't put a shebang line on a Python file unless it's meaningful to
|
|
|
|
run it as a script. (Some libraries can also be run as scripts, e.g.
|
|
|
|
to run a test suite.)
|
2016-11-22 01:44:16 +01:00
|
|
|
- Scripts should be executed directly (`./script.py`), so that the
|
|
|
|
interpreter is implicitly found from the shebang line, rather than
|
|
|
|
explicitly overridden (`python script.py`).
|
2016-05-15 18:28:38 +02:00
|
|
|
- Put all imports together at the top of the file, absent a compelling
|
|
|
|
reason to do otherwise.
|
|
|
|
- Unpacking sequences doesn't require list brackets:
|
|
|
|
|
2016-06-17 13:56:55 +02:00
|
|
|
[x, y] = xs # unnecessary
|
|
|
|
x, y = xs # better
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
- For string formatting, use `x % (y,)` rather than `x % y`, to avoid
|
|
|
|
ambiguity if `y` happens to be a tuple.
|
|
|
|
|
|
|
|
### Tests
|
|
|
|
|
|
|
|
All significant new features should come with tests. See testing.
|
|
|
|
|
|
|
|
### Third party code
|
|
|
|
|
2019-09-30 19:37:56 +02:00
|
|
|
See [our docs on dependencies](../subsystems/dependencies.md) for discussion of
|
2017-10-06 22:27:59 +02:00
|
|
|
rules about integrating third-party projects.
|