HomePhabricator

Allow a DAO object storage namespace to be forced to a particular value

Description

Allow a DAO object storage namespace to be forced to a particular value

Summary:
Ref T6703. When we import external data from a third-party install to a Phacility instance, we must link instance accounts to central accounts: either existing central accounts, or newly created central accounts that we send invites for.

During this import, or when users register and claim those new accounts, we do a write from admin.phacility.com directly into the instance database to link the accounts.

This is pretty sketchy, and should almost certainly just be an internal API instead, particularly now that it's relatively stable.

However, it's what we use for now. The process has had some issues since the introduction of %R (combined database name and table refrence in queries), and now needs to be updated for the new providerConfigPHID column in ExternalAccount.

The problem is that %R isn't doing the right thing. We have code like this:

$conn = new_connection_to_instance('turtle');
queryf($conn, 'INSERT INTO %R ...', $table);

However, the $table resolves %R using the currently-executing-process information, not anything specific to $conn, so it prints admin_user.user_externalaccount (the name of the table on admin.phacility.com, where the code is running).

We want it to print turtle_user.user_externalaccount instead: the name of the table on turtle.phacility.com, where we're actually writing.

To force this to happen, let callers override the namespace part of the database name.

Long term: I'd plan to rip this out and replace it with an API call. This "connect directly to the database" stuff is nice for iterating on (only admin needs hotfixes) but very very sketchy for maintaining.

Test Plan: See next diff.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T6703

Differential Revision: https://secure.phabricator.com/D20167